Package com.starflow.wf.engine.core.participant.impl

Examples of com.starflow.wf.engine.core.participant.impl.ActLogicParticipantMode


    else if(Constants.PARTICIPANT_PROCESS_STARTER.equalsIgnoreCase(mode))
      return new ProcStarterParticipantMode();
    else if(Constants.PARTICIPANT_ACT_EXECUTER.equalsIgnoreCase(mode))
      return new ActExecuterParticipantMode();
    else if(Constants.PARTICIPANT_ACT_LOGIC.equalsIgnoreCase(mode))
      return new ActLogicParticipantMode();
    else if(Constants.PARTICIPANT_ACT_RELDATA.equalsIgnoreCase(mode))
      return new RelDataParticipantMode();
    else
      throw new ProcessEngineException("参与者模式值不正确,Mode="+mode);
  }
View Full Code Here

TOP

Related Classes of com.starflow.wf.engine.core.participant.impl.ActLogicParticipantMode

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.