Package de.xima.fc.logic.filesystem
Interface IFileEntityView
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
AFileEntityView
,FormThemeFileView
public interface IFileEntityView extends Serializable
A view of afile entity
, used byFileEntityViewPersistenceAdapter
.- Since:
- 8.3.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Instant
getCreatedAt()
Gets the creation date of the file.String
getCreatedBy()
Gets the user who created the file.int
getFileEntityLockingVersion()
Gets the locking version of the file.String
getFileName()
Gets the file name.Long
getId()
Gets the ID of the file.Instant
getLastModifiedAt()
Gets the last modification date of the file.String
getLastModifiedBy()
Gets the user who last modified the file.void
setCreatedAt(Instant createdAt)
Sets the creation date of the file.void
setCreatedBy(String createdBy)
Sets the user who created the file.void
setFileEntityLockingVersion(int lockingVersion)
Sets the locking version of the file.void
setFileName(String fileName)
Sets the file name.void
setId(Long id)
Sets the ID of the file.void
setLastModifiedAt(Instant lastModifiedAt)
Sets the last modification date of the file.void
setLastModifiedBy(String lastModifiedBy)
Sets the user who last modified the file.
-
-
-
Method Detail
-
getCreatedAt
Instant getCreatedAt()
Gets the creation date of the file.- Returns:
- The creation date.
-
setCreatedAt
void setCreatedAt(Instant createdAt)
Sets the creation date of the file.- Parameters:
createdAt
- The creation date.
-
getCreatedBy
String getCreatedBy()
Gets the user who created the file.- Returns:
- The user who created the file.
-
setCreatedBy
void setCreatedBy(String createdBy)
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
String getFileName()
Gets the file name.- Returns:
- The file name.
-
setFileName
void setFileName(String fileName)
Sets the file name.- Parameters:
fileName
- The file name.
-
getId
Long getId()
Gets the ID of the file.- Returns:
- The ID of the file.
-
setId
void setId(Long id)
Sets the ID of the file.- Parameters:
id
- The ID of the file.
-
getLastModifiedAt
Instant getLastModifiedAt()
Gets the last modification date of the file.- Returns:
- The last modification date.
-
setLastModifiedAt
void setLastModifiedAt(Instant lastModifiedAt)
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
void setLastModifiedBy(String lastModifiedBy)
Sets the user who last modified the file.- Parameters:
lastModifiedBy
- The user who last modified the file.
-
-