Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
MuleMessage |
|
| 2.0;2 |
1 | /* | |
2 | * $Id: MuleMessage.java 11566 2008-04-11 12:15:16Z tcarlson $ | |
3 | * -------------------------------------------------------------------------------------- | |
4 | * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com | |
5 | * | |
6 | * The software in this package is published under the terms of the CPAL v1.0 | |
7 | * license, a copy of which has been included with this distribution in the | |
8 | * LICENSE.txt file. | |
9 | */ | |
10 | ||
11 | package org.mule.transport.bpm.jbpm; | |
12 | ||
13 | import org.apache.commons.lang.NotImplementedException; | |
14 | import org.jbpm.JbpmContext; | |
15 | import org.jbpm.job.Job; | |
16 | ||
17 | ||
18 | /** | |
19 | * This is an unfinished work, see MULE-1219 | |
20 | */ | |
21 | 0 | public class MuleMessage extends Job |
22 | { | |
23 | private static final long serialVersionUID = 1L; | |
24 | ||
25 | public boolean execute(JbpmContext jbpmContext) throws Exception | |
26 | { | |
27 | 0 | throw new NotImplementedException("MULE-1219"); |
28 | } | |
29 | } |