1 7 package org.jboss.cache.jmx; 8 9 import org.jboss.cache.Cache; 10 import org.jboss.cache.config.Configuration; 11 12 24 public interface CacheJmxWrapperMBean extends LifeCycle 25 { 26 29 Cache getCache(); 30 31 34 Configuration getConfiguration(); 35 36 39 String getConfigurationAsString(); 40 41 44 String getConfigurationAsHtmlString(); 45 46 49 String getCacheDetails(); 50 51 54 String getCacheDetailsAsHtml(); 55 56 59 int getNumberOfNodes(); 60 61 64 int getNumberOfAttributes(); 65 66 69 String getLockInfo(); 70 71 74 String getLockInfoAsHtml(); 75 76 82 boolean getRegisterInterceptors(); 83 84 90 void setRegisterInterceptors(boolean register); 91 } 92 | Popular Tags |