Interface HttpRequest
-
- All Superinterfaces:
HttpHeaders
- All Known Implementing Classes:
StandardHttpRequest
public interface HttpRequest extends HttpHeaders
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceHttpRequest.Builder
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description StringbodyString()Return the body as a string, but only if one of the String valuedHttpRequest.Buildermethods were used otherwise nullstatic StringformURLEncode(String value)UUIDid()The unique id for this HTTP request, used for logging and debuggingStringmethod()URIuri()-
Methods inherited from interface io.fabric8.kubernetes.client.http.HttpHeaders
header, headers, headers
-
-
-
-
Method Detail
-
id
UUID id()
The unique id for this HTTP request, used for logging and debugging- Returns:
- a UUID.
-
uri
URI uri()
-
method
String method()
-
bodyString
String bodyString()
Return the body as a string, but only if one of the String valuedHttpRequest.Buildermethods were used otherwise null- Returns:
- the body
-
-