本文整理匯總了Java中org.activiti.engine.impl.bpmn.behavior.CancelEndEventActivityBehavior類的典型用法代碼示例。如果您正苦於以下問題:Java CancelEndEventActivityBehavior類的具體用法?Java CancelEndEventActivityBehavior怎麽用?Java CancelEndEventActivityBehavior使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
CancelEndEventActivityBehavior類屬於org.activiti.engine.impl.bpmn.behavior包,在下文中一共展示了CancelEndEventActivityBehavior類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: parseEndEvents
import org.activiti.engine.impl.bpmn.behavior.CancelEndEventActivityBehavior; //導入依賴的package包/類
/**
* Parses the end events of a certain level in the process (process,
* subprocess or another scope).
*
* @param parentElement
* The 'parent' element that contains the end events (process,
* subprocess).
* @param scope
* The {@link ScopeImpl} to which the end events must be added.
*/
public void parseEndEvents(Element parentElement, ScopeImpl scope) {
for (Element endEventElement : parentElement.elements("endEvent")) {
ActivityImpl activity = createActivityOnScope(endEventElement, scope);
Element errorEventDefinition = endEventElement.element("errorEventDefinition");
Element cancelEventDefinition = endEventElement.element("cancelEventDefinition");
if (errorEventDefinition != null) { // error end event
String errorRef = errorEventDefinition.attribute("errorRef");
if (errorRef == null || "".equals(errorRef)) {
addError("'errorRef' attribute is mandatory on error end event", errorEventDefinition);
} else {
Error error = errors.get(errorRef);
activity.setProperty("type", "errorEndEvent");
activity.setActivityBehavior(new ErrorEndEventActivityBehavior(error != null ? error.getErrorCode() : errorRef));
}
} else if (cancelEventDefinition != null) {
if(scope.getProperty("type")==null || !scope.getProperty("type").equals("transaction")) {
addError("end event with cancelEventDefinition only supported inside transaction subprocess", cancelEventDefinition);
} else {
activity.setProperty("type", "cancelEndEvent");
activity.setActivityBehavior(new CancelEndEventActivityBehavior());
}
} else { // default: none end event
activity.setActivityBehavior(new NoneEndEventActivityBehavior());
}
for (BpmnParseListener parseListener : parseListeners) {
parseListener.parseEndEvent(endEventElement, scope, activity);
}
}
}
示例2: createCancelEndEventActivityBehavior
import org.activiti.engine.impl.bpmn.behavior.CancelEndEventActivityBehavior; //導入依賴的package包/類
@Override
public CancelEndEventActivityBehavior createCancelEndEventActivityBehavior(EndEvent endEvent) {
return wrappedActivityBehaviorFactory.createCancelEndEventActivityBehavior(endEvent);
}
示例3: createCancelEndEventActivityBehavior
import org.activiti.engine.impl.bpmn.behavior.CancelEndEventActivityBehavior; //導入依賴的package包/類
@Override
public CancelEndEventActivityBehavior createCancelEndEventActivityBehavior(EndEvent endEvent) {
return new CancelEndEventActivityBehavior();
}
示例4: createCancelEndEventActivityBehavior
import org.activiti.engine.impl.bpmn.behavior.CancelEndEventActivityBehavior; //導入依賴的package包/類
public CancelEndEventActivityBehavior createCancelEndEventActivityBehavior(EndEvent endEvent) {
return new CancelEndEventActivityBehavior();
}
示例5: createCancelEndEventActivityBehavior
import org.activiti.engine.impl.bpmn.behavior.CancelEndEventActivityBehavior; //導入依賴的package包/類
public abstract CancelEndEventActivityBehavior createCancelEndEventActivityBehavior(EndEvent endEvent);