コード例 #1
0
 public AcUspsInternationalSupply getUspsInternationalSupply(Integer id) {
   AcAccountServiceRegistryIF registry = newRegistry();
   try {
     return registry.getUspsInternationalSupplyService().getUspsInternationalSupply(id);
   } finally {
     registry.releaseAll();
   }
 }
コード例 #2
0
 public JwList<AcUspsInternationalSupply> getAllAvailable() {
   AcAccountServiceRegistryIF registry = newRegistry();
   try {
     return registry.getUspsInternationalSupplyService().getAllAvailable();
   } finally {
     registry.releaseAll();
   }
 }
コード例 #3
0
 public boolean uspsInternationalSupplyExists(AcUspsInternationalSupplyPkIF pk) {
   AcAccountServiceRegistryIF registry = newRegistry();
   try {
     return registry.getUspsInternationalSupplyService().uspsInternationalSupplyExists(pk);
   } finally {
     registry.releaseAll();
   }
 }
コード例 #4
0
 public void delete(Integer id) {
   AcAccountServiceRegistryIF registry = newRegistry();
   try {
     registry.getUspsInternationalSupplyService().delete(id);
   } finally {
     registry.releaseAll();
   }
 }
コード例 #5
0
 public void update(AcUspsInternationalSupply uspsInternationalSupply) {
   AcAccountServiceRegistryIF registry = newRegistry();
   try {
     registry.getUspsInternationalSupplyService().update(uspsInternationalSupply);
   } finally {
     registry.releaseAll();
   }
 }
コード例 #6
0
 public Integer insert(AcUspsInternationalSupply uspsInternationalSupply) {
   AcAccountServiceRegistryIF registry = newRegistry();
   try {
     return registry.getUspsInternationalSupplyService().insert(uspsInternationalSupply);
   } finally {
     registry.releaseAll();
   }
 }
コード例 #7
0
 public JwList<AcUspsInternationalSupply> getAllWhere(String whereClause, Integer rowLimit) {
   AcAccountServiceRegistryIF registry = newRegistry();
   try {
     return registry.getUspsInternationalSupplyService().getAllWhere(whereClause, rowLimit);
   } finally {
     registry.releaseAll();
   }
 }
コード例 #8
0
 public AcUspsInternationalSupply getUspsInternationalSupplyByWebKey(String webKey) {
   AcAccountServiceRegistryIF registry = newRegistry();
   try {
     return registry
         .getUspsInternationalSupplyService()
         .getUspsInternationalSupplyByWebKey(webKey);
   } finally {
     registry.releaseAll();
   }
 }
コード例 #9
0
 public JwList<AcUspsInternationalSupply> getAllByEffectiveDates(
     JwDate effectiveStartDt, JwDate effectiveEndDt) {
   AcAccountServiceRegistryIF registry = newRegistry();
   try {
     return registry
         .getUspsInternationalSupplyService()
         .getAllByEffectiveDates(effectiveStartDt, effectiveEndDt);
   } finally {
     registry.releaseAll();
   }
 }