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

IsRegisteredCaller

public class IsRegisteredCaller extends AbstractMethodCaller
Invokes the method isRegistered of the MBeanServerConnection.
see
MBeanServerRequestMessage#IS_REGISTERED
author
Kedar Mhaswade
since
S1AS8.0
version
1.0

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

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

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