use of com.sequenceiq.cloudbreak.api.endpoint.v4.stacks.base.SSOType in project cloudbreak by hortonworks.
the class GatewayV1ToGatewayV4Converter method convert.
public GatewayV4Request convert(List<String> exposedServices) {
GatewayV4Request gatewayV4Request = new GatewayV4Request();
gatewayV4Request.setTopologies(getIfNotNull(exposedServices, this::topologies));
gatewayV4Request.setSsoType(ssoType);
return gatewayV4Request;
}
Aggregations