FileDocCategorySizeDatePackage
CreateMBeanCaller.javaAPI DocGlassfish v2 API3390Fri May 04 22:36:26 BST 2007com.sun.enterprise.admin.jmx.remote.server.callers

CreateMBeanCaller

public class CreateMBeanCaller extends AbstractMethodCaller
Invokes the method createMBean of the MBeanServerConnection.
see
MBeanServerRequestMessage#CREATE_MBEAN
author
Kedar Mhaswade
since
S1AS8.0
version
1.0

Fields Summary
Constructors Summary
public CreateMBeanCaller(MBeanServerConnection mbsc)
Creates a new instance of CreateMBeanCaller

        super(mbsc);
        METHOD_ID = MBeanServerRequestMessage.CREATE_MBEAN;
    
Methods Summary
public javax.management.remote.message.MBeanServerResponseMessagecall(javax.management.remote.message.MBeanServerRequestMessage request)

        Object result = null;
        boolean isException = false;
        try {
            result = mbsc.createMBean((String)request.getParams()[0],
            (ObjectName)request.getParams()[1]);
        }
        catch(Throwable e) {
            result = e;
            isException = true;
        }
        return ( new MBeanServerResponseMessage(METHOD_ID, result, isException) );