Search in sources :

Example 1 with HttpBasicAuth

use of io.swagger.client.auth.HttpBasicAuth in project android-client by GenesisVision.

the class GsonCustomConverterFactory method setCredentials.

/**
 * Helper method to configure the username/password for basic auth or password oauth
 * @param username Username
 * @param password Password
 * @return ApiClient
 */
public ApiClient setCredentials(String username, String password) {
    for (Interceptor apiAuthorization : apiAuthorizations.values()) {
        if (apiAuthorization instanceof HttpBasicAuth) {
            HttpBasicAuth basicAuth = (HttpBasicAuth) apiAuthorization;
            basicAuth.setCredentials(username, password);
            return this;
        }
        if (apiAuthorization instanceof OAuth) {
            OAuth oauth = (OAuth) apiAuthorization;
            oauth.getTokenRequestBuilder().setUsername(username).setPassword(password);
            return this;
        }
    }
    return this;
}
Also used : HttpBasicAuth(io.swagger.client.auth.HttpBasicAuth) Interceptor(okhttp3.Interceptor) OAuth(io.swagger.client.auth.OAuth)

Aggregations

HttpBasicAuth (io.swagger.client.auth.HttpBasicAuth)1 OAuth (io.swagger.client.auth.OAuth)1 Interceptor (okhttp3.Interceptor)1