Class CaseFileItemImpl
- java.lang.Object
-
- org.jbpm.casemgmt.impl.model.instance.CaseFileItemImpl
-
- All Implemented Interfaces:
Serializable
,CaseFileItem
public class CaseFileItemImpl extends Object implements CaseFileItem
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CaseFileItemImpl()
CaseFileItemImpl(String caseId, String name, String value, String type, String lastModifiedBy, Date lastModified)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCaseId()
Returns unique case identifier that this item belongs toDate
getLastModified()
Returns last modification timestamp for this data itemString
getLastModifiedBy()
Returns user id who made the last modification of this data itemString
getName()
Returns name of the data itemString
getType()
Returns type of the data item - FQCNString
getValue()
Returns "toString" version of the latest value of the data itemString
toString()
-
-
-
Method Detail
-
getCaseId
public String getCaseId()
Description copied from interface:CaseFileItem
Returns unique case identifier that this item belongs to- Specified by:
getCaseId
in interfaceCaseFileItem
-
getName
public String getName()
Description copied from interface:CaseFileItem
Returns name of the data item- Specified by:
getName
in interfaceCaseFileItem
-
getValue
public String getValue()
Description copied from interface:CaseFileItem
Returns "toString" version of the latest value of the data item- Specified by:
getValue
in interfaceCaseFileItem
-
getType
public String getType()
Description copied from interface:CaseFileItem
Returns type of the data item - FQCN- Specified by:
getType
in interfaceCaseFileItem
-
getLastModifiedBy
public String getLastModifiedBy()
Description copied from interface:CaseFileItem
Returns user id who made the last modification of this data item- Specified by:
getLastModifiedBy
in interfaceCaseFileItem
-
getLastModified
public Date getLastModified()
Description copied from interface:CaseFileItem
Returns last modification timestamp for this data item- Specified by:
getLastModified
in interfaceCaseFileItem
-
-