Interface IStartableSideStep


public interface IStartableSideStep
Provides information about a sidestep.

Example:

 import ch.ivyteam.ivy.casemap.runtime.model.IStartableSideStep;
 List<IStartableSideStep> sideSteps = ivy.casemap.findStartableSideSteps();
 
Since:
6.7
See Also:
API:
This is a public API.
  • Method Summary

    Modifier and Type
    Method
    Description
     
    Get the start link of the sidestep Example:
  • Method Details

    • getName

      String getName()
      Returns:
      the name of the sidestep, as defined in the case map
      API:
      This public API is available in IvyScript and Java. It has the visibility ADVANCED.
    • getStartLink

      WebLink getStartLink()
      Get the start link of the sidestep Example:

      import ch.ivyteam.ivy.casemap.runtime.model.IStartableSideStep;

      IStartableSideStep sideStep = ...;
      String linkToStartThisSideStep = sideStep.getStartLink().getRelativeEncoded();

      Returns:
      the WebLink to start the sidestep
      API:
      This public API is available in IvyScript and Java. It has the visibility ADVANCED.