FileDocCategorySizeDatePackage
MessageSecurityBinding.javaAPI DocGlassfish v2 API6307Fri May 04 22:34:38 BST 2007com.sun.enterprise.tools.common.dd

MessageSecurityBinding

public class MessageSecurityBinding extends org.netbeans.modules.schema2beans.BaseBean
This generated bean class MessageSecurityBinding matches the schema element 'message-security-binding'. The root bean class is SunEjbJar Generated on Tue Aug 08 09:56:25 PDT 2006
Generated

Fields Summary
static Vector
comparators
private static final org.netbeans.modules.schema2beans.Version
runtimeVersion
public static final String
AUTHLAYER
public static final String
PROVIDERID
public static final String
MESSAGE_SECURITY
Constructors Summary
public MessageSecurityBinding()

	// NOI18N

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

		super(comparators, runtimeVersion);
		// Properties (see root bean comments for the bean graph)
		initPropertyTables(1);
		this.createProperty("message-security", 	// NOI18N
			MESSAGE_SECURITY, 
			Common.TYPE_0_N | Common.TYPE_BEAN | Common.TYPE_KEY, 
			MessageSecurity.class);
		this.initialize(options);
	
Methods Summary
public static voidaddComparator(org.netbeans.modules.schema2beans.BeanComparator c)

		comparators.add(c);
	
public intaddMessageSecurity(com.sun.enterprise.tools.common.dd.MessageSecurity value)

		int positionOfNewItem = this.addValue(MESSAGE_SECURITY, value);
		return positionOfNewItem;
	
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("MessageSecurity["+this.sizeMessageSecurity()+"]");	// NOI18N
		for(int i=0; i<this.sizeMessageSecurity(); i++)
		{
			str.append(indent+"\t");
			str.append("#"+i+":");
			n = (org.netbeans.modules.schema2beans.BaseBean) this.getMessageSecurity(i);
			if (n != null)
				n.dump(str, indent + "\t");	// NOI18N
			else
				str.append(indent+"\tnull");	// NOI18N
			this.dumpAttributes(MESSAGE_SECURITY, i, str, indent);
		}

	
public java.lang.StringdumpBeanNode()

		StringBuffer str = new StringBuffer();
		str.append("MessageSecurityBinding\n");	// NOI18N
		this.dump(str, "\n  ");	// NOI18N
		return str.toString();
	
public java.lang.StringgetAuthLayer()

		return getAttributeValue(AUTHLAYER);
	
public com.sun.enterprise.tools.common.dd.MessageSecurity[]getMessageSecurity()

		return (MessageSecurity[])this.getValues(MESSAGE_SECURITY);
	
public com.sun.enterprise.tools.common.dd.MessageSecuritygetMessageSecurity(int index)

		return (MessageSecurity)this.getValue(MESSAGE_SECURITY, index);
	
public java.lang.StringgetProviderId()

		return getAttributeValue(PROVIDERID);
	
voidinitialize(int options)


	
public com.sun.enterprise.tools.common.dd.MessageSecuritynewMessageSecurity()
Create a new bean using it's default constructor. This does not add it to any bean graph.

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

		comparators.remove(c);
	
public intremoveMessageSecurity(com.sun.enterprise.tools.common.dd.MessageSecurity value)

		return this.removeValue(MESSAGE_SECURITY, value);
	
public voidsetAuthLayer(java.lang.String value)

		setAttributeValue(AUTHLAYER, value);
	
public voidsetMessageSecurity(com.sun.enterprise.tools.common.dd.MessageSecurity[] value)

		this.setValue(MESSAGE_SECURITY, value);
	
public voidsetMessageSecurity(int index, com.sun.enterprise.tools.common.dd.MessageSecurity value)

		this.setValue(MESSAGE_SECURITY, index, value);
	
public voidsetProviderId(java.lang.String value)

		setAttributeValue(PROVIDERID, value);
	
public intsizeMessageSecurity()

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