1 23 24 28 29 31 32 package com.sun.enterprise.management.support; 33 34 import javax.management.ObjectName ; 35 import javax.management.MBeanRegistration ; 36 import javax.management.NotificationListener ; 37 import javax.management.InstanceNotFoundException ; 38 import javax.management.MBeanRegistrationException ; 39 40 41 import com.sun.appserv.management.base.AMXMBeanLogging; 42 43 46 public interface LoaderMBean 47 extends AMXSupport, MBeanRegistration , 48 NotificationListener 49 { 50 public static final String LOADER_NAME_PROPS = "name=mbean-loader"; 51 52 53 57 public String getAdministrativeDomainName(); 58 59 62 public String getAMXJMXDomainName(); 63 64 65 71 72 79 public boolean isStarted( ); 80 81 85 public ObjectName sync( final ObjectName name); 86 87 91 public void adminServiceReady(); 92 93 99 public ObjectName resyncAMXMBean( final ObjectName amxObjectName ) 100 throws InstanceNotFoundException , MBeanRegistrationException ; 101 102 103 106 public boolean isDAS(); 107 } 108 109 110 111 112 113 114 115 116 | Popular Tags |