}
/* Equality on name. */
public boolean equals(Object object) {
if (object instanceof JmsDestinationReference) {
JmsDestinationReference destReference = (JmsDestinationReference) object;
return destReference.getName().equals(this.getName());
}
return false;
}