Files
rr3-apk/decompiled/sources/org/apache/http/impl/cookie/AbstractCookieSpec.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

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!");
}
}