com.ibm.bpe.api
Interface LinkTemplateData
All Superinterfaces:
java.io.Serializable
- public interface LinkTemplateData
- extends java.io.Serializable
Links are used for synchronization across concurrent activities. They define the potential flow of control between two activities in the process. The actual flow of control is determined at run time based on the truth value of the transition conditions associated with the links.
Since:
6.2
Field Summary
Modifier and Type | Field and Description |
---|---|
|
COPYRIGHT
|
Method Summary
Modifier and Type | Method and Description |
---|---|
|
getDescription()
Returns the description of the link template.
|
|
getName()
Returns the name of the link template.
|
|
getSourceActivityName()
Returns the name of the source activity.
|
|
getTargetActivityName()
Returns the name of the target activity.
|
|
isBusinessRelevant()
States whether the link is business relevant or not.
|
Field Detail
COPYRIGHT
- static final java.lang.String COPYRIGHT
See Also:
Method Detail
getName
- java.lang.String getName()
Returns the name of the link template.
isBusinessRelevant
- boolean isBusinessRelevant()
States whether the link is business relevant or not. A
business relevant link can, for example, be logged into the audit trail.
getDescription
- java.lang.String getDescription( )
Returns the description of the link template. If there is no description, null is returned.
getSourceActivityName
- java.lang.String getSourceActivityName( )
Returns the name of the source activity.
getTargetActivityName
- java.lang.String getTargetActivityName( )
Returns the name of the target activity.