Uses of Interface
com.github.davidmoten.odata.client.RequestOptions
-
Packages that use RequestOptions Package Description com.github.davidmoten.odata.client com.github.davidmoten.odata.client.internal -
-
Uses of RequestOptions in com.github.davidmoten.odata.client
Classes in com.github.davidmoten.odata.client that implement RequestOptions Modifier and Type Class Description classEntityRequestOptions<T extends ODataEntityType>classNonEntityRequestOptions<T>Fields in com.github.davidmoten.odata.client declared as RequestOptions Modifier and Type Field Description static RequestOptionsRequestOptions. EMPTYMethods in com.github.davidmoten.odata.client that return RequestOptions Modifier and Type Method Description static RequestOptionsRequestOptions. create(Map<String,String> queries, List<RequestHeader> requestHeaders, Optional<Long> connectTimeoutMs, Optional<Long> readTimeoutMs)Methods in com.github.davidmoten.odata.client with parameters of type RequestOptions Modifier and Type Method Description InputStreamCustomRequest. getStream(String url, RequestOptions options, RequestHeader... headers)StringCustomRequest. getString(String url, RequestOptions options, RequestHeader... headers)StringCustomRequest. postStringReturnsString(String url, String content, RequestOptions options, RequestHeader... headers)Constructors in com.github.davidmoten.odata.client with parameters of type RequestOptions Constructor Description StreamProvider(ContextPath contextPath, RequestOptions options, String contentType, String base64) -
Uses of RequestOptions in com.github.davidmoten.odata.client.internal
Classes in com.github.davidmoten.odata.client.internal that implement RequestOptions Modifier and Type Class Description classRequestOptionsImplMethods in com.github.davidmoten.odata.client.internal with parameters of type RequestOptions Modifier and Type Method Description static List<RequestHeader>RequestHelper. cleanAndSupplementRequestHeaders(RequestOptions options, String contentTypeOdataMetadataValue, boolean hasPayload)static <T extends ODataEntityType>
voidRequestHelper. delete(ContextPath cp, RequestOptions options)static <T> TRequestHelper. get(ContextPath contextPath, Class<T> returnCls, RequestOptions options)Returns the json from an HTTP GET of the url built from the contextPath and options.static InputStreamRequestHelper. getStream(ContextPath contextPath, RequestOptions options, String base64)static <T,S>
TRequestHelper. getWithParametricType(ContextPath contextPath, Class<T> cls, Class<S> parametricTypeClass, RequestOptions options)static <T extends ODataEntityType>
TRequestHelper. patch(T entity, ContextPath contextPath, RequestOptions options)static <T extends ODataEntityType>
TRequestHelper. patch(T entity, ContextPath contextPath, Class<T> cls, RequestOptions options)static <T> TRequestHelper. patchAny(Object object, ContextPath contextPath, Class<T> responseClass, RequestOptions options)static voidRequestHelper. post(Map<String,Object> parameters, ContextPath contextPath, RequestOptions options)static <T extends ODataEntityType>
TRequestHelper. post(T entity, ContextPath contextPath, Class<T> cls, RequestOptions options)static <T> TRequestHelper. postAny(Object object, ContextPath contextPath, Class<T> responseClass, RequestOptions options)static <T,S>
TRequestHelper. postAnyWithParametricType(Object object, ContextPath contextPath, Class<T> cls, Class<S> parametricTypeClass, RequestOptions options)static voidRequestHelper. put(ContextPath contextPath, RequestOptions options, InputStream in, int length)static <T extends ODataEntityType>
TRequestHelper. put(T entity, ContextPath contextPath, RequestOptions options)static voidRequestHelper. send(HttpMethod method, ContextPath contextPath, RequestOptions options, InputStream in, int length)static <T> TRequestHelper. submitAny(HttpMethod method, Object object, ContextPath contextPath, Class<T> responseClass, RequestOptions options)Constructors in com.github.davidmoten.odata.client.internal with parameters of type RequestOptions Constructor Description RequestOptionsImpl(RequestOptions r)
-