1 23 24 package com.sun.enterprise.admin.server.core; 25 import com.sun.enterprise.config.serverbeans.Mbean; 26 import java.util.List ; 27 import javax.management.ObjectName ; 28 29 31 public interface CustomMBeanRegistration { 32 33 45 public void registerMBeans(List <Mbean> mbeans) throws RuntimeException ; 46 47 57 public void registerMBeans(List <Mbean> mbeans, boolean continueReg) throws RuntimeException ; 58 59 76 public ObjectName registerMBean(Mbean mbd) throws RuntimeException ; 77 78 85 public void setClassLoader(ClassLoader cl) throws IllegalArgumentException ; 86 } | Popular Tags |