Package com.databricks.sdk.core.http
Class Request
- java.lang.Object
-
- com.databricks.sdk.core.http.Request
-
- Direct Known Subclasses:
FormRequest
public class Request extends Object
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getBody()
Map<String,String>
getHeaders()
String
getMethod()
Map<String,String>
getQuery()
String
getRequestLine()
URI
getUri()
String
getUrl()
int
hashCode()
protected static String
mapToQuery(Map<String,String> in)
String
toString()
Request
withHeader(String key, String value)
Request
withHeaders(Map<String,String> headers)
Request
withQueryParam(String key, String value)
Request
withUrl(String url)
-
-
-
Field Detail
-
GET
public static final String GET
- See Also:
- Constant Field Values
-
DELETE
public static final String DELETE
- See Also:
- Constant Field Values
-
POST
public static final String POST
- See Also:
- Constant Field Values
-
PUT
public static final String PUT
- See Also:
- Constant Field Values
-
PATCH
public static final String PATCH
- See Also:
- Constant Field Values
-
-