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

top.jfunc.http.component.okhttp3.DefaultOkHttp3BodyContentCallbackCreator Maven / Gradle / Ivy

package top.jfunc.http.component.okhttp3;

import okhttp3.Request;
import okhttp3.RequestBody;
import top.jfunc.http.base.ContentCallback;
import top.jfunc.http.component.AbstractBodyContentCallbackCreator;
import top.jfunc.http.request.StringBodyRequest;
import top.jfunc.http.util.OkHttp3Util;

import java.io.IOException;

/**
 * @author xiongshiyan at 2020/1/7 , contact me with email [email protected] or phone 15208384257
 */
public class DefaultOkHttp3BodyContentCallbackCreator extends AbstractBodyContentCallbackCreator {
    @Override
    protected ContentCallback doCreate(StringBodyRequest stringBodyRequest) throws IOException {
        RequestBody stringBody = OkHttp3Util.stringBody(stringBodyRequest.getBody(), stringBodyRequest.calculateBodyCharset(), stringBodyRequest.getContentType());
        return builder -> OkHttp3Util.setRequestBody(builder, stringBodyRequest.getMethod(), stringBody);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy