use of com.sequenceiq.cloudbreak.cloud.model.TagSpecification in project cloudbreak by hortonworks.
the class TagSpecificationsToTagSpecificationsJsonConverter method convert.
@Override
public TagSpecificationsJson convert(Map<Platform, PlatformParameters> source) {
TagSpecificationsJson json = new TagSpecificationsJson();
Map<String, Map<String, Object>> specifications = new HashMap<>();
json.setSpecifications(specifications);
source.keySet().forEach(p -> {
TagSpecification ts = source.get(p).tagSpecification();
Map<String, Object> specification = Collections.emptyMap();
if (ts != null) {
specification = new HashMap<>();
specification.put("maxAmount", ts.getMaxAmount());
specification.put("keyLength", ts.getKeyLength());
specification.put("keyValidator", ts.getKeyValidator());
specification.put("valueLength", ts.getValueLength());
specification.put("valueValidator", ts.getValueValidator());
}
specifications.put(p.value(), specification);
});
return json;
}
Aggregations