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 StringgetCaseId()Returns unique case identifier that this item belongs toDategetLastModified()Returns last modification timestamp for this data itemStringgetLastModifiedBy()Returns user id who made the last modification of this data itemStringgetName()Returns name of the data itemStringgetType()Returns type of the data item - FQCNStringgetValue()Returns "toString" version of the latest value of the data itemStringtoString()
-
-
-
Method Detail
-
getCaseId
public String getCaseId()
Description copied from interface:CaseFileItemReturns unique case identifier that this item belongs to- Specified by:
getCaseIdin interfaceCaseFileItem
-
getName
public String getName()
Description copied from interface:CaseFileItemReturns name of the data item- Specified by:
getNamein interfaceCaseFileItem
-
getValue
public String getValue()
Description copied from interface:CaseFileItemReturns "toString" version of the latest value of the data item- Specified by:
getValuein interfaceCaseFileItem
-
getType
public String getType()
Description copied from interface:CaseFileItemReturns type of the data item - FQCN- Specified by:
getTypein interfaceCaseFileItem
-
getLastModifiedBy
public String getLastModifiedBy()
Description copied from interface:CaseFileItemReturns user id who made the last modification of this data item- Specified by:
getLastModifiedByin interfaceCaseFileItem
-
getLastModified
public Date getLastModified()
Description copied from interface:CaseFileItemReturns last modification timestamp for this data item- Specified by:
getLastModifiedin interfaceCaseFileItem
-
-