1 23 24 package com.sun.enterprise.admin.mbeans.custom; 25 import java.util.Map ; 26 import javax.management.MBeanInfo ; 27 28 38 public interface CustomMBeanOperationsMBean { 39 45 public String createMBean(String target, String className) throws CustomMBeanException; 46 47 59 public String createMBean(String target, Map <String , String > params) throws CustomMBeanException; 60 61 87 public String createMBean(String target, Map <String , String > params, Map <String , String > attributes) throws CustomMBeanException; 88 89 93 public String deleteMBean(String target, String name) throws CustomMBeanException; 94 95 102 public void createMBeanRef(String target, String ref) throws CustomMBeanException; 103 104 112 public void deleteMBeanRef(String target, String ref) throws CustomMBeanException; 113 114 128 public MBeanInfo getMBeanInfo(String classname) throws CustomMBeanException; 129 } | Popular Tags |