Methods Summary |
---|
public static void | addComparator(org.netbeans.modules.schema2beans.BeanComparator c)
comparators.add(c);
|
public int | addMessageSecurity(com.sun.enterprise.tools.common.dd.MessageSecurity value)
int positionOfNewItem = this.addValue(MESSAGE_SECURITY, value);
return positionOfNewItem;
|
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("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.String | dumpBeanNode()
StringBuffer str = new StringBuffer();
str.append("MessageSecurityBinding\n"); // NOI18N
this.dump(str, "\n "); // NOI18N
return str.toString();
|
public java.lang.String | getAuthLayer()
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.MessageSecurity | getMessageSecurity(int index)
return (MessageSecurity)this.getValue(MESSAGE_SECURITY, index);
|
public java.lang.String | getProviderId()
return getAttributeValue(PROVIDERID);
|
void | initialize(int options)
|
public com.sun.enterprise.tools.common.dd.MessageSecurity | newMessageSecurity()Create a new bean using it's default constructor.
This does not add it to any bean graph.
return new MessageSecurity();
|
public static void | removeComparator(org.netbeans.modules.schema2beans.BeanComparator c)
comparators.remove(c);
|
public int | removeMessageSecurity(com.sun.enterprise.tools.common.dd.MessageSecurity value)
return this.removeValue(MESSAGE_SECURITY, value);
|
public void | setAuthLayer(java.lang.String value)
setAttributeValue(AUTHLAYER, value);
|
public void | setMessageSecurity(com.sun.enterprise.tools.common.dd.MessageSecurity[] value)
this.setValue(MESSAGE_SECURITY, value);
|
public void | setMessageSecurity(int index, com.sun.enterprise.tools.common.dd.MessageSecurity value)
this.setValue(MESSAGE_SECURITY, index, value);
|
public void | setProviderId(java.lang.String value)
setAttributeValue(PROVIDERID, value);
|
public int | sizeMessageSecurity()
return this.size(MESSAGE_SECURITY);
|
public void | validate()
|