1 23 24 26 27 package com.sun.enterprise.management.monitor; 28 29 import javax.management.ObjectName ; 30 31 import com.sun.appserv.management.base.XTypes; 32 import com.sun.enterprise.management.support.Delegate; 33 34 import com.sun.appserv.management.monitor.statistics.HTTPServiceVirtualServerStats; 35 36 37 38 public class HTTPServiceVirtualServerMonitorImpl 39 extends MonitoringStatsImplBase 40 { 42 public 43 HTTPServiceVirtualServerMonitorImpl( final Delegate delegate ) 44 { 45 super( XTypes.HTTP_SERVICE_VIRTUAL_SERVER_MONITOR, delegate); 46 } 47 48 protected Class 49 getStatsInterface() 50 { 51 return( HTTPServiceVirtualServerStats.class ); 52 } 53 54 55 public HTTPServiceVirtualServerStats 56 getHTTPServiceVirtualServerStats() 57 { 58 return (HTTPServiceVirtualServerStats)getStats(); 59 } 60 } 61 | Popular Tags |