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

net.dongliu.cute.http.RequestBuilder Maven / Gradle / Ivy

The newest version!
package net.dongliu.cute.http;

import net.dongliu.cute.http.json.JsonMarshaller;
import org.checkerframework.checker.nullness.qual.Nullable;

import java.net.URL;

/**
 * Http Request builder
 *
 * @author Liu Dong
 */
public class RequestBuilder extends AbstractRequestBuilder {

    RequestBuilder(Method method, URL url, @Nullable JsonMarshaller jsonMarshaller) {
        super(method, url, jsonMarshaller);
    }

    @Override
    protected RequestBuilder self() {
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy