Package de.xima.fc.logic.filesystem
Class AFileEntityView
- java.lang.Object
-
- de.xima.fc.logic.filesystem.AFileEntityView
-
- All Implemented Interfaces:
IFileEntityView
,Serializable
public class AFileEntityView extends Object implements IFileEntityView
Base POJO implementation ofIFileEntityView
with fields for all getters and setters.- Since:
- 8.3.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AFileEntityView()
-
Method Summary
All Methods Instance Methods Concrete 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
public final Instant getCreatedAt()
Description copied from interface:IFileEntityView
Gets the creation date of the file.- Specified by:
getCreatedAt
in interfaceIFileEntityView
- Returns:
- The creation date.
-
setCreatedAt
public final void setCreatedAt(Instant createdAt)
Description copied from interface:IFileEntityView
Sets the creation date of the file.- Specified by:
setCreatedAt
in interfaceIFileEntityView
- Parameters:
createdAt
- The creation date.
-
getCreatedBy
public final String getCreatedBy()
Description copied from interface:IFileEntityView
Gets the user who created the file.- Specified by:
getCreatedBy
in interfaceIFileEntityView
- Returns:
- The user who created the file.
-
setCreatedBy
public final void setCreatedBy(String createdBy)
Description copied from interface:IFileEntityView
Sets the user who created the file.- Specified by:
setCreatedBy
in interfaceIFileEntityView
- Parameters:
createdBy
- The user who created the file.
-
getFileEntityLockingVersion
public final int getFileEntityLockingVersion()
Description copied from interface:IFileEntityView
Gets the locking version of the file.- Specified by:
getFileEntityLockingVersion
in interfaceIFileEntityView
- Returns:
- The locking version of the file.
-
getFileName
public final String getFileName()
Description copied from interface:IFileEntityView
Gets the file name.- Specified by:
getFileName
in interfaceIFileEntityView
- Returns:
- The file name.
-
setFileName
public final void setFileName(String fileName)
Description copied from interface:IFileEntityView
Sets the file name.- Specified by:
setFileName
in interfaceIFileEntityView
- Parameters:
fileName
- The file name.
-
getId
public final Long getId()
Description copied from interface:IFileEntityView
Gets the ID of the file.- Specified by:
getId
in interfaceIFileEntityView
- Returns:
- The ID of the file.
-
setId
public final void setId(Long id)
Description copied from interface:IFileEntityView
Sets the ID of the file.- Specified by:
setId
in interfaceIFileEntityView
- Parameters:
id
- The ID of the file.
-
getLastModifiedAt
public final Instant getLastModifiedAt()
Description copied from interface:IFileEntityView
Gets the last modification date of the file.- Specified by:
getLastModifiedAt
in interfaceIFileEntityView
- Returns:
- The last modification date.
-
setLastModifiedAt
public final void setLastModifiedAt(Instant lastModifiedAt)
Description copied from interface:IFileEntityView
Sets the last modification date of the file.- Specified by:
setLastModifiedAt
in interfaceIFileEntityView
- Parameters:
lastModifiedAt
- The last modification date.
-
getLastModifiedBy
public final String getLastModifiedBy()
Description copied from interface:IFileEntityView
Gets the user who last modified the file.- Specified by:
getLastModifiedBy
in interfaceIFileEntityView
- Returns:
- The user who last modified the file.
-
setLastModifiedBy
public final void setLastModifiedBy(String lastModifiedBy)
Description copied from interface:IFileEntityView
Sets the user who last modified the file.- Specified by:
setLastModifiedBy
in interfaceIFileEntityView
- Parameters:
lastModifiedBy
- The user who last modified the file.
-
setFileEntityLockingVersion
public final void setFileEntityLockingVersion(int lockingVersion)
Description copied from interface:IFileEntityView
Sets the locking version of the file.- Specified by:
setFileEntityLockingVersion
in interfaceIFileEntityView
- Parameters:
lockingVersion
- The locking version of the file.
-
-