Package org.jbpm.designer.repository
Interface Item
-
- All Known Subinterfaces:
Asset<T>
- All Known Implementing Classes:
AbstractAsset
,BinaryAsset
,TextAsset
public interface Item
Generic type of component managed by repository
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCreationDate()
Returns date when this item was createdString
getDescription()
Returns description of the item if presentString
getFullName()
Returns full name of the asset that usually is name and type.String
getLastModificationDate()
Returns date when this item was last time modifiedString
getName()
Returns name of the item if presentString
getOwner()
Returns owner (usually user if) of this itemString
getUniqueId()
Returns uniqueId of this assetString
getVersion()
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
-
-