* @param type
* one of <code>JmsDestinationType.QUEUE</code> or
* <code>JmsDestinationType.TOPIC</code>.
*/
public void setDestinationType(DestinationType type) {
DestinationType old;
synchronized (getDataLock()) {
old = getDestinationType();
setProperty(DESTINATION_TYPE, type.name());
}
if (old != type) {