Class SubHttpRequestBuilder
- java.lang.Object
-
- ch.ivyteam.ivy.bpm.engine.client.sub.SubHttpRequestBuilder
-
public final class SubHttpRequestBuilder extends Object
Controls the request method.- Since:
- 9.2
- API:
- This is a public API.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SubRequestBuilderdisable()Disable the HTTP context for the process execution.SubRequestBuilderpost()Run the HTTP request with POST instead of GET.
-
-
-
Method Detail
-
disable
public SubRequestBuilder 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 SubRequestBuilder 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.
-
-