Package ch.ivyteam.ivy.workflow
Interface IStartElement
-
- All Superinterfaces:
Comparable<IStartElement>
,IProcessStart
public interface IStartElement extends IProcessStart, Comparable<IStartElement>
Interface of a start element- Since:
- 02.08.2006
- API:
- This is a public API.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ISecurityMember
getActivator()
Gets the activator, which one must own to start a case on this start elementboolean
isVisible()
Is this start element visible in the workflow list of the workflow ui-
Methods inherited from interface ch.ivyteam.ivy.workflow.IProcessStart
getDescription, getFullRequestPath, getFullUserFriendlyRequestPath, getId, getName, getProcessElementId, getProcessModelVersion, getRequestPath, getTaskStart, getUserFriendlyRequestPath
-
-
-
-
Method Detail
-
getActivator
ISecurityMember getActivator() throws PersistencyException
Gets the activator, which one must own to start a case on this start element- Returns:
- activator
- Throws:
PersistencyException
- if persistency access fails- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
- Security:
- SESSION OWNS StartElementReadActivator PERMISSION OR OWNS StartElementReadActivator@SYSTEM PERMISSION
-
isVisible
boolean isVisible() throws PersistencyException
Is this start element visible in the workflow list of the workflow ui- Returns:
- true if it is visible otherwise false
- Throws:
PersistencyException
- if persistency access fails- API:
- This public API is available in IvyScript and Java. It has the visibility NOVICE.
- Security:
- SESSION OWNS StartElementReadVisible PERMISSION OR OWNS StartElementReadVisible@SYSTEM PERMISSION
-
-