Interface IFormRecordBaseData
-
- All Superinterfaces:
IFormRecordData,Serializable
- All Known Implementing Classes:
FormRecordBaseData
public interface IFormRecordBaseData extends IFormRecordData
Common interface for base data of a form record. Intended for getting collections of form records (performance).- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetAttachmentCount()StatusgetCurrentStatus()WorkflowStategetCurrentWorkflowState()intgetErrorCount()LonggetInboxId()StringgetInboxName()DategetLastStatusChangeDate()ProjektgetProject()StringgetSubject()DategetSubmitDate()DategetVerifyExpireDate()StringgetVerifyUuid()WorkflowVersiongetWorkflowVersion()booleanisProcessing()booleanisRead()booleanisSaved()booleanisVerifyLock()-
Methods inherited from interface de.xima.fc.interfaces.form.record.IFormRecordData
getFormRecordId, getQuartzJobDetails
-
-
-
-
Method Detail
-
isRead
boolean isRead()
-
isSaved
boolean isSaved()
-
isProcessing
boolean isProcessing()
-
isVerifyLock
boolean isVerifyLock()
-
getSubject
String getSubject()
-
getSubmitDate
Date getSubmitDate()
-
getErrorCount
int getErrorCount()
-
getVerifyUuid
String getVerifyUuid()
-
getVerifyExpireDate
Date getVerifyExpireDate()
-
getCurrentWorkflowState
WorkflowState getCurrentWorkflowState()
-
getWorkflowVersion
WorkflowVersion getWorkflowVersion()
-
getCurrentStatus
Status getCurrentStatus()
-
getInboxId
Long getInboxId()
-
getInboxName
String getInboxName()
-
getAttachmentCount
int getAttachmentCount()
-
getProject
Projekt getProject()
-
getLastStatusChangeDate
Date getLastStatusChangeDate()
-
-