public void delete(Integer id) {
   _delegate.delete(id);
 }
 public Integer insert(AcUspsDomesticSupply uspsDomesticSupply) {
   return _delegate.insert(uspsDomesticSupply);
 }
 public void update(AcUspsDomesticSupply uspsDomesticSupply) {
   _delegate.update(uspsDomesticSupply);
 }
 public JwList<AcUspsDomesticSupply> getAllWhere(String whereClause, Integer rowLimit) {
   return _delegate.getAllWhere(whereClause, rowLimit);
 }
 public JwList<AcUspsDomesticSupply> getAllByEffectiveDates(
     JwDate effectiveStartDt, JwDate effectiveEndDt) {
   return _delegate.getAllByEffectiveDates(effectiveStartDt, effectiveEndDt);
 }
 public AcUspsDomesticSupply getUspsDomesticSupplyByWebKey(String webKey) {
   return _delegate.getUspsDomesticSupplyByWebKey(webKey);
 }
 public JwList<AcUspsDomesticSupply> getAllAvailable() {
   return _delegate.getAllAvailable();
 }
 public boolean uspsDomesticSupplyExists(AcUspsDomesticSupplyPkIF pk) {
   return _delegate.uspsDomesticSupplyExists(pk);
 }
 public boolean uspsDomesticSupplyExists(Integer id) {
   return _delegate.uspsDomesticSupplyExists(id);
 }
 public AcUspsDomesticSupply getUspsDomesticSupply(AcUspsDomesticSupplyPkIF pk) {
   return _delegate.getUspsDomesticSupply(pk);
 }
 public AcUspsDomesticSupply getUspsDomesticSupply(Integer id) {
   return _delegate.getUspsDomesticSupply(id);
 }
 public void release() {
   _delegate.release();
 }