Package com.exedosoft.plat.action

Examples of com.exedosoft.plat.action.DOAction


     *
     */
    if (nextNodeInstance.getAuthType() != null
        && (nextNodeInstance.getAuthType().intValue() == PTNode.AUTH_TYPE_SCHEDULE_CLASS)) {

      DOAction doa = ActionFactory.getAction(nextNodeInstance.getNode()
          .getAccessClass());
      BOInstance para = new BOInstance();
      para.putValue("corr_nodeinstance", nextNodeInstance);
      doa.setInstance(para);
      if (doa != null) {
        try {
          doa.excute();
        } catch (ExedoException e) {
          // TODO Auto-generated catch block
          e.printStackTrace();
        }
      }
View Full Code Here

TOP

Related Classes of com.exedosoft.plat.action.DOAction

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.