what-the-bank/sources/okhttp3/repackaged/Authenticator.java

16 lines
492 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package okhttp3.repackaged;
import java.io.IOException;
/* loaded from: classes6.dex */
public interface Authenticator {
public static final Authenticator NONE = new Authenticator() { // from class: okhttp3.repackaged.Authenticator.1
@Override // okhttp3.repackaged.Authenticator
public final Request authenticate(Route route, Response response) {
return null;
}
};
Request authenticate(Route route, Response response) throws IOException;
}