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