use of org.talend.esb.servicelocator.client.SLPropertiesImpl in project tesb-rt-se by Talend.
the class SLPropertiesConverter method toSLProperties.
public static SLProperties toSLProperties(ServiceLocatorPropertiesType props) {
SLPropertiesImpl slProperties = new SLPropertiesImpl();
for (EntryType entry : props.getEntry()) {
String key = entry.getKey();
List<String> values = entry.getValue();
slProperties.addProperty(key, values);
}
return slProperties;
}
Aggregations