Search in sources :

Example 1 with TagsV1Request

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;
}
Also used : TagsV1Request(com.sequenceiq.distrox.api.v1.distrox.model.tags.TagsV1Request)

Aggregations

TagsV1Request (com.sequenceiq.distrox.api.v1.distrox.model.tags.TagsV1Request)1