Uses of Enum Class
org.azd.enums.RequestMethod
Packages that use RequestMethod
-
Uses of RequestMethod in org.azd.enums
Methods in org.azd.enums that return RequestMethodModifier and TypeMethodDescriptionstatic RequestMethodReturns the enum constant of this class with the specified name.static RequestMethod[]RequestMethod.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of RequestMethod in org.azd.utils
Methods in org.azd.utils with parameters of type RequestMethodModifier and TypeMethodDescriptionstatic CompletableFuture<HttpResponse<InputStream>>BaseClient.StreamBuilder.response(RequestMethod requestMethod, String requestUrl, String token, String contentType, InputStream contentStream, Map<String, String> customHeaders) Deprecated.static InputStreamBaseClient.StreamBuilder.response(RequestMethod requestMethod, String requestUrl, String token, String contentType, InputStream contentStream, Map<String, String> customHeaders, boolean followRedirects) Deprecated.static <T> CompletableFuture<HttpResponse<T>>BaseRestClient.response(RequestMethod requestMethod, String requestUrl, String token, HttpRequest.BodyPublisher publisher, HttpResponse.BodyHandler<T> handler, CustomHeader contentType, boolean callback) Manages the request method and response from REST API.static InputStreamClient.send(RequestMethod requestMethod, Connection connection, String resourceId, String project, String area, String id, String resource, String apiVersion, HashMap<String, Object> queryString, String contentType, InputStream contentStream, Map<String, String> customHeaders, boolean redirect) Deprecated.static StringClient.send(RequestMethod requestMethod, Connection connection, String resourceId, String project, String area, String id, String resource, String apiVersion, Map<String, Object> queryString, Map<String, Object> body) Deprecated.static StringClient.send(RequestMethod requestMethod, Connection connection, String resourceId, String project, String area, String id, String resource, String apiVersion, Map<String, Object> queryString, Map<String, Object> body, String contentType) Deprecated.static StringClient.send(RequestMethod requestMethod, Connection connection, String resourceId, String project, String area, String id, String resource, String apiVersion, Map<String, Object> queryString, Map<String, Object> body, List<Object> requestBody, String contentType) Deprecated.static StringClient.send(RequestMethod requestMethod, Connection connection, String resourceId, String project, String area, String id, String resource, String apiVersion, Map queryString, boolean contentType, String body) Deprecated.static StringRestClient.send(String requestUrl, Connection connection, RequestMethod requestMethod, Object requestBody, CustomHeader contentType, boolean callback) Mediator for BaseRestClient and other Api implementations.static StringRestClient.send(String requestUrl, RequestMethod requestMethod, Object requestBody, CustomHeader contentType, boolean callback) Mediator for BaseRestClient and other Api implementations.static CompletableFuture<HttpResponse<InputStream>>RestClient.send(String requestUrl, RequestMethod requestMethod, Connection connection, String resourceId, String project, String area, String id, String resource, String apiVersion, Map queryString, InputStream contentStream, CustomHeader contentType, boolean callback) Mediator for BaseRestClient and other Api implementations.static <T> CompletableFuture<HttpResponse<T>>RestClient.send(String requestUrl, RequestMethod requestMethod, Connection connection, String resourceId, String project, String area, String id, String resource, String apiVersion, Map queryString, HttpRequest.BodyPublisher publisher, HttpResponse.BodyHandler<T> handler, Map<String, CustomHeader> headerMap, boolean callback) Helper method and a mediator for calling Azure DevOps REST Api.static InputStreamRestClient.send(RequestMethod requestMethod, Connection connection, String resourceId, String project, String area, String id, String resource, String apiVersion, Map queryString, InputStream contentStream, CustomHeader contentType, boolean callback) Request the Azure DevOps REST API and builds the request url dynamically based on resource id and endpoints passedstatic StringRestClient.send(RequestMethod requestMethod, Connection connection, String resourceId, String project, String area, String id, String resource, String apiVersion, Map queryString, Object requestBody, CustomHeader contentType) Request the Azure DevOps REST API and builds the request url dynamically based on resource id and endpoints passed