1 23 24 package com.sun.enterprise.management.monitor; 25 26 import com.sun.appserv.management.base.XTypes; 27 28 import com.sun.enterprise.management.support.Delegate; 29 30 import com.sun.appserv.management.monitor.statistics.KeepAliveStats; 31 32 35 public final class KeepAliveMonitorImpl extends MonitoringStatsImplBase 36 { 37 public KeepAliveMonitorImpl(Delegate delegate) 38 { 39 super( XTypes.KEEP_ALIVE_MONITOR, delegate ); 40 } 41 42 43 protected Class 44 getStatsInterface() 45 { 46 return( KeepAliveStats.class ); 47 } 48 49 public KeepAliveStats 50 getKeepAliveStats() 51 { 52 return (KeepAliveStats)getStats(); 53 } 54 55 } 56 57 | Popular Tags |