1 23 24 28 29 34 35 package com.sun.enterprise.admin.monitor.stats; 36 37 41 import javax.management.j2ee.statistics.Stats ; 42 import javax.management.j2ee.statistics.CountStatistic ; 43 44 49 public interface PWCDnsStats extends Stats { 50 51 55 public CountStatistic getFlagCacheEnabled(); 56 57 61 public CountStatistic getCountCacheEntries(); 62 63 67 public CountStatistic getMaxCacheEntries(); 68 69 73 public CountStatistic getCountCacheHits(); 74 75 79 public CountStatistic getCountCacheMisses(); 80 81 85 public CountStatistic getFlagAsyncEnabled(); 86 87 91 public CountStatistic getCountAsyncNameLookups(); 92 93 97 public CountStatistic getCountAsyncAddrLookups(); 98 99 103 public CountStatistic getCountAsyncLookupsInProgress(); 104 105 } 106 | Popular Tags |