Class UserEntry
java.lang.Object
org.ametys.plugins.forms.content.data.UserEntry
User entry.
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprotected DateThe entry submission date.protected intThe entry id.protected UserIdentityThe user identityprotected List<FieldValue>The entry values.protected IntegerThe workflow id
- 
Constructor SummaryConstructorsConstructorDescriptionUserEntry(int id, Date creationDate, List<FieldValue> values, Integer workflowId, UserIdentity userIdentity) Constructor with parameters.
- 
Method SummaryModifier and TypeMethodDescriptionGet the creationDate.intgetId()Get the id.Get the user identity of the entryGet the values.Get the workflow id of this user entryvoidsetCreationDate(Date creationDate) Set the creationDate.voidsetId(int id) Set the id.voidsetValues(List<FieldValue> values) Set the values.voidsetWorkflowId(Integer workflowId) Set the workflow id of this entry
- 
Field Details- 
_idThe entry id.
- 
_creationDateThe entry submission date.
- 
_userIdentityThe user identity
- 
_valuesThe entry values.
- 
_workflowIdThe workflow id
 
- 
- 
Constructor Details- 
UserEntrypublic UserEntry(int id, Date creationDate, List<FieldValue> values, Integer workflowId, UserIdentity userIdentity) Constructor with parameters.- Parameters:
- id- the id of the user entry
- creationDate- the creation date of the user entry
- values- the values of the user entry
- workflowId- the id of the workflow of this user entry
- userIdentity- the user identity. Can be null.
 
 
- 
- 
Method Details- 
getIdGet the id.- Returns:
- the id
 
- 
setIdSet the id.- Parameters:
- id- the id to set
 
- 
getCreationDateGet the creationDate.- Returns:
- the creationDate
 
- 
setCreationDateSet the creationDate.- Parameters:
- creationDate- the creationDate to set
 
- 
getValuesGet the values.- Returns:
- the values
 
- 
setValuesSet the values.- Parameters:
- values- the values to set
 
- 
setWorkflowIdSet the workflow id of this entry- Parameters:
- workflowId- the id of the workflow of this entry
 
- 
getWorkflowIdGet the workflow id of this user entry- Returns:
- the workflow id of this entry
 
- 
getUserIdentityGet the user identity of the entry- Returns:
- the user identity. Can be null.
 
 
-