FileDocCategorySizeDatePackage
WebServiceEndpointImpl.javaAPI DocGlassfish v2 API4010Fri May 04 22:23:30 BST 2007com.sun.enterprise.management.j2ee

WebServiceEndpointImpl

public final class WebServiceEndpointImpl extends J2EEManagedObjectImplBase

Fields Summary
Constructors Summary
public WebServiceEndpointImpl(com.sun.enterprise.management.support.Delegate delegate)

		super( delegate );
	
Methods Summary
public javax.management.ObjectNamegetImplementationPeerObjectName()

        unimplementedOperation("getImplementationPeer");
          return null;
    
public java.lang.StringgetImplementationType()

        String result = null;
        try {
            if ( getDelegate().supportsOperation( "getImplementationType", null, null ) )
            {
                result= (String)getDelegate().invoke( "getImplementationType", null, null);
            }
        } catch (Exception e) {
              getMBeanLogger().warning( ExceptionUtil.toString( e ) );
        }
        
        return result;
    
public java.util.Map[]getMessagesInHistory()

        Map<String,Serializable>[] result = null;
        try {
            result= TypeCast.asArray( getDelegate().invoke( 
                "getMessagesInHistory", null, null) );
        } catch (Exception e) {
        	final Throwable rootCause = ExceptionUtil.getRootCause( e );
			getMBeanLogger().warning( rootCause.toString() + "\n" +
				ExceptionUtil.getStackTrace( rootCause ) );
        }
        return result;
    
protected java.lang.StringgetMonitoringPeerJ2EEType()

		return( XTypes.WEBSERVICE_ENDPOINT_MONITOR );
	
public com.sun.appserv.management.monitor.statistics.WebServiceEndpointAggregateStatsgetStats()

		return( (WebServiceEndpointAggregateStats)getStatsGeneric() );
	
public booleanisConfigProvider()

	
		return( false );