1 23 24 package com.sun.enterprise.admin.server.core.jmx; 25 26 import java.util.Set ; 28 29 import javax.management.ObjectName ; 31 32 40 41 public interface IRepository 42 { 43 53 public boolean add(ObjectName name, Object mbeanImpl); 54 55 62 public boolean remove(ObjectName objectName); 63 64 70 public boolean contains(ObjectName objectName); 71 72 82 public Object find(ObjectName objectName); 83 84 93 public Object findPersistent(ObjectName objectName); 94 95 100 public int getCount(String domainName); 101 102 107 public int getTotalCount(); 108 109 115 public Set getAllMBeans(); 116 117 127 public Set query(ObjectName objectName); 128 } | Popular Tags |