ALF-16098: Upgraded Activiti to version 5.10

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@42122 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Frederik Heremans
2012-09-28 07:07:03 +00:00
parent 6a9b191741
commit ddf01d02c4
19 changed files with 617 additions and 58 deletions

View File

@@ -335,7 +335,7 @@ public class ActivitiWorkflowEngine extends BPMEngine implements WorkflowEngine
{
try
{
String resourceName = GUID.generate() + BpmnDeployer.BPMN_RESOURCE_SUFFIX;
String resourceName = GUID.generate() + BpmnDeployer.BPMN_RESOURCE_SUFFIXES[0];
if(tenantService.isEnabled())
{

View File

@@ -224,4 +224,70 @@ public class AlfrescoBpmnParseListener implements BpmnParseListener
this.tenantService = tenantService;
}
@Override
public void parseInclusiveGateway(Element inclusiveGwElement,
ScopeImpl scope, ActivityImpl activity) {
// Nothing to do here
}
@Override
public void parseReceiveTask(Element receiveTaskElement, ScopeImpl scope,
ActivityImpl activity) {
// Nothing to do here
}
@Override
public void parseIntermediateSignalCatchEventDefinition(
Element signalEventDefinition, ActivityImpl signalActivity) {
// Nothing to do here
}
@Override
public void parseIntermediateMessageCatchEventDefinition(
Element messageEventDefinition, ActivityImpl nestedActivity) {
// Nothing to do here
}
@Override
public void parseBoundarySignalEventDefinition(
Element signalEventDefinition, boolean interrupting,
ActivityImpl signalActivity) {
// Nothing to do here
}
@Override
public void parseEventBasedGateway(Element eventBasedGwElement,
ScopeImpl scope, ActivityImpl activity) {
// Nothing to do here
}
@Override
public void parseTransaction(Element transactionElement, ScopeImpl scope,
ActivityImpl activity) {
// Nothing to do here
}
@Override
public void parseCompensateEventDefinition(
Element compensateEventDefinition, ActivityImpl compensationActivity) {
// Nothing to do here
}
@Override
public void parseIntermediateThrowEvent(Element intermediateEventElement,
ScopeImpl scope, ActivityImpl activity) {
// Nothing to do here
}
@Override
public void parseIntermediateCatchEvent(Element intermediateEventElement,
ScopeImpl scope, ActivityImpl activity) {
// Nothing to do here
}
@Override
public void parseBoundaryEvent(Element boundaryEventElement,
ScopeImpl scopeElement, ActivityImpl nestedActivity) {
// Nothing to do here
}
}