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

com.github.kristofa.brave.http.HttpRequest Maven / Gradle / Ivy

Go to download

Abstraction that makes it easier to implement brave in http clients and servers.

The newest version!
package com.github.kristofa.brave.http;


import java.net.URI;

public interface HttpRequest {

    /**
     * Get request URI.
     *
     * @return Request URI.
     */
    URI getUri();

    /**
     * Returns the http method for request (GET, PUT, POST,...)
     *
     * @return Http Method for request.
     */
    String getHttpMethod();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy