com.iprogrammerr.gentle.request.template.GetRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gentle-request Show documentation
Show all versions of gentle-request Show documentation
Compact library for creating and reading http requests.
The newest version!
package com.iprogrammerr.gentle.request.template;
import java.util.List;
import com.iprogrammerr.gentle.request.EmptyRequest;
import com.iprogrammerr.gentle.request.Header;
public final class GetRequest extends RequestEnvelope {
private static final String GET = "GET";
public GetRequest(String url, List headers) {
super(new EmptyRequest(GET, url, headers));
}
public GetRequest(String url, Header... headers) {
super(new EmptyRequest(GET, url, headers));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy