1 23 24 27 28 package com.sun.enterprise.admin.mbeanapi; 29 30 import javax.management.MBeanException ; 31 import javax.management.AttributeList ; 32 import com.sun.enterprise.admin.config.MBeanConfigException; 33 34 public interface IDomainMBean 35 { 36 public AttributeList getDefaultCustomProperties(String mbeanTypeName, AttributeList attributeList) 37 throws MBeanException ; 38 39 public AttributeList getDefaultAttributeValues(String mbeanTypeName, String attrNames[]) 40 throws MBeanException ; 41 42 public String getConfigDir() 43 throws MBeanException ; 44 45 50 public String getName() throws MBeanConfigException, MBeanException ; 51 } 52 | Popular Tags |