Package org.apache.nifi.web.client.api
Interface WebClientService
public interface WebClientService
Service abstraction for HTTP client operations
-
Method Summary
Modifier and TypeMethodDescriptiondelete()
Create HTTP Request builder starting with HTTP DELETEget()
Create HTTP Request builder starting with HTTP GETmethod
(HttpRequestMethod requestMethod) Create HTTP Request builder starting with specified HTTP Request Methodpatch()
Create HTTP Request builder starting with HTTP PATCHpost()
Create HTTP Request builder starting with HTTP POSTput()
Create HTTP Request builder starting with HTTP PUT
-
Method Details
-
method
Create HTTP Request builder starting with specified HTTP Request Method- Parameters:
requestMethod
- HTTP Request Method- Returns:
- HTTP Request URI Specification builder
-
delete
HttpRequestUriSpec delete()Create HTTP Request builder starting with HTTP DELETE- Returns:
- HTTP Request URI Specification builder
-
get
HttpRequestUriSpec get()Create HTTP Request builder starting with HTTP GET- Returns:
- HTTP Request URI Specification builder
-
patch
HttpRequestUriSpec patch()Create HTTP Request builder starting with HTTP PATCH- Returns:
- HTTP Request URI Specification builder
-
post
HttpRequestUriSpec post()Create HTTP Request builder starting with HTTP POST- Returns:
- HTTP Request URI Specification builder
-
put
HttpRequestUriSpec put()Create HTTP Request builder starting with HTTP PUT- Returns:
- HTTP Request URI Specification builder
-