NodeAgentspublic class NodeAgents extends com.sun.enterprise.config.ConfigBean implements SerializableThis generated bean class NodeAgents matches the DTD element node-agents |
Fields Summary |
---|
static Vector | comparators | private static final org.netbeans.modules.schema2beans.Version | runtimeVersion | public static final String | NODE_AGENT |
Constructors Summary |
---|
public NodeAgents()
this(Common.USE_DEFAULT_VALUES);
| public NodeAgents(int options)
super(comparators, runtimeVersion);
// Properties (see root bean comments for the bean graph)
initPropertyTables(1);
this.createProperty("node-agent", NODE_AGENT,
Common.TYPE_0_N | Common.TYPE_BEAN | Common.TYPE_KEY,
NodeAgent.class);
this.createAttribute(NODE_AGENT, "name", "Name",
AttrProp.CDATA | AttrProp.REQUIRED,
null, null);
this.createAttribute(NODE_AGENT, "system-jmx-connector-name", "SystemJmxConnectorName",
AttrProp.CDATA | AttrProp.IMPLIED,
null, null);
this.createAttribute(NODE_AGENT, "start-servers-in-startup", "StartServersInStartup",
AttrProp.CDATA,
null, "true");
this.initialize(options);
|
Methods Summary |
---|
public static void | addComparator(org.netbeans.modules.schema2beans.BeanComparator c)
comparators.add(c);
| public int | addNodeAgent(NodeAgent value)
return addNodeAgent(value, true);
| public int | addNodeAgent(NodeAgent value, boolean overwrite)
NodeAgent old = getNodeAgentByName(value.getName());
if(old != null) {
throw new ConfigException(StringManager.getManager(NodeAgents.class).getString("cannotAddDuplicate", "NodeAgent"));
}
return this.addValue(NODE_AGENT, value, overwrite);
| public void | dump(java.lang.StringBuffer str, java.lang.String indent)
String s;
Object o;
org.netbeans.modules.schema2beans.BaseBean n;
str.append(indent);
str.append("NodeAgent["+this.sizeNodeAgent()+"]"); // NOI18N
for(int i=0; i<this.sizeNodeAgent(); i++)
{
str.append(indent+"\t");
str.append("#"+i+":");
n = (org.netbeans.modules.schema2beans.BaseBean) this.getNodeAgent(i);
if (n != null)
n.dump(str, indent + "\t"); // NOI18N
else
str.append(indent+"\tnull"); // NOI18N
this.dumpAttributes(NODE_AGENT, i, str, indent);
}
| public java.lang.String | dumpBeanNode()
StringBuffer str = new StringBuffer();
str.append("NodeAgents\n"); // NOI18N
this.dump(str, "\n "); // NOI18N
return str.toString();
| public static java.lang.String | getDefaultAttributeValue(java.lang.String attr)
if(attr == null) return null;
attr = attr.trim();
return null;
| public NodeAgent | getNodeAgent(int index)
return (NodeAgent)this.getValue(NODE_AGENT, index);
| public NodeAgent[] | getNodeAgent()
return (NodeAgent[])this.getValues(NODE_AGENT);
| public NodeAgent | getNodeAgentByName(java.lang.String id)
if (null != id) { id = id.trim(); }
NodeAgent[] o = getNodeAgent();
if (o == null) return null;
for (int i=0; i < o.length; i++) {
if(o[i].getAttributeValue(Common.convertName(ServerTags.NAME)).equals(id)) {
return o[i];
}
}
return null;
| protected java.lang.String | getRelativeXPath()get the xpath representation for this element
returns something like abc[@name='value'] or abc
depending on the type of the bean
String ret = null;
ret = "node-agents";
return (null != ret ? ret.trim() : null);
| void | initialize(int options)
| public NodeAgent | newNodeAgent()Create a new bean using it's default constructor.
This does not add it to any bean graph.
return new NodeAgent();
| public static void | removeComparator(org.netbeans.modules.schema2beans.BeanComparator c)
comparators.remove(c);
| public int | removeNodeAgent(NodeAgent value)
return this.removeValue(NODE_AGENT, value);
| public int | removeNodeAgent(NodeAgent value, boolean overwrite)
return this.removeValue(NODE_AGENT, value, overwrite);
| public void | setNodeAgent(NodeAgent[] value)
this.setValue(NODE_AGENT, value);
| public int | sizeNodeAgent()
return this.size(NODE_AGENT);
| public void | validate()
|
|