AppletRemoteMBeanInvokerpublic class AppletRemoteMBeanInvoker extends Object implements SimpleRemoteMBeanInvoker
Constructors Summary |
---|
public AppletRemoteMBeanInvoker(String baseUrl)
// Static --------------------------------------------------------
// Constructors --------------------------------------------------
this.baseUrl = new java.net.URL (baseUrl);
|
Methods Summary |
---|
public java.lang.Object | getAttribute(javax.management.ObjectName name, java.lang.String attrName)
return Util.getAttribute(this.baseUrl, new RemoteMBeanAttributeInvocation(name, attrName));
| public java.lang.Object | invoke(javax.management.ObjectName name, java.lang.String operationName, java.lang.Object[] params, java.lang.String[] signature)
return Util.invoke (this.baseUrl, new RemoteMBeanInvocation (name, operationName, params, signature));
|
|