*
* @param notification The notification to send
*/
public void sendNotification(GenericNotification notification) {
if (! AttributeChangeNotification.class.isInstance(notification) ){
getGenericNotificationEvent().fire(new ManagementNotificationEventImpl(notification));
}
else{
getAttributeChangeNotificationEvent().fire(new ManagementNotificationEventImpl(notification));
}
}