class JmxServerConnectorFactory
extends AbstractFactory
This is the server connector factory used for node JmxBuilder.connectorServer(). A call to this node returns an instance of JMXConnectorServer interface (rmi default).
Possible syntax:
JmxBuilder.connectorServer(
protocol:"rmi",
host:"...",
port:1099,
url:"...",
properties:[
"authenticate":true|false,
"passwordFile":"...",
"accessFile":"...",
"sslEnabled" : true | false
...
]
)
| Constructor and description |
|---|
JmxServerConnectorFactory() |
| Type Params | Return Type | Name and description |
|---|---|---|
|
boolean |
isLeaf()Indicates that the connector server node may contain children. |
|
Object |
newInstance(FactoryBuilderSupport builder, Object nodeName, Object nodeArgs, Map nodeAttribs)Creates a server connector for the supplied connection settings. |
|
boolean |
onHandleNodeAttributes(FactoryBuilderSupport builder, Object node, Map nodeAttribs)Consumes node attributes without additional processing. |
|
void |
onNodeCompleted(FactoryBuilderSupport builder, Object parentNode, Object thisNode)Completes connector server node creation. |
| Methods inherited from class | Name |
|---|---|
class AbstractFactory |
isHandlesNodeChildren, isLeaf, onFactoryRegistration, onHandleNodeAttributes, onNodeChildren, onNodeCompleted, setChild, setParent |
Indicates that the connector server node may contain children.
falseCreates a server connector for the supplied connection settings.
builder - the active buildernodeName - the node namenodeArgs - positional node argumentsnodeAttribs - named node attributesConsumes node attributes without additional processing.
builder - the active buildernode - the current nodenodeAttribs - remaining node attributestrueCompletes connector server node creation.
builder - the active builderparentNode - the parent nodethisNode - the created connector serverCopyright © 2003-2026 The Apache Software Foundation. All rights reserved.