use of org.opensmartgridplatform.domain.core.valueobjects.smartmetering.GetConfigurationObjectRequest in project open-smart-grid-platform by OSGP.
the class GetConfigurationObjectRequestMessageProcessor method handleMessage.
@Override
protected void handleMessage(final MessageMetadata deviceMessageMetadata, final Object dataObject) throws FunctionalException {
final GetConfigurationObjectRequest request = (GetConfigurationObjectRequest) dataObject;
this.configurationService.getConfigurationObject(deviceMessageMetadata, request);
}
Aggregations