MessageDestinationpublic class MessageDestination extends com.sun.enterprise.tools.common.dd.SunBaseBean This generated bean class MessageDestination matches the schema element message-destination
Generated on Wed Aug 13 12:12:27 PDT 2003 |
Fields Summary |
---|
static Vector | comparators | public static final String | MESSAGE_DESTINATION_NAME | public static final String | JNDI_NAME |
Constructors Summary |
---|
public MessageDestination() // NOI18N
this(Common.USE_DEFAULT_VALUES);
| public MessageDestination(int options)
super(comparators, new org.netbeans.modules.schema2beans.Version(1, 2, 0));
// Properties (see root bean comments for the bean graph)
this.createProperty("message-destination-name", // NOI18N
MESSAGE_DESTINATION_NAME,
Common.TYPE_1 | Common.TYPE_STRING | Common.TYPE_KEY,
String.class);
this.createProperty("jndi-name", // NOI18N
JNDI_NAME,
Common.TYPE_1 | Common.TYPE_STRING | Common.TYPE_KEY,
String.class);
this.initialize(options);
|
Methods Summary |
---|
public static void | addComparator(org.netbeans.modules.schema2beans.BeanComparator c)
comparators.add(c);
| 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("MessageDestinationName"); // NOI18N
str.append(indent+"\t"); // NOI18N
str.append("<"); // NOI18N
s = this.getMessageDestinationName();
str.append((s==null?"null":s.trim())); // NOI18N
str.append(">\n"); // NOI18N
this.dumpAttributes(MESSAGE_DESTINATION_NAME, 0, str, indent);
str.append(indent);
str.append("JndiName"); // NOI18N
str.append(indent+"\t"); // NOI18N
str.append("<"); // NOI18N
s = this.getJndiName();
str.append((s==null?"null":s.trim())); // NOI18N
str.append(">\n"); // NOI18N
this.dumpAttributes(JNDI_NAME, 0, str, indent);
| public java.lang.String | dumpBeanNode()
StringBuffer str = new StringBuffer();
str.append("MessageDestination\n"); // NOI18N
this.dump(str, "\n "); // NOI18N
return str.toString();
| public java.lang.String | getJndiName()
return (String)this.getValue(JNDI_NAME);
| public java.lang.String | getMessageDestinationName()
return (String)this.getValue(MESSAGE_DESTINATION_NAME);
| void | initialize(int options)
| public static void | removeComparator(org.netbeans.modules.schema2beans.BeanComparator c)
comparators.remove(c);
| public void | setJndiName(java.lang.String value)
this.setValue(JNDI_NAME, value);
| public void | setMessageDestinationName(java.lang.String value)
this.setValue(MESSAGE_DESTINATION_NAME, value);
| public void | validate()
boolean restrictionFailure = false;
// Validating property messageDestinationName
if (getMessageDestinationName() == null) {
throw new org.netbeans.modules.schema2beans.ValidateException("getMessageDestinationName() == null", "messageDestinationName", this); // NOI18N
}
// Validating property jndiName
if (getJndiName() == null) {
throw new org.netbeans.modules.schema2beans.ValidateException("getJndiName() == null", "jndiName", this); // NOI18N
}
|
|