1 23 24 package com.sun.enterprise.admin.mbeans.custom; 25 import java.util.List ; 26 import javax.management.ObjectName ; 27 28 33 public interface CustomMBeanConfigQueries { 34 35 42 public List <String > listMBeanNames(String target) throws CustomMBeanException; 43 44 55 public List <ObjectName > listMBeanConfigObjectNames(String target) throws CustomMBeanException; 56 57 67 public List <ObjectName > listMBeanConfigObjectNames(String target, int type, boolean state) throws CustomMBeanException; 68 69 75 public boolean existsMBean(String target, String name) throws CustomMBeanException; 76 77 83 public boolean isMBeanEnabled(String target, String name) throws CustomMBeanException; 84 } | Popular Tags |