Package ch.ivyteam.ivy.bpm.engine.client
Class HttpRequestBuilder
- java.lang.Object
-
- ch.ivyteam.ivy.bpm.engine.client.HttpRequestBuilder
-
public class HttpRequestBuilder extends Object
Controls the request method.- Since:
- 9.1
- API:
- This is a public API.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RequestBuilderdisable()Disable the HTTP context for the process execution.RequestBuilderpost()Run the HTTP request with POST instead of GET.
-
-
-
Method Detail
-
disable
public RequestBuilder disable()
Disable the HTTP context for the process execution. Some requests in ivy do not have a HTTP request context (e.g System tasks, Processes started by a Program Start Event, etc.) By using this method you disable the HTTP request context for the execution.- Returns:
- request builder for further request construction
- API:
- This public API is available in Java.
-
post
public RequestBuilder post()
Run the HTTP request with POST instead of GET.- Returns:
- request builder for further request construction
- API:
- This public API is available in Java.
-
-