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);
 }