Interface IStartableSideStep
-
public interface IStartableSideStepProvides 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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()WebLinkgetStartLink()Get the start link of the sidestep Example:
-
-
-
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
WebLinkto start the sidestep - API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
-