Methods Summary |
---|
public javax.management.ObjectName | getImplementationPeerObjectName()
unimplementedOperation("getImplementationPeer");
return null;
|
public java.lang.String | getImplementationType()
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.String | getMonitoringPeerJ2EEType()
return( XTypes.WEBSERVICE_ENDPOINT_MONITOR );
|
public com.sun.appserv.management.monitor.statistics.WebServiceEndpointAggregateStats | getStats()
return( (WebServiceEndpointAggregateStats)getStatsGeneric() );
|
public boolean | isConfigProvider()
return( false );
|