use of org.opensmartgridplatform.domain.core.valueobjects.smartmetering.GetPowerQualityProfileRequest in project open-smart-grid-platform by OSGP.
the class GetPowerQualityProfileRequestMapperTest method testGetPowerQualityProfileRequest.
@Test
public void testGetPowerQualityProfileRequest() {
final GetPowerQualityProfileRequest getPowerQualityProfileRequest = this.makeRequest();
final GetPowerQualityProfileRequestData result = this.mapper.map(getPowerQualityProfileRequest, GetPowerQualityProfileRequestData.class);
assertThat(result).withFailMessage("mapping GetPowerQualityProfileRequest should not return null").isNotNull();
assertThat(result).withFailMessage("mapping GetPowerQualityProfileRequest should return correct type").isOfAnyClassIn(GetPowerQualityProfileRequestData.class);
assertThat(result.getBeginDate()).withFailMessage(MAPPED_VALUE_MESSAGE).isEqualTo(DATE);
assertThat(result.getEndDate()).withFailMessage(MAPPED_VALUE_MESSAGE).isEqualTo(DATE);
}
use of org.opensmartgridplatform.domain.core.valueobjects.smartmetering.GetPowerQualityProfileRequest in project open-smart-grid-platform by OSGP.
the class GetPowerQualityProfileRequestMessageProcessor method handleMessage.
@Override
protected void handleMessage(final MessageMetadata deviceMessageMetadata, final Object dataObject) throws FunctionalException {
final GetPowerQualityProfileRequest getPowerQualityProfileRequest = (GetPowerQualityProfileRequest) dataObject;
this.monitoringService.requestPowerQualityProfile(deviceMessageMetadata, getPowerQualityProfileRequest);
}
use of org.opensmartgridplatform.domain.core.valueobjects.smartmetering.GetPowerQualityProfileRequest in project open-smart-grid-platform by OSGP.
the class GetPowerQualityProfileRequestMappingTest method convertGetPowerQualityProfileRequest.
@Test
public void convertGetPowerQualityProfileRequest() {
final org.opensmartgridplatform.adapter.ws.schema.smartmetering.monitoring.GetPowerQualityProfileRequest source = this.makeRequest();
final Object result = this.mapper.map(source, GetPowerQualityProfileRequest.class);
assertThat(result).as("mapping GetPowerQualityProfileRequest should not return null").isNotNull();
assertThat(result).as("mapping GetPowerQualityProfileRequest should return correct type").isInstanceOf(GetPowerQualityProfileRequest.class);
final GetPowerQualityProfileRequest target = (GetPowerQualityProfileRequest) result;
assertThat(target.getDeviceIdentification()).isEqualTo(source.getDeviceIdentification());
assertThat(target.getProfileType()).isEqualTo(source.getProfileType());
final DateTime targetEndDate = new DateTime(target.getEndDate());
assertThat(targetEndDate.getYear()).isEqualTo(source.getBeginDate().getYear());
}
use of org.opensmartgridplatform.domain.core.valueobjects.smartmetering.GetPowerQualityProfileRequest in project open-smart-grid-platform by OSGP.
the class SmartMeteringMonitoringEndpoint method getGetPowerQualityProfile.
@PayloadRoot(localPart = "GetPowerQualityProfileRequest", namespace = SMARTMETER_MONITORING_NAMESPACE)
@ResponsePayload
public GetPowerQualityProfileAsyncResponse getGetPowerQualityProfile(@OrganisationIdentification final String organisationIdentification, @RequestPayload final GetPowerQualityProfileRequest request, @MessagePriority final String messagePriority, @ResponseUrl final String responseUrl, @ScheduleTime final String scheduleTime, @BypassRetry final String bypassRetry) throws OsgpException {
final GetPowerQualityProfileRequest requestData = this.monitoringMapper.map(request, GetPowerQualityProfileRequest.class);
final RequestMessageMetadata requestMessageMetadata = RequestMessageMetadata.newBuilder().withOrganisationIdentification(organisationIdentification).withDeviceIdentification(request.getDeviceIdentification()).withDeviceFunction(DeviceFunction.GET_PROFILE_GENERIC_DATA).withMessageType(MessageType.GET_PROFILE_GENERIC_DATA).withMessagePriority(messagePriority).withScheduleTime(scheduleTime).withBypassRetry(bypassRetry).build();
final AsyncResponse asyncResponse = this.requestService.enqueueAndSendRequest(requestMessageMetadata, requestData);
this.saveResponseUrlIfNeeded(asyncResponse.getCorrelationUid(), responseUrl);
return this.monitoringMapper.map(asyncResponse, GetPowerQualityProfileAsyncResponse.class);
}
Aggregations