Examples of DOThreadContext


Examples of com.exedosoft.plat.DOThreadContext

   */

  public abstract String excute() throws ExedoException;

  public void setInstance(BOInstance instance) {
    DOThreadContext context = DOGlobals.getInstance().getRuleContext();
   
    if(service!=null){
      context.put(service.getName(), instance);
    }
   
    //////当时注释掉 肯定是有道理的,恐怕影响全局???????????????????????、
//    context.setInstance(instance);

  //////////现在放开
    context.setInstance(instance);

 

  }
View Full Code Here

Examples of com.exedosoft.plat.DOThreadContext

  }

  public void setInstances(List instances) {
    // TODO Auto-generated method stub
    DOThreadContext context = DOGlobals.getInstance().getRuleContext();
  //  context.put(service.getName(), instances);
    context.setInstances(instances);

  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.