Package ch.ivyteam.ivy.workflow.start
Interface IWebStartable
-
- All Superinterfaces:
Comparable<IWebStartable>
public interface IWebStartable extends Comparable<IWebStartable>
AIWebStartable
can be started from an end user over the web. It provides anything what you need to build for a simple link in the web.- Since:
- 6.6.2
- API:
- This is a public API.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ISecurityMember
getActivator()
Returns the activator of thisIWebStartable
.String
getDescription()
Returns the description of thisIWebStartable
.String
getDisplayName()
Returns the name of thisIWebStartable
.WebLink
getLink()
Returns the link of thisIWebStartable
.String
getName()
Returns the name of thisIWebStartable
.
-
-
-
Method Detail
-
getName
String getName()
Returns the name of thisIWebStartable
. Never returns null.- Returns:
- name
- API:
- This public API is available in IvyScript and Java. It has the visibility NOVICE.
-
getDisplayName
String getDisplayName()
Returns the name of thisIWebStartable
. If the name is empty it will return an alternate name. Never returns null.- Returns:
- display name
- API:
- This public API is available in IvyScript and Java. It has the visibility NOVICE.
-
getDescription
String getDescription()
Returns the description of thisIWebStartable
. Never returns null.- Returns:
- description
- API:
- This public API is available in IvyScript and Java. It has the visibility NOVICE.
-
getLink
WebLink getLink()
Returns the link of thisIWebStartable
. Never returns null.- Returns:
- link
- API:
- This public API is available in IvyScript and Java. It has the visibility NOVICE.
-
getActivator
ISecurityMember getActivator()
Returns the activator of thisIWebStartable
. Defines whichISecurityMember
can activate thisIWebStartable
. Never returns null.- Returns:
- activator
- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
-