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 ofIFileEntityViewwith 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 InstantgetCreatedAt()Gets the creation date of the file.StringgetCreatedBy()Gets the user who created the file.intgetFileEntityLockingVersion()Gets the locking version of the file.StringgetFileName()Gets the file name.LonggetId()Gets the ID of the file.InstantgetLastModifiedAt()Gets the last modification date of the file.StringgetLastModifiedBy()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.voidsetId(Long id)Sets 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 Detail
-
getCreatedAt
public final Instant getCreatedAt()
Description copied from interface:IFileEntityViewGets the creation date of the file.- Specified by:
getCreatedAtin interfaceIFileEntityView- Returns:
- The creation date.
-
setCreatedAt
public final void setCreatedAt(Instant createdAt)
Description copied from interface:IFileEntityViewSets the creation date of the file.- Specified by:
setCreatedAtin interfaceIFileEntityView- Parameters:
createdAt- The creation date.
-
getCreatedBy
public final String getCreatedBy()
Description copied from interface:IFileEntityViewGets the user who created the file.- Specified by:
getCreatedByin interfaceIFileEntityView- Returns:
- The user who created the file.
-
setCreatedBy
public final void setCreatedBy(String createdBy)
Description copied from interface:IFileEntityViewSets the user who created the file.- Specified by:
setCreatedByin interfaceIFileEntityView- Parameters:
createdBy- The user who created the file.
-
getFileEntityLockingVersion
public final int getFileEntityLockingVersion()
Description copied from interface:IFileEntityViewGets the locking version of the file.- Specified by:
getFileEntityLockingVersionin interfaceIFileEntityView- Returns:
- The locking version of the file.
-
getFileName
public final String getFileName()
Description copied from interface:IFileEntityViewGets the file name.- Specified by:
getFileNamein interfaceIFileEntityView- Returns:
- The file name.
-
setFileName
public final void setFileName(String fileName)
Description copied from interface:IFileEntityViewSets the file name.- Specified by:
setFileNamein interfaceIFileEntityView- Parameters:
fileName- The file name.
-
getId
public final Long getId()
Description copied from interface:IFileEntityViewGets the ID of the file.- Specified by:
getIdin interfaceIFileEntityView- Returns:
- The ID of the file.
-
setId
public final void setId(Long id)
Description copied from interface:IFileEntityViewSets the ID of the file.- Specified by:
setIdin interfaceIFileEntityView- Parameters:
id- The ID of the file.
-
getLastModifiedAt
public final Instant getLastModifiedAt()
Description copied from interface:IFileEntityViewGets the last modification date of the file.- Specified by:
getLastModifiedAtin interfaceIFileEntityView- Returns:
- The last modification date.
-
setLastModifiedAt
public final void setLastModifiedAt(Instant lastModifiedAt)
Description copied from interface:IFileEntityViewSets the last modification date of the file.- Specified by:
setLastModifiedAtin interfaceIFileEntityView- Parameters:
lastModifiedAt- The last modification date.
-
getLastModifiedBy
public final String getLastModifiedBy()
Description copied from interface:IFileEntityViewGets the user who last modified the file.- Specified by:
getLastModifiedByin interfaceIFileEntityView- Returns:
- The user who last modified the file.
-
setLastModifiedBy
public final void setLastModifiedBy(String lastModifiedBy)
Description copied from interface:IFileEntityViewSets the user who last modified the file.- Specified by:
setLastModifiedByin interfaceIFileEntityView- Parameters:
lastModifiedBy- The user who last modified the file.
-
setFileEntityLockingVersion
public final void setFileEntityLockingVersion(int lockingVersion)
Description copied from interface:IFileEntityViewSets the locking version of the file.- Specified by:
setFileEntityLockingVersionin interfaceIFileEntityView- Parameters:
lockingVersion- The locking version of the file.
-
-