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 interface
HttpRequest.Builder
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description String
bodyString()
Return the body as a string, but only if one of the String valuedHttpRequest.Builder
methods were used otherwise nullstatic String
formURLEncode(String value)
UUID
id()
The unique id for this HTTP request, used for logging and debuggingString
method()
URI
uri()
-
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.Builder
methods were used otherwise null- Returns:
- the body
-
-