Package org.nightlabs.jfire.trade

Examples of org.nightlabs.jfire.trade.CustomerGroupMapping


  public CustomerGroupMapping createCustomerGroupMapping(CustomerGroupID localCustomerGroupID, CustomerGroupID partnerCustomerGroupID, boolean get, String[] fetchGroups, int maxFetchDepth, ProgressMonitor monitor)
  {
    try {
      TradeManagerRemote tm = JFireEjb3Factory.getRemoteBean(TradeManagerRemote.class, SecurityReflector.getInitialContextProperties());
      CustomerGroupMapping cgm = tm.createCustomerGroupMapping(localCustomerGroupID, partnerCustomerGroupID, get, fetchGroups, maxFetchDepth);

      if (cgm != null)
        Cache.sharedInstance().put(null, cgm, fetchGroups, maxFetchDepth);

      return cgm;
View Full Code Here

TOP

Related Classes of org.nightlabs.jfire.trade.CustomerGroupMapping

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.