This is an automated email from the ASF dual-hosted git repository.

dmvolod pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from fc3c265  Upgrade Netty to version 4.1.32.Final
     new 128f841  CAMEL-12964: Initial import of jBPM CamelWIH and Command.
     new 89f1070  CamelCommand splitted in a separate command for Camel 
DeploymentContext and GlobalContext. WorkItemHandler can now be configured with 
default route. WIH supports both InOut and InOnly MEPs. Added tests that use a 
test CamelContext and test-routes to verify behaviour on Exceptions.
     new 8672088  Replaced hard-coded strings with constants. Changed WorkItem 
parameter names to be inline with other WorkItemHandlers.
     new 60010cd  Removed TODO comments.
     new 9201574  CAMEL-12964: Fix CS

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 components/camel-jbpm/pom.xml                      |  27 +++
 .../apache/camel/component/jbpm/JBPMConstants.java |   8 +
 .../jbpm/server/CamelKieServerExtension.java       |  32 ++--
 .../jbpm/workitem/AbstractCamelCommand.java        |  81 ++++++++
 .../workitem/AbstractCamelWorkItemHandler.java     | 152 +++++++++++++++
 .../workitem/DeploymentContextCamelCommand.java    |  71 +++++++
 .../jbpm/workitem/GlobalContextCamelCommand.java   |  56 ++++++
 .../jbpm/workitem/InOnlyCamelWorkItemHandler.java  | 106 +++++++++++
 .../jbpm/workitem/InOutCamelWorkItemHandler.java   | 116 ++++++++++++
 .../jbpm/JBPMComponentIntegrationTest.java         |   1 -
 .../CamelWorkItemHandlerIntegrationTests.java      | 204 +++++++++++++++++++++
 .../DeploymentContextCamelCommandTest.java         |  95 ++++++++++
 .../workitem/GlobalContextCamelCommandTest.java    |  95 ++++++++++
 .../workitem/InOnlyCamelWorkItemHandlerTest.java   |  97 ++++++++++
 .../workitem/InOutCamelWorkItemHandlerTest.java    | 148 +++++++++++++++
 15 files changed, 1272 insertions(+), 17 deletions(-)
 create mode 100644 
components/camel-jbpm/src/main/java/org/apache/camel/component/jbpm/workitem/AbstractCamelCommand.java
 create mode 100644 
components/camel-jbpm/src/main/java/org/apache/camel/component/jbpm/workitem/AbstractCamelWorkItemHandler.java
 create mode 100644 
components/camel-jbpm/src/main/java/org/apache/camel/component/jbpm/workitem/DeploymentContextCamelCommand.java
 create mode 100644 
components/camel-jbpm/src/main/java/org/apache/camel/component/jbpm/workitem/GlobalContextCamelCommand.java
 create mode 100644 
components/camel-jbpm/src/main/java/org/apache/camel/component/jbpm/workitem/InOnlyCamelWorkItemHandler.java
 create mode 100644 
components/camel-jbpm/src/main/java/org/apache/camel/component/jbpm/workitem/InOutCamelWorkItemHandler.java
 create mode 100644 
components/camel-jbpm/src/test/java/org/apache/camel/component/jbpm/workitem/CamelWorkItemHandlerIntegrationTests.java
 create mode 100644 
components/camel-jbpm/src/test/java/org/apache/camel/component/jbpm/workitem/DeploymentContextCamelCommandTest.java
 create mode 100644 
components/camel-jbpm/src/test/java/org/apache/camel/component/jbpm/workitem/GlobalContextCamelCommandTest.java
 create mode 100644 
components/camel-jbpm/src/test/java/org/apache/camel/component/jbpm/workitem/InOnlyCamelWorkItemHandlerTest.java
 create mode 100644 
components/camel-jbpm/src/test/java/org/apache/camel/component/jbpm/workitem/InOutCamelWorkItemHandlerTest.java

Reply via email to