jimu-decompiled/sources/okhttp3/Authenticator.java
2025-05-13 19:24:51 +02:00

16 lines
453 B
Java

package okhttp3;
import java.io.IOException;
/* loaded from: classes2.dex */
public interface Authenticator {
public static final Authenticator NONE = new Authenticator() { // from class: okhttp3.Authenticator.1
@Override // okhttp3.Authenticator
public Request authenticate(Route route, Response response) {
return null;
}
};
Request authenticate(Route route, Response response) throws IOException;
}