use of org.opensmartgridplatform.domain.core.valueobjects.smartmetering.AlarmNotifications in project open-smart-grid-platform by OSGP.
the class SetAlarmNotificationsRequestMessageProcessor method handleMessage.
/*
* (non-Javadoc)
*
* @see
* org.opensmartgridplatform.shared.infra.jms.MessageProcessor#processMessage(javax
* .jms.ObjectMessage)
*/
@Override
protected void handleMessage(final MessageMetadata deviceMessageMetadata, final Object dataObject) throws FunctionalException {
final AlarmNotifications alarmNotifications = (AlarmNotifications) dataObject;
this.configurationService.setAlarmNotifications(deviceMessageMetadata, alarmNotifications);
}
Aggregations