1 27 package org.objectweb.speedo.jmx.mbeans; 28 29 import java.util.Collection ; 30 31 import org.objectweb.perseus.cache.api.CacheException; 32 import org.objectweb.speedo.query.api.QueryManagerAttribute; 33 34 39 public interface QueryMBean extends QueryManagerAttribute { 40 41 String getCompiledQueryCache_AutoCleanSize(); 42 String getCompiledQueryCache_AutoCleanThreshold(); 43 Collection getCompiledQueryCache_ObjectIdentifiers(); 44 int getCompiledQueryCache_CurrentSize(); 45 int getCompiledQueryCache_MaxObjects(); 46 void setCompiledQueryCache_AutoCleanSize(String size); 47 void setCompiledQueryCache_AutoCleanThreshold(String size); 48 void setCompiledQueryCache_MaxObjects(int size) throws IllegalArgumentException , 49 CacheException; 50 51 54 void evictAllCompiledQueriesFromCache(); 55 } 56 | Popular Tags |