use of com.sequenceiq.cloudbreak.api.endpoint.v4.stacks.request.recipe.AttachRecipeV4Request in project cloudbreak by hortonworks.
the class StackTestDto method withAttachedRecipe.
public StackTestDto withAttachedRecipe(String hostGroup, String recipeName) {
attachRecipeV4Request = new AttachRecipeV4Request();
attachRecipeV4Request.setHostGroupName(hostGroup);
attachRecipeV4Request.setRecipeName(recipeName);
return this;
}
Aggregations