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:
    ICaseMapService.findStartableSideSteps()
    API:
    This is a public API.
    • Method Detail

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