- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
25 lines
863 B
Java
25 lines
863 B
Java
package org.apache.http.impl.cookie;
|
|
|
|
import org.apache.http.cookie.Cookie;
|
|
import org.apache.http.cookie.CookieAttributeHandler;
|
|
import org.apache.http.cookie.CookieOrigin;
|
|
import org.apache.http.cookie.MalformedCookieException;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public abstract class AbstractCookieAttributeHandler implements CookieAttributeHandler {
|
|
public AbstractCookieAttributeHandler() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.cookie.CookieAttributeHandler
|
|
public void validate(Cookie cookie, CookieOrigin cookieOrigin) throws MalformedCookieException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.cookie.CookieAttributeHandler
|
|
public boolean match(Cookie cookie, CookieOrigin cookieOrigin) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
}
|