Helper class for dealing with remote JMX beans in typed or untyped ways.
| Constructor: |
public MBeanInvocationHandler(URL endpoint) {
super(endpoint);
}
Creates new MBeanInvocationHandler pointing to a given url, using the given engine |
public MBeanInvocationHandler(URL endpoint,
Map methodMap) {
super(endpoint, methodMap);
}
Creates new MBeanInvocationHandler pointing to a given url, using the given engine |
public MBeanInvocationHandler(URL endpoint,
Map methodMap,
Map interfaceMap) {
super(endpoint, methodMap, interfaceMap);
}
Creates new MBeanInvocationHandler pointing to a given url, using the given engine |
public MBeanInvocationHandler(Call call,
Map methodMap,
Map interfaceMap) {
super(call, methodMap, interfaceMap);
}
Creates new MBeanInvocationHandler |
public MBeanInvocationHandler(URL endpoint,
Map methodMap,
Map interfaceMap,
boolean maintainSession) {
super(endpoint, methodMap, interfaceMap, maintainSession);
}
Creates new MBeanInvocationHandler pointing to a given url, using the given engine |
public MBeanInvocationHandler(URL endpoint,
Service service,
Map methodMap,
Map interfaceMap) {
super(endpoint, service, methodMap, interfaceMap);
}
Creates new MBeanInvocationHandler |