Package ch.ivyteam.ivy.workflow.start
Interface IWebStartable
-
- All Superinterfaces:
Comparable<IWebStartable>
public interface IWebStartable extends Comparable<IWebStartable>
AIWebStartablecan 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 IStartCustomFieldscustomFields()Access to customer specific additional informationISecurityMembergetActivator()Returns the activator of thisIWebStartable.CategorygetCategory()Returns the category of this .StringgetDescription()Returns the description of thisIWebStartable.StringgetDisplayName()Returns the name of thisIWebStartable.StringgetId()Returns a unique identifier for this IWebStartableWebLinkgetLink()Returns the link of thisIWebStartable.WebLinkgetLinkEmbedded()Returns the link of thisIWebStartablefor frame mode.StringgetName()Returns the name of thisIWebStartable.StringgetType()Returns the type of thisIWebStartable.
-
-
-
Method Detail
-
getId
String getId()
Returns a unique identifier for this IWebStartable- Returns:
- id
- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
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.
-
getLinkEmbedded
WebLink getLinkEmbedded()
Returns the link of thisIWebStartablefor frame mode. 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 whichISecurityMembercan activate thisIWebStartable. Never returns null.- Returns:
- activator
- API:
- This public API is available in IvyScript and Java. It has the visibility ADVANCED.
-
getType
String getType()
Returns the type of thisIWebStartable.- Returns:
- type
- API:
- This public API is available in IvyScript and Java. It has the visibility NOVICE.
-
getCategory
Category getCategory()
Returns the category of this .- Returns:
- category
- API:
- This public API is available in IvyScript and Java. It has the visibility NOVICE.
-
customFields
IStartCustomFields customFields()
Access to customer specific additional information- Returns:
- custom fields
- Since:
- 9.2
- API:
- This public API is available in IvyScript and Java. It has the visibility NOVICE.
-
-