Package org.jbpm.designer.repository
Interface Item
-
- All Known Subinterfaces:
Asset<T>
- All Known Implementing Classes:
AbstractAsset,BinaryAsset,TextAsset
public interface ItemGeneric type of component managed by repository
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCreationDate()Returns date when this item was createdStringgetDescription()Returns description of the item if presentStringgetFullName()Returns full name of the asset that usually is name and type.StringgetLastModificationDate()Returns date when this item was last time modifiedStringgetName()Returns name of the item if presentStringgetOwner()Returns owner (usually user if) of this itemStringgetUniqueId()Returns uniqueId of this assetStringgetVersion()Returns version of this item
-
-
-
Method Detail
-
getUniqueId
String getUniqueId()
Returns uniqueId of this asset- Returns:
- unique identifier of this asset
-
getName
String getName()
Returns name of the item if present- Returns:
- - item name
-
getFullName
String getFullName()
Returns full name of the asset that usually is name and type. e.g. in case of files it's file name and extension.- Returns:
- - returns full asset name
-
getDescription
String getDescription()
Returns description of the item if present- Returns:
- - item description
-
getVersion
String getVersion()
Returns version of this item- Returns:
- - item version
-
getOwner
String getOwner()
Returns owner (usually user if) of this item- Returns:
- - item owner
-
getCreationDate
String getCreationDate()
Returns date when this item was created- Returns:
- - item creation date
-
getLastModificationDate
String getLastModificationDate()
Returns date when this item was last time modified- Returns:
- - item last modification date
-
-