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

org.stubit.http.HttpRequest Maven / Gradle / Ivy

There is a newer version: 0.8.2
Show newest version
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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy