@Override
public void onNotification(org.hornetq.core.server.management.Notification notification)
{
if (!(notification.getType() instanceof JMSNotificationType)) return;
JMSNotificationType type = (JMSNotificationType) notification.getType();
TypedProperties prop = notification.getProperties();
this.broadcaster.sendNotification(new Notification(type.toString(), this,
notifSeq.incrementAndGet(), prop.getSimpleStringProperty(JMSNotificationType.MESSAGE).toString()));
}