org.stubit.http.HttpRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http Show documentation
Show all versions of http Show documentation
Collection of simple and fast stubs for HTTP services
package org.stubit.http;
import java.net.URI;
record HttpRequest(String method, URI uri, String body) {
@Override
public String toString() {
return "%s %s".formatted(method, uri);
}
}