1 7 8 package com.sun.jmx.mbeanserver; 9 10 11 import java.util.ArrayList ; 13 import java.util.Set ; 14 15 16 import javax.management.*; 18 19 26 public interface Repository { 27 28 29 37 public void setConfigParameters(ArrayList configParameters) ; 38 39 46 public boolean isFiltering() ; 47 48 56 public void addMBean(Object object, ObjectName name ) 57 throws InstanceAlreadyExistsException ; 58 59 67 public boolean contains(ObjectName name) ; 68 69 78 public Object retrieve(ObjectName name) ; 79 80 94 public Set query(ObjectName name, QueryExp query); 95 96 103 public void remove(ObjectName name) throws InstanceNotFoundException ; 104 105 110 public Integer getCount() ; 111 112 117 public String getDefaultDomain() ; 118 119 125 public String [] getDomains(); 126 127 } 128 | Popular Tags |