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

CreateMBeanLoaderCaller

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

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

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

        final Object result		= new UnsupportedOperationException("" + METHOD_ID);
        final boolean isException = true;
        return ( new MBeanServerResponseMessage(METHOD_ID, result, isException) );