use of com.sequenceiq.cloudbreak.api.model.PlatformOrchestratorsJson in project cloudbreak by hortonworks.
the class PlatformOrchestratorsToPlatformOrchestratorsJsonConverter method convert.
@Override
public PlatformOrchestratorsJson convert(PlatformOrchestrators source) {
PlatformOrchestratorsJson json = new PlatformOrchestratorsJson();
json.setOrchestrators(PlatformConverterUtil.convertPlatformMap(source.getOrchestrators()));
json.setDefaults(PlatformConverterUtil.convertDefaults(source.getDefaults()));
return json;
}
Aggregations