1 23 24 28 29 package com.sun.appserv.util.cache.mbeans; 30 31 37 public interface JmxBaseCacheMBean { 38 39 42 public String getName(); 43 44 47 public Integer getMaxEntries(); 48 49 52 public Integer getThreshold(); 53 54 57 public Integer getTableSize(); 58 59 62 public Integer getEntryCount(); 63 64 67 public Integer getHitCount(); 68 69 72 public Integer getMissCount(); 73 74 77 public Integer getRemovalCount(); 78 79 83 public Integer getRefreshCount(); 84 85 88 public Integer getOverflowCount(); 89 90 93 public Integer getAddCount(); 94 } 95 | Popular Tags |