use of com.sequenceiq.distrox.api.v1.distrox.model.tags.TagsV1Request in project cloudbreak by hortonworks.
the class DistroXV1RequestToStackV4RequestConverter method getTags.
private TagsV1Request getTags(TagsV4Request source) {
TagsV1Request response = new TagsV1Request();
response.setApplication(source.getApplication());
response.setUserDefined(source.getUserDefined());
response.setDefaults(source.getDefaults());
return response;
}
Aggregations