1 23 24 28 29 34 35 package com.sun.enterprise.admin.monitor.stats; 36 37 41 42 import javax.management.j2ee.statistics.Stats ; 43 import javax.management.j2ee.statistics.CountStatistic ; 44 45 49 public interface PWCKeepAliveStats extends Stats { 50 51 55 public CountStatistic getCountConnections(); 56 57 61 public CountStatistic getMaxConnections(); 62 63 68 public CountStatistic getCountHits(); 69 70 75 public CountStatistic getCountFlushes(); 76 77 82 public CountStatistic getCountRefusals(); 83 84 89 public CountStatistic getCountTimeouts(); 90 91 95 public CountStatistic getSecondsTimeouts(); 96 97 } 98 | Popular Tags |