Methods Summary |
---|
public void | addRequiredConfigProperty(RequiredConfigPropertyMetaData rcpmd)Add a required config property
requiredProperties.add(rcpmd);
|
public java.lang.String | getActivationSpecType()Get the activation spec type
return asType;
|
public java.util.Collection | getRequiredConfigProperties()Get the required properties
return requiredProperties;
|
public java.lang.String | getType()Get the message listener type
return type;
|
public void | setActivationSpecType(java.lang.String type)Set the activation spec type
this.asType = type;
|
public void | setType(java.lang.String type)Set the message listener type
this.type = type;
|
public java.lang.String | toString()
StringBuffer buffer = new StringBuffer();
buffer.append("MessageListenerMetaData").append('@");
buffer.append(Integer.toHexString(System.identityHashCode(this)));
buffer.append("[type=").append(type);
buffer.append(" activationSpecType=").append(asType);
buffer.append(" requiredProperties=").append(requiredProperties);
buffer.append(']");
return buffer.toString();
|