FileDocCategorySizeDatePackage
GetMBeanCountCaller.javaAPI DocGlassfish v2 API3629Fri May 04 22:36:28 BST 2007com.sun.enterprise.admin.jmx.remote.server.callers

GetMBeanCountCaller

public class GetMBeanCountCaller extends AbstractMethodCaller
Invokes the method getMBeanCount of the MBeanServerConnection.
see
MBeanServerRequestMessage#GET_MBEAN_COUNT
author
Kedar Mhaswade
since
S1AS8.0
version
1.0

Fields Summary
private static final Logger
logger
Constructors Summary
public GetMBeanCountCaller(MBeanServerConnection mbsc)
Creates a new instance of CreateMBeanCaller

/*, 
        DefaultConfiguration.LOGGER_RESOURCE_BUNDLE_NAME );*/

           
       
        super(mbsc);
        METHOD_ID = MBeanServerRequestMessage.GET_MBEAN_COUNT;
        logger.finer("GetMBeanCountCaller ctor called");
    
Methods Summary
public javax.management.remote.message.MBeanServerResponseMessagecall(javax.management.remote.message.MBeanServerRequestMessage request)

        Object result = null;
        boolean isException = false;
        try {
            result = mbsc.getMBeanCount();
        }
        catch(Throwable e) {
            result = e;
            isException = true;
        }
        return ( new MBeanServerResponseMessage(METHOD_ID, result, isException) );