Interface SubProcessCallStartParam

All Known Subinterfaces:
SubProcess, SubProcessCallStart, SubProcessCallStartParamCaller

public interface SubProcessCallStartParam
API:
This is a public API.
  • Method Details

    • withParam

      SubProcessCallStartParamCaller withParam(String name, Object value)
      Adds a parameter which must exist on a CallSubStart and defines the value of it.
       SubProcessCall
               .withPath("Functional Processes/Customer")
               .withParam("id", 27)
               .withParam("name", "thename");
       
      Parameters:
      name - of the parameter to set
      value - of the parameter
      Returns:
      a SubProcessCallStartParamCaller to call the CallSubStart or define more parameters
      Throws:
      IllegalArgumentException - if there is no CallSubStart with the given parameter name
      API:
      This public API is available in IvyScript and Java. It has the visibility EXPERT.