JMSDestinationInfopublic class JMSDestinationInfo extends Object implements SerializableA class representing the information on one JMS destination
created by the JMS provider. |
Fields Summary |
---|
private String | destName | private String | destType | private Properties | attrs |
Constructors Summary |
---|
public JMSDestinationInfo(String destName, String destType)
ArgChecker.checkValid(destName, "destName",
StringValidator.getInstance()); //noi18n
ArgChecker.checkValid(destType, "destType",
StringValidator.getInstance()); //noi18n
this.destName = destName;
this.destType = destType;
this.attrs = new Properties();
| public JMSDestinationInfo(String destName, String destType, Properties attrs)
this(destName, destType);
ArgChecker.checkValid(attrs, "attrs"); //noi18n
this.attrs = attrs;
|
Methods Summary |
---|
public java.util.Properties | getAttrs()
return (attrs);
| public java.lang.String | getDestinationName()
return (destName);
| public java.lang.String | getDestinationType()
return (destType);
| public java.lang.String | toString()
StringBuffer sb = new StringBuffer();
sb.append(destName);
sb.append(' ");
sb.append(destType);
sb.append(' ");
sb.append(attrs);
return sb.toString();
|
|