Package com.tibco.ep.tcs.runtime.config
Interface IIdentification
-
public interface IIdentification
An interface describing identification metadata for a flow or block.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAuthor()
Return the identification object's author, null if none.String
getDescription()
Return the identification object's human-readable description, null if none.ISearchMetaData
getSearchMetaData()
Return metadata against which applications can search, null if none.String
getTitle()
Return the identification object's human-readable title, null if none.String
getUniqueID()
Return the identification object's unique ID.
-
-
-
Method Detail
-
getUniqueID
String getUniqueID()
Return the identification object's unique ID.
- Returns:
- unique ID
-
getTitle
String getTitle()
Return the identification object's human-readable title, null if none.
- Returns:
- title, null if none
-
getDescription
String getDescription()
Return the identification object's human-readable description, null if none.
- Returns:
- description, null if none
-
getAuthor
String getAuthor()
Return the identification object's author, null if none.
- Returns:
- author, null if none
-
getSearchMetaData
ISearchMetaData getSearchMetaData()
Return metadata against which applications can search, null if none.
- Returns:
- search metadata, null if none
-
-