Search in sources :

Example 1 with PlatformOrchestratorsJson

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;
}
Also used : PlatformOrchestratorsJson(com.sequenceiq.cloudbreak.api.model.PlatformOrchestratorsJson)

Aggregations

PlatformOrchestratorsJson (com.sequenceiq.cloudbreak.api.model.PlatformOrchestratorsJson)1