- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
30 lines
866 B
Java
30 lines
866 B
Java
package org.apache.http.impl.cookie;
|
|
|
|
import java.util.Collection;
|
|
import org.apache.http.cookie.CookieAttributeHandler;
|
|
import org.apache.http.cookie.CookieSpec;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public abstract class AbstractCookieSpec implements CookieSpec {
|
|
public AbstractCookieSpec() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public void registerAttribHandler(String str, CookieAttributeHandler cookieAttributeHandler) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public CookieAttributeHandler findAttribHandler(String str) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public CookieAttributeHandler getAttribHandler(String str) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public Collection<CookieAttributeHandler> getAttribHandlers() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
}
|