internal.util.http.HttpRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdmx-dl-provider-ri Show documentation
Show all versions of sdmx-dl-provider-ri Show documentation
Easily download official statistics - RI
package internal.util.http;
import java.net.URL;
import java.util.List;
@lombok.Value
@lombok.Builder(toBuilder = true)
public class HttpRequest {
@lombok.NonNull
URL query;
@lombok.Singular
List mediaTypes;
@lombok.NonNull
@lombok.Builder.Default
String langs = "";
}