Using this class directly is discouraged. You should envisage using the {@link CascadingService} instead.
A CascadingAgent is an MBean that is able to mount a partial view of a source MBeanServer into a target MBeanServer. The source MBeanServer is also sometimes called the cascaded MBeanServer, while the target MBeanServer is called the cascading MBeanServer.
The Java DMK cascading API introduces the notion of domain path. An ObjectName is thus decomposed into three parts:
<domain-path><domain-base-name>:<key-property-list>The domain path is a hierarchical name similar to a UNIX path name, and using the character `/' as separator.
[...] java.lang:type=Compilation java.lang:type=Threading [...] server1/instance1/java.lang:type=Threading server1/instance1/java.lang:type=Compilation [...] server1/instance2/java.lang:type=Threading server1/instance2/java.lang:type=Compilation [...]See {@link com.sun.jdmk.remote.cascading} for more details. @since Java DMK 5.1
|
|