use of se.riv.itintegration.monitoring.v1.ConfigurationType in project webcert by sklintyg.
the class PingForConfigurationResponderImpl method addConfiguration.
private void addConfiguration(PingForConfigurationResponseType response, String name, String value) {
ConfigurationType conf = new ConfigurationType();
conf.setName(name);
conf.setValue(value);
response.getConfiguration().add(conf);
}
Aggregations