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

    Modifier and Type
    Method
    Description
    Disable the HTTP context for the process execution.
    Run the HTTP request with POST instead of GET.
  • Method Details

    • 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.