use of org.opensmartgridplatform.ws.schema.core.secret.management.ActivateSecretsResponse in project open-smart-grid-platform by OSGP.
the class SecretManagementEndpoint method activateSecrets.
public ActivateSecretsResponse activateSecrets(final ActivateSecretsRequest request) throws OsgpException {
final SecretTypes soapSecretTypes = request.getSecretTypes();
this.secretManagementService.activateNewSecrets(request.getDeviceId(), this.converter.convertToSecretTypes(soapSecretTypes));
return new ActivateSecretsResponse();
}
Aggregations