Package org.nightlabs.jdo

Examples of org.nightlabs.jdo.FetchPlanBackup


    detachedPerson.deflate();
  }

  public static LegalEntity detachLegalEntity(PersistenceManager pm, LegalEntity legalEntity, Set<EndCustomerReplicationPolicy> endCustomerReplicationPolicies)
  {
    FetchPlanBackup fetchPlanBackup = NLJDOHelper.backupFetchPlan(pm.getFetchPlan());
    try {
//      Collection<String> c1 = CollectionUtil.castCollection(pm.getFetchPlan().getGroups());
//      Set<String> fetchGroups = new HashSet<String>(c1);
      Set<String> fetchGroups = new HashSet<String>();
      fetchGroups.add(FetchPlan.DEFAULT);
View Full Code Here

TOP

Related Classes of org.nightlabs.jdo.FetchPlanBackup

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.