86f636634764765ac0c8a4ef7d6edd0333f67a87.svn-base 1.7 KB

123456789101112131415161718192021222324252627282930
  1. package com.kingdee.eas.custom.facade.IntelligentRules;
  2. import com.kingdee.bos.BOSException;
  3. import com.kingdee.bos.BOSObjectFactory;
  4. import com.kingdee.bos.util.BOSObjectType;
  5. import com.kingdee.bos.Context;
  6. public class IntelligentRulesFacadeFactory
  7. {
  8. private IntelligentRulesFacadeFactory()
  9. {
  10. }
  11. public static com.kingdee.eas.custom.facade.IntelligentRules.IIntelligentRulesFacade getRemoteInstance() throws BOSException
  12. {
  13. return (com.kingdee.eas.custom.facade.IntelligentRules.IIntelligentRulesFacade)BOSObjectFactory.createRemoteBOSObject(new BOSObjectType("0B34AF0C") ,com.kingdee.eas.custom.facade.IntelligentRules.IIntelligentRulesFacade.class);
  14. }
  15. public static com.kingdee.eas.custom.facade.IntelligentRules.IIntelligentRulesFacade getRemoteInstanceWithObjectContext(Context objectCtx) throws BOSException
  16. {
  17. return (com.kingdee.eas.custom.facade.IntelligentRules.IIntelligentRulesFacade)BOSObjectFactory.createRemoteBOSObjectWithObjectContext(new BOSObjectType("0B34AF0C") ,com.kingdee.eas.custom.facade.IntelligentRules.IIntelligentRulesFacade.class, objectCtx);
  18. }
  19. public static com.kingdee.eas.custom.facade.IntelligentRules.IIntelligentRulesFacade getLocalInstance(Context ctx) throws BOSException
  20. {
  21. return (com.kingdee.eas.custom.facade.IntelligentRules.IIntelligentRulesFacade)BOSObjectFactory.createBOSObject(ctx, new BOSObjectType("0B34AF0C"));
  22. }
  23. public static com.kingdee.eas.custom.facade.IntelligentRules.IIntelligentRulesFacade getLocalInstance(String sessionID) throws BOSException
  24. {
  25. return (com.kingdee.eas.custom.facade.IntelligentRules.IIntelligentRulesFacade)BOSObjectFactory.createBOSObject(sessionID, new BOSObjectType("0B34AF0C"));
  26. }
  27. }