Package com.exedosoft.wf.wfi

Examples of com.exedosoft.wf.wfi.NodeInstance


    DOBO ptNI = DOBO.getDOBOByName("do_wfi_nodeinstance");
    if (ptNI.getCorrInstance() == null) {
      this.setEchoValue(I18n.instance().get("当前工作流上下文丢失,请重新操作!"));
      return null;
    }
    NodeInstance ni = NodeInstance.getNodeInstanceByID(ptNI
        .getCorrInstance().getUid());
    try {
      ni.withDraw();
    } catch (WFException e) {
      this.setEchoValue(e.getMessage());
      return NO_FORWARD;
    }
    return DEFAULT_FORWARD;
View Full Code Here

TOP

Related Classes of com.exedosoft.wf.wfi.NodeInstance

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.