Interface IFileEntityView
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
AFileEntityView, FormThemeFileView
A view of a
file entity, used by FileEntityViewPersistenceAdapter.- Since:
- 8.3.0
- Author:
- XIMA MEDIA GmbH
-
Method Summary
Modifier and TypeMethodDescriptionGets the creation date of the file.Gets the user who created the file.intGets the locking version of the file.Gets the file name.getId()Gets the ID of the file.Gets the last modification date of the file.Gets the user who last modified the file.voidsetCreatedAt(Instant createdAt) Sets the creation date of the file.voidsetCreatedBy(String createdBy) Sets the user who created the file.voidsetFileEntityLockingVersion(int lockingVersion) Sets the locking version of the file.voidsetFileName(String fileName) Sets the file name.voidSets the ID of the file.voidsetLastModifiedAt(Instant lastModifiedAt) Sets the last modification date of the file.voidsetLastModifiedBy(String lastModifiedBy) Sets the user who last modified the file.
-
Method Details
-
getCreatedAt
-
setCreatedAt
Sets the creation date of the file.- Parameters:
createdAt- The creation date.
-
getCreatedBy
-
setCreatedBy
Sets the user who created the file.- Parameters:
createdBy- The user who created the file.
-
getFileEntityLockingVersion
int getFileEntityLockingVersion()Gets the locking version of the file.- Returns:
- The locking version of the file.
-
setFileEntityLockingVersion
void setFileEntityLockingVersion(int lockingVersion) Sets the locking version of the file.- Parameters:
lockingVersion- The locking version of the file.
-
getFileName
-
setFileName
-
getId
-
setId
-
getLastModifiedAt
Instant getLastModifiedAt()Gets the last modification date of the file.- Returns:
- The last modification date.
-
setLastModifiedAt
Sets the last modification date of the file.- Parameters:
lastModifiedAt- The last modification date.
-
getLastModifiedBy
String getLastModifiedBy()Gets the user who last modified the file.- Returns:
- The user who last modified the file.
-
setLastModifiedBy
Sets the user who last modified the file.- Parameters:
lastModifiedBy- The user who last modified the file.
-