use of com.sequenceiq.cloudbreak.api.model.v2.AmbariV2Request in project cloudbreak by hortonworks.
the class CloudProviderHelper method ambariRequestWithBlueprintName.
@Override
public AmbariV2Request ambariRequestWithBlueprintName(String name) {
AmbariV2Request req = new AmbariV2Request();
req.setUserName(testParameter.get(DEFAULT_AMBARI_USER));
req.setPassword(testParameter.get(DEFAULT_AMBARI_PASSWORD));
req.setBlueprintName(name);
return req;
}
Aggregations