use of eu.bcvsolutions.idm.core.api.dto.IdmConfigurationDto in project CzechIdMng by bcvsolutions.
the class DefaultRecaptchaRestTest method deleteRecaptchaProperties.
private void deleteRecaptchaProperties() {
IdmConfigurationDto keyProp = configService.getByCode(RecaptchaConfiguration.PROPERTY_SECRET_KEY);
if (keyProp != null) {
configService.delete(keyProp);
}
IdmConfigurationDto urlProp = configService.getByCode(RecaptchaConfiguration.PROPERTY_URL);
if (urlProp != null) {
configService.delete(urlProp);
}
}
Aggregations