use of com.sequenceiq.it.cloudbreak.dto.distrox.image.DistroXImageTestDto in project cloudbreak by hortonworks.
the class DistroXTestDtoBase method withImageSettings.
public DistroXTestDtoBase<T> withImageSettings(String key) {
DistroXImageTestDto imageSettingsEntity = getTestContext().get(key);
getRequest().setImage(imageSettingsEntity.getRequest());
return this;
}
use of com.sequenceiq.it.cloudbreak.dto.distrox.image.DistroXImageTestDto in project cloudbreak by hortonworks.
the class ClusterTemplateTestDto method withImageSettings.
public ClusterTemplateTestDto withImageSettings() {
DistroXImageTestDto imageTestDto = getTestContext().get(DistroXImageTestDto.class);
getRequest().getDistroXTemplate().setImage(imageTestDto.getRequest());
return this;
}
use of com.sequenceiq.it.cloudbreak.dto.distrox.image.DistroXImageTestDto in project cloudbreak by hortonworks.
the class DistroXTemplateTestDto method withImage.
public DistroXTemplateTestDto withImage() {
DistroXImageTestDto imageTestDto = getTestContext().get(DistroXImageTestDto.class);
getRequest().setImage(imageTestDto.getRequest());
return this;
}
Aggregations