com.ibm.bpe.api

Interface LinkTemplateData

All Superinterfaces:
java.io.Serializable

  1. public interface LinkTemplateData
  2. extends java.io.Serializable
Accesses the properties of a link template.

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
  1. static
  2. java.lang.String
COPYRIGHT

Method Summary

Modifier and Type Method and Description
  1. java.lang.String
getDescription()
Returns the description of the link template.
  1. java.lang.String
getName()
Returns the name of the link template.
  1. java.lang.String
getSourceActivityName()
Returns the name of the source activity.
  1. java.lang.String
getTargetActivityName()
Returns the name of the target activity.
  1. boolean
isBusinessRelevant()
States whether the link is business relevant or not.

Field Detail

  1. static final java.lang.String COPYRIGHT
See Also:

Method Detail

getName

  1. java.lang.String getName()
Returns the name of the link template.

isBusinessRelevant

  1. 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

  1. java.lang.String getDescription( )
Returns the description of the link template. If there is no description, null is returned.

getSourceActivityName

  1. java.lang.String getSourceActivityName( )
Returns the name of the source activity.

getTargetActivityName

  1. java.lang.String getTargetActivityName( )
Returns the name of the target activity.