FileDocCategorySizeDatePackage
HttpListener.javaAPI DocGlassfish v2 API18719Fri May 26 10:47:06 BST 2006com.sun.enterprise.config.serverbeans

HttpListener

public class HttpListener extends com.sun.enterprise.config.ConfigBean implements Serializable
This generated bean class HttpListener matches the DTD element http-listener

Fields Summary
static Vector
comparators
private static final org.netbeans.modules.schema2beans.Version
runtimeVersion
public static final String
SSL
public static final String
ELEMENT_PROPERTY
Constructors Summary
public HttpListener()


	  
		this(Common.USE_DEFAULT_VALUES);
	
public HttpListener(int options)

		super(comparators, runtimeVersion);
		// Properties (see root bean comments for the bean graph)
		initPropertyTables(2);
		this.createProperty("ssl", SSL, 
			Common.TYPE_0_1 | Common.TYPE_BEAN | Common.TYPE_KEY, 
			Ssl.class);
		this.createAttribute(SSL, "cert-nickname", "CertNickname", 
						AttrProp.CDATA | AttrProp.REQUIRED,
						null, null);
		this.createAttribute(SSL, "ssl2-enabled", "Ssl2Enabled", 
						AttrProp.CDATA,
						null, "false");
		this.createAttribute(SSL, "ssl2-ciphers", "Ssl2Ciphers", 
						AttrProp.CDATA | AttrProp.IMPLIED,
						null, null);
		this.createAttribute(SSL, "ssl3-enabled", "Ssl3Enabled", 
						AttrProp.CDATA,
						null, "true");
		this.createAttribute(SSL, "ssl3-tls-ciphers", "Ssl3TlsCiphers", 
						AttrProp.CDATA | AttrProp.IMPLIED,
						null, null);
		this.createAttribute(SSL, "tls-enabled", "TlsEnabled", 
						AttrProp.CDATA,
						null, "true");
		this.createAttribute(SSL, "tls-rollback-enabled", "TlsRollbackEnabled", 
						AttrProp.CDATA,
						null, "true");
		this.createAttribute(SSL, "client-auth-enabled", "ClientAuthEnabled", 
						AttrProp.CDATA,
						null, "false");
		this.createProperty("property", ELEMENT_PROPERTY, 
			Common.TYPE_0_N | Common.TYPE_BEAN | Common.TYPE_KEY, 
			ElementProperty.class);
		this.createAttribute(ELEMENT_PROPERTY, "name", "Name", 
						AttrProp.CDATA | AttrProp.REQUIRED,
						null, null);
		this.createAttribute(ELEMENT_PROPERTY, "value", "Value", 
						AttrProp.CDATA | AttrProp.REQUIRED,
						null, null);
		this.initialize(options);
	
Methods Summary
public static voidaddComparator(org.netbeans.modules.schema2beans.BeanComparator c)

		comparators.add(c);
	
public intaddElementProperty(ElementProperty value)

		return addElementProperty(value, true);
	
public intaddElementProperty(ElementProperty value, boolean overwrite)

		ElementProperty old = getElementPropertyByName(value.getName());
		if(old != null) {
			throw new ConfigException(StringManager.getManager(HttpListener.class).getString("cannotAddDuplicate",  "ElementProperty"));
		}
		return this.addValue(ELEMENT_PROPERTY, 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("Ssl");	// NOI18N
		n = (org.netbeans.modules.schema2beans.BaseBean) this.getSsl();
		if (n != null)
			n.dump(str, indent + "\t");	// NOI18N
		else
			str.append(indent+"\tnull");	// NOI18N
		this.dumpAttributes(SSL, 0, str, indent);

		str.append(indent);
		str.append("ElementProperty["+this.sizeElementProperty()+"]");	// NOI18N
		for(int i=0; i<this.sizeElementProperty(); i++)
		{
			str.append(indent+"\t");
			str.append("#"+i+":");
			n = (org.netbeans.modules.schema2beans.BaseBean) this.getElementProperty(i);
			if (n != null)
				n.dump(str, indent + "\t");	// NOI18N
			else
				str.append(indent+"\tnull");	// NOI18N
			this.dumpAttributes(ELEMENT_PROPERTY, i, str, indent);
		}

	
public java.lang.StringdumpBeanNode()

		StringBuffer str = new StringBuffer();
		str.append("HttpListener\n");	// NOI18N
		this.dump(str, "\n  ");	// NOI18N
		return str.toString();
	
public java.lang.StringgetAcceptorThreads()
Getter for AcceptorThreads of the Element http-listener

return
the AcceptorThreads of the Element http-listener

		return getAttributeValue(ServerTags.ACCEPTOR_THREADS);
	
public java.lang.StringgetAddress()
Getter for Address of the Element http-listener

return
the Address of the Element http-listener

		return getAttributeValue(ServerTags.ADDRESS);
	
public static java.lang.StringgetDefaultAcceptorThreads()
Get the default value of AcceptorThreads from dtd

		return "1".trim();
	
public static java.lang.StringgetDefaultAttributeValue(java.lang.String attr)

		if(attr == null) return null;
		attr = attr.trim();
		if(attr.equals(ServerTags.FAMILY)) return "inet".trim();
		if(attr.equals(ServerTags.BLOCKING_ENABLED)) return "false".trim();
		if(attr.equals(ServerTags.ACCEPTOR_THREADS)) return "1".trim();
		if(attr.equals(ServerTags.SECURITY_ENABLED)) return "false".trim();
		if(attr.equals(ServerTags.XPOWERED_BY)) return "true".trim();
		if(attr.equals(ServerTags.ENABLED)) return "true".trim();
	return null;
	
public static java.lang.StringgetDefaultBlockingEnabled()
Get the default value of BlockingEnabled from dtd

		return "false".trim();
	
public static java.lang.StringgetDefaultEnabled()
Get the default value of Enabled from dtd

		return "true".trim();
	
public static java.lang.StringgetDefaultFamily()
Get the default value of Family from dtd

		return "inet".trim();
	
public static java.lang.StringgetDefaultSecurityEnabled()
Get the default value of SecurityEnabled from dtd

		return "false".trim();
	
public java.lang.StringgetDefaultVirtualServer()
Getter for DefaultVirtualServer of the Element http-listener

return
the DefaultVirtualServer of the Element http-listener

		return getAttributeValue(ServerTags.DEFAULT_VIRTUAL_SERVER);
	
public static java.lang.StringgetDefaultXpoweredBy()
Get the default value of XpoweredBy from dtd

		return "true".trim();
	
public ElementPropertygetElementProperty(int index)

		return (ElementProperty)this.getValue(ELEMENT_PROPERTY, index);
	
public ElementProperty[]getElementProperty()

		return (ElementProperty[])this.getValues(ELEMENT_PROPERTY);
	
public ElementPropertygetElementPropertyByName(java.lang.String id)

	 if (null != id) { id = id.trim(); }
	ElementProperty[] o = getElementProperty();
	 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;
		
	
public java.lang.StringgetExternalPort()
Getter for ExternalPort of the Element http-listener

return
the ExternalPort of the Element http-listener

			return getAttributeValue(ServerTags.EXTERNAL_PORT);
	
public java.lang.StringgetFamily()
Getter for Family of the Element http-listener

return
the Family of the Element http-listener

		return getAttributeValue(ServerTags.FAMILY);
	
public java.lang.StringgetId()
Getter for Id of the Element http-listener

return
the Id of the Element http-listener

		return getAttributeValue(ServerTags.ID);
	
public java.lang.StringgetPort()
Getter for Port of the Element http-listener

return
the Port of the Element http-listener

		return getAttributeValue(ServerTags.PORT);
	
public java.lang.StringgetRedirectPort()
Getter for RedirectPort of the Element http-listener

return
the RedirectPort of the Element http-listener

			return getAttributeValue(ServerTags.REDIRECT_PORT);
	
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 = "http-listener" + (canHaveSiblings() ? "[@id='" + getAttributeValue("id") +"']" : "") ;
	    return (null != ret ? ret.trim() : null);
	
public java.lang.StringgetServerName()
Getter for ServerName of the Element http-listener

return
the ServerName of the Element http-listener

		return getAttributeValue(ServerTags.SERVER_NAME);
	
public SslgetSsl()

		return (Ssl)this.getValue(SSL);
	
voidinitialize(int options)


	
public booleanisBlockingEnabled()
Getter for BlockingEnabled of the Element http-listener

return
the BlockingEnabled of the Element http-listener

		return toBoolean(getAttributeValue(ServerTags.BLOCKING_ENABLED));
	
public booleanisEnabled()
Getter for Enabled of the Element http-listener

return
the Enabled of the Element http-listener

		return toBoolean(getAttributeValue(ServerTags.ENABLED));
	
public booleanisSecurityEnabled()
Getter for SecurityEnabled of the Element http-listener

return
the SecurityEnabled of the Element http-listener

		return toBoolean(getAttributeValue(ServerTags.SECURITY_ENABLED));
	
public booleanisXpoweredBy()
Getter for XpoweredBy of the Element http-listener

return
the XpoweredBy of the Element http-listener

		return toBoolean(getAttributeValue(ServerTags.XPOWERED_BY));
	
public ElementPropertynewElementProperty()
Create a new bean using it's default constructor. This does not add it to any bean graph.

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

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

		comparators.remove(c);
	
public intremoveElementProperty(ElementProperty value)

		return this.removeValue(ELEMENT_PROPERTY, value);
	
public intremoveElementProperty(ElementProperty value, boolean overwrite)

		return this.removeValue(ELEMENT_PROPERTY, value, overwrite);
	
public voidsetAcceptorThreads(java.lang.String v, boolean overwrite)
Modify the AcceptorThreads of the Element http-listener

param
v the new value
throws
StaleWriteConfigException if overwrite is false and file changed on disk

		setAttributeValue(ServerTags.ACCEPTOR_THREADS, v, overwrite);
	
public voidsetAcceptorThreads(java.lang.String v)
Modify the AcceptorThreads of the Element http-listener

param
v the new value

		setAttributeValue(ServerTags.ACCEPTOR_THREADS, v);
	
public voidsetAddress(java.lang.String v, boolean overwrite)
Modify the Address of the Element http-listener

param
v the new value
throws
StaleWriteConfigException if overwrite is false and file changed on disk

		setAttributeValue(ServerTags.ADDRESS, v, overwrite);
	
public voidsetAddress(java.lang.String v)
Modify the Address of the Element http-listener

param
v the new value

		setAttributeValue(ServerTags.ADDRESS, v);
	
public voidsetBlockingEnabled(boolean v, boolean overwrite)
Modify the BlockingEnabled of the Element http-listener

param
v the new value
throws
StaleWriteConfigException if overwrite is false and file changed on disk

		setAttributeValue(ServerTags.BLOCKING_ENABLED, ""+(v==true), overwrite);
	
public voidsetBlockingEnabled(boolean v)
Modify the BlockingEnabled of the Element http-listener

param
v the new value

		setAttributeValue(ServerTags.BLOCKING_ENABLED, ""+(v==true));
	
public voidsetDefaultVirtualServer(java.lang.String v, boolean overwrite)
Modify the DefaultVirtualServer of the Element http-listener

param
v the new value
throws
StaleWriteConfigException if overwrite is false and file changed on disk

		setAttributeValue(ServerTags.DEFAULT_VIRTUAL_SERVER, v, overwrite);
	
public voidsetDefaultVirtualServer(java.lang.String v)
Modify the DefaultVirtualServer of the Element http-listener

param
v the new value

		setAttributeValue(ServerTags.DEFAULT_VIRTUAL_SERVER, v);
	
public voidsetElementProperty(ElementProperty[] value)

		this.setValue(ELEMENT_PROPERTY, value);
	
public voidsetEnabled(boolean v, boolean overwrite)
Modify the Enabled of the Element http-listener

param
v the new value
throws
StaleWriteConfigException if overwrite is false and file changed on disk

		setAttributeValue(ServerTags.ENABLED, ""+(v==true), overwrite);
	
public voidsetEnabled(boolean v)
Modify the Enabled of the Element http-listener

param
v the new value

		setAttributeValue(ServerTags.ENABLED, ""+(v==true));
	
public voidsetExternalPort(java.lang.String v, boolean overwrite)
Modify the ExternalPort of the Element http-listener

param
v the new value
throws
StaleWriteConfigException if overwrite is false and file changed on disk

		setAttributeValue(ServerTags.EXTERNAL_PORT, v, overwrite);
	
public voidsetExternalPort(java.lang.String v)
Modify the ExternalPort of the Element http-listener

param
v the new value

		setAttributeValue(ServerTags.EXTERNAL_PORT, v);
	
public voidsetFamily(java.lang.String v, boolean overwrite)
Modify the Family of the Element http-listener

param
v the new value
throws
StaleWriteConfigException if overwrite is false and file changed on disk

		setAttributeValue(ServerTags.FAMILY, v, overwrite);
	
public voidsetFamily(java.lang.String v)
Modify the Family of the Element http-listener

param
v the new value

		setAttributeValue(ServerTags.FAMILY, v);
	
public voidsetId(java.lang.String v, boolean overwrite)
Modify the Id of the Element http-listener

param
v the new value
throws
StaleWriteConfigException if overwrite is false and file changed on disk

		setAttributeValue(ServerTags.ID, v, overwrite);
	
public voidsetId(java.lang.String v)
Modify the Id of the Element http-listener

param
v the new value

		setAttributeValue(ServerTags.ID, v);
	
public voidsetPort(java.lang.String v, boolean overwrite)
Modify the Port of the Element http-listener

param
v the new value
throws
StaleWriteConfigException if overwrite is false and file changed on disk

		setAttributeValue(ServerTags.PORT, v, overwrite);
	
public voidsetPort(java.lang.String v)
Modify the Port of the Element http-listener

param
v the new value

		setAttributeValue(ServerTags.PORT, v);
	
public voidsetRedirectPort(java.lang.String v, boolean overwrite)
Modify the RedirectPort of the Element http-listener

param
v the new value
throws
StaleWriteConfigException if overwrite is false and file changed on disk

		setAttributeValue(ServerTags.REDIRECT_PORT, v, overwrite);
	
public voidsetRedirectPort(java.lang.String v)
Modify the RedirectPort of the Element http-listener

param
v the new value

		setAttributeValue(ServerTags.REDIRECT_PORT, v);
	
public voidsetSecurityEnabled(boolean v, boolean overwrite)
Modify the SecurityEnabled of the Element http-listener

param
v the new value
throws
StaleWriteConfigException if overwrite is false and file changed on disk

		setAttributeValue(ServerTags.SECURITY_ENABLED, ""+(v==true), overwrite);
	
public voidsetSecurityEnabled(boolean v)
Modify the SecurityEnabled of the Element http-listener

param
v the new value

		setAttributeValue(ServerTags.SECURITY_ENABLED, ""+(v==true));
	
public voidsetServerName(java.lang.String v, boolean overwrite)
Modify the ServerName of the Element http-listener

param
v the new value
throws
StaleWriteConfigException if overwrite is false and file changed on disk

		setAttributeValue(ServerTags.SERVER_NAME, v, overwrite);
	
public voidsetServerName(java.lang.String v)
Modify the ServerName of the Element http-listener

param
v the new value

		setAttributeValue(ServerTags.SERVER_NAME, v);
	
public voidsetSsl(Ssl value)

		this.setValue(SSL, value);
	
public voidsetXpoweredBy(boolean v, boolean overwrite)
Modify the XpoweredBy of the Element http-listener

param
v the new value
throws
StaleWriteConfigException if overwrite is false and file changed on disk

		setAttributeValue(ServerTags.XPOWERED_BY, ""+(v==true), overwrite);
	
public voidsetXpoweredBy(boolean v)
Modify the XpoweredBy of the Element http-listener

param
v the new value

		setAttributeValue(ServerTags.XPOWERED_BY, ""+(v==true));
	
public intsizeElementProperty()

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