mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
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:
@@ -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())
|
||||
{
|
||||
|
@@ -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
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user