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