All Downloads are FREE. Search and download functionalities are using the official Maven repository.

top.jfunc.http.component.jdk.DefaultJdkHeaderHandler Maven / Gradle / Ivy

package top.jfunc.http.component.jdk;

import top.jfunc.http.component.AbstractHeaderHandler;
import top.jfunc.http.request.HttpRequest;
import top.jfunc.http.util.NativeUtil;
import top.jfunc.common.utils.MultiValueMap;

import java.io.IOException;
import java.net.HttpURLConnection;

/**
 * @author xiongshiyan at 2020/1/6 , contact me with email [email protected] or phone 15208384257
 */
public class DefaultJdkHeaderHandler extends AbstractHeaderHandler {
    @Override
    protected void doConfigHeaders(HttpURLConnection connection, HttpRequest httpRequest , MultiValueMap handledHeaders) throws IOException{
        NativeUtil.setRequestHeaders(connection , httpRequest.getContentType() , handledHeaders);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy