FileDocCategorySizeDatePackage
NodeAgents.javaAPI DocGlassfish v2 API6213Fri May 26 10:47:10 BST 2006com.sun.enterprise.config.serverbeans

NodeAgents

public class NodeAgents extends com.sun.enterprise.config.ConfigBean implements Serializable
This 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 voidaddComparator(org.netbeans.modules.schema2beans.BeanComparator c)

		comparators.add(c);
	
public intaddNodeAgent(NodeAgent value)

		return addNodeAgent(value, true);
	
public intaddNodeAgent(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 voiddump(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.StringdumpBeanNode()

		StringBuffer str = new StringBuffer();
		str.append("NodeAgents\n");	// NOI18N
		this.dump(str, "\n  ");	// NOI18N
		return str.toString();
	
public static java.lang.StringgetDefaultAttributeValue(java.lang.String attr)

		if(attr == null) return null;
		attr = attr.trim();
	return null;
	
public NodeAgentgetNodeAgent(int index)

		return (NodeAgent)this.getValue(NODE_AGENT, index);
	
public NodeAgent[]getNodeAgent()

		return (NodeAgent[])this.getValues(NODE_AGENT);
	
public NodeAgentgetNodeAgentByName(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.StringgetRelativeXPath()
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);
	
voidinitialize(int options)


	
public NodeAgentnewNodeAgent()
Create a new bean using it's default constructor. This does not add it to any bean graph.

		return new NodeAgent();
	
public static voidremoveComparator(org.netbeans.modules.schema2beans.BeanComparator c)

		comparators.remove(c);
	
public intremoveNodeAgent(NodeAgent value)

		return this.removeValue(NODE_AGENT, value);
	
public intremoveNodeAgent(NodeAgent value, boolean overwrite)

		return this.removeValue(NODE_AGENT, value, overwrite);
	
public voidsetNodeAgent(NodeAgent[] value)

		this.setValue(NODE_AGENT, value);
	
public intsizeNodeAgent()

		return this.size(NODE_AGENT);
	
public voidvalidate()