use of com.sequenceiq.it.cloudbreak.dto.telemetry.TelemetryTestDto in project cloudbreak by hortonworks.
the class StackTestDtoBase method withTelemetry.
public StackTestDtoBase<T> withTelemetry(String key) {
TelemetryTestDto telemetry = getTestContext().get(key);
getRequest().setTelemetry(telemetry.getRequest());
return this;
}
use of com.sequenceiq.it.cloudbreak.dto.telemetry.TelemetryTestDto in project cloudbreak by hortonworks.
the class FreeIpaTestDto method withTelemetry.
public FreeIpaTestDto withTelemetry(String telemetry) {
TelemetryTestDto telemetryTestDto = getTestContext().get(telemetry);
getRequest().setTelemetry(telemetryTestDto.getRequest());
return this;
}
use of com.sequenceiq.it.cloudbreak.dto.telemetry.TelemetryTestDto in project cloudbreak by hortonworks.
the class EnvironmentTestDto method withTelemetry.
public EnvironmentTestDto withTelemetry(String telemetry) {
TelemetryTestDto telemetryTestDto = getTestContext().get(telemetry);
getRequest().setTelemetry(telemetryTestDto.getRequest());
return this;
}
Aggregations