JMSObjectInfopublic class JMSObjectInfo extends Object implements SerializableA class representing the information on one JMS object. |
Fields Summary |
---|
private String | jndiName | private String | type | private Properties | attrs |
Constructors Summary |
---|
public JMSObjectInfo(String jndiName, String type)
ArgChecker.checkValid(jndiName, "jndiName",
StringValidator.getInstance()); //noi18n
ArgChecker.checkValid(type, "type",
StringValidator.getInstance()); //noi18n
this.jndiName = jndiName;
this.type = type;
this.attrs = new Properties();
| public JMSObjectInfo(String jndiName, String type, Properties attrs)
this(jndiName, type);
ArgChecker.checkValid(attrs, "attrs"); //noi18n
this.attrs = attrs;
|
Methods Summary |
---|
public java.util.Properties | getAttrs()
return (attrs);
| public java.lang.String | getJndiName()
return (jndiName);
| public java.lang.String | getType()
return (type);
| public java.lang.String | toString()
StringBuffer sb = new StringBuffer();
sb.append(jndiName);
sb.append(' ");
sb.append(type);
sb.append(' ");
sb.append(attrs);
return sb.toString();
|
|