1 23 package com.sun.enterprise.management; 24 25 import com.sun.enterprise.management.support.LBBootstrapUtil; 26 27 28 31 public final class DomainRootImpl extends DomainRootImplBase 32 { 33 public 34 DomainRootImpl() 35 { 36 } 37 38 public void 39 postRegisterHook(Boolean registrationDone) 40 { 41 super.postRegisterHook(registrationDone); 42 43 try 44 { 45 new LBBootstrapUtil(getObjectName(), mServer); 46 } 47 catch (Exception ex) 48 { 49 logWarning( "DomainRootImpl: postRegisterHook Bootstrapping for LB failed" ); 50 } 51 } 52 } 53 54 55 56 57 58 59 60 61 62 63 64 65 | Popular Tags |