protected SessionConfiguration()

in uber-core/src/main/java/com/uber/sdk/core/client/SessionConfiguration.java [240:260]


    protected SessionConfiguration(@Nonnull String clientId,
                                   @Nonnull String clientSecret,
                                   @Nonnull String serverToken,
                                   @Nonnull String redirectUri,
                                   @Nonnull EndpointRegion endpointRegion,
                                   @Nonnull Environment environment,
                                   @Nonnull Collection<Scope> scopes,
                                   @Nonnull Collection<String> customScopes,
                                   @Nonnull Locale locale,
                                   ProfileHint profileHint) {
        this.clientId = clientId;
        this.clientSecret = clientSecret;
        this.serverToken = serverToken;
        this.redirectUri = redirectUri;
        this.endpointRegion = endpointRegion;
        this.environment = environment;
        this.scopes = scopes;
        this.customScopes = customScopes;
        this.locale = locale;
        this.profileHint = profileHint;
    }