public void deleteDomain(ICFInternetDomainObj Obj) {
   ICFInternetDomainObj obj = Obj;
   ((ICFBamSchema) schema.getBackingStore())
       .getTableDomain()
       .deleteDomain(schema.getAuthorization(), obj.getDomainBuff());
   obj.forget(true);
 }
 public ICFInternetDomainObj updateDomain(ICFInternetDomainObj Obj) {
   ICFInternetDomainObj obj = Obj;
   ((ICFBamSchema) schema.getBackingStore())
       .getTableDomain()
       .updateDomain(schema.getAuthorization(), Obj.getDomainBuff());
   if (Obj.getClassCode().equals("DOMN")) {
     obj = (ICFInternetDomainObj) Obj.realize();
   }
   return (obj);
 }
 public ICFInternetDomainObj createDomain(ICFInternetDomainObj Obj) {
   ICFInternetDomainObj obj = Obj;
   CFInternetDomainBuff buff = obj.getDomainBuff();
   ((ICFBamSchema) schema.getBackingStore())
       .getTableDomain()
       .createDomain(schema.getAuthorization(), buff);
   obj.copyBuffToPKey();
   if (obj.getPKey().getClassCode().equals("DOMN")) {
     obj = (ICFInternetDomainObj) (obj.realize());
   }
   return (obj);
 }