Package org.activiti.cdi.annotation.event

Examples of org.activiti.cdi.annotation.event.DeleteTaskLiteral


    }
    if (type == BusinessProcessEventType.COMPLETE_TASK) {
      return new Annotation[] {businessProcessQualifier, new CompleteTaskLiteral(activityId) };
    }
    if (type == BusinessProcessEventType.DELETE_TASK) {
      return new Annotation[] {businessProcessQualifier, new DeleteTaskLiteral(activityId) };
    }
    return new Annotation[] {};
  }
View Full Code Here

TOP

Related Classes of org.activiti.cdi.annotation.event.DeleteTaskLiteral

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.