All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.datahub.client.http.interceptor.AuthInterceptor Maven / Gradle / Ivy

There is a newer version: 2.25.6
Show newest version
package com.aliyun.datahub.client.http.interceptor;

import com.aliyun.datahub.client.auth.Account;
import okhttp3.Response;

import java.io.IOException;

public class AuthInterceptor extends HttpInterceptor {
    protected Account account;

    public AuthInterceptor(Account account) {
        this.account = account;
    }

    @Override
    public Response intercept(Chain chain) throws IOException {
        return super.intercept(chain);
    }

    public Account getAccount() {
        return account;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy