mirror of
https://github.com/TeamPiped/Piped-Backend
synced 2025-09-05 21:11:05 +02:00
22 lines
565 B
Java
22 lines
565 B
Java
package me.kavin.piped.utils;
|
|
|
|
import java.io.IOException;
|
|
import java.net.URI;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
public class CookieHandler extends java.net.CookieHandler {
|
|
|
|
@Override
|
|
public Map<String, List<String>> get(URI uri, Map<String, List<String>> requestHeaders) throws IOException {
|
|
// TODO Auto-generated method stub
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public void put(URI uri, Map<String, List<String>> responseHeaders) throws IOException {
|
|
// TODO Auto-generated method stub
|
|
|
|
}
|
|
}
|