com.aliyun.datahub.client.http.interceptor.AuthInterceptor Maven / Gradle / Ivy
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