use of com.emc.storageos.coordinator.common.impl.ConfigurationImpl in project coprhd-controller by CoprHD.
the class ProxyUserInitializer method setProperties.
private void setProperties(Map<String, String> properties) throws Exception {
String str = new PropertyInfoExt(properties).encodeAsString();
ConfigurationImpl config = new ConfigurationImpl();
config.setKind(PropertyInfoExt.TARGET_PROPERTY);
config.setId(PropertyInfoExt.TARGET_PROPERTY_ID);
config.setConfig(PropertyInfoExt.TARGET_INFO, str);
coordinator.persistServiceConfiguration(config);
}
Aggregations