Package com.exedosoft.plat

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


  }

  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

Related Classes of com.exedosoft.plat.DOThreadContext

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.