com.github.kristofa.brave.http.HttpServerRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of brave-http Show documentation
Show all versions of brave-http Show documentation
Abstraction that makes it easier to implement brave in http clients and servers.
The newest version!
package com.github.kristofa.brave.http;
/**
* @deprecated Replaced by {@code HttpServerAdapter} from brave-http
*/
@Deprecated
public interface HttpServerRequest extends HttpRequest {
/**
* Get http header value.
*
* @param headerName
* @return
*/
String getHttpHeaderValue(String headerName);
}