Package lumis.portal.file
Class FileConfig
- java.lang.Object
-
- lumis.portal.file.FileConfig
-
- All Implemented Interfaces:
IDownloadableFile
@StableMinor(version="14.0", sinceVersion="4.0") public class FileConfig extends Object implements IDownloadableFile
Object that represents a file object- Since:
- 4.0.0
- Version:
- $Revision: 24477 $ $Date: 2021-04-28 11:30:36 -0300 (Wed, 28 Apr 2021) $
-
-
Field Summary
Fields Modifier and Type Field Description static int
TYPE_DEFAULT
Default file type.static int
TYPE_FILES
This type indicates that this file belongs to a "files" data type.
-
Constructor Summary
Constructors Constructor Description FileConfig(String fileId)
Deprecated.Since 6.0.0,FileConfig
should not be constructed directly.FileConfig(String fileId, String name, String fullPath, String contentType, long fileSize, int type, String serviceInstanceId)
Deprecated.Since 6.0.0,FileConfig
should not be constructed directly.FileConfig(String fileId, FileParameter fileParameter, String serviceInstanceId)
Deprecated.Since 6.0.0,FileConfig
should not be constructed directly.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getContentLocaleId()
Returns the content locale identifier.String
getContentType()
Returns the file content typelong
getFileSize()
Returns the file sizeString
getFullPath()
String
getId()
IFileMetadata
getMetadata()
Retrieves the metadata of the file.String
getName()
Returns the file nameString
getServiceInstanceId()
int
getType()
void
setContentLocaleId(String contentLocaleId)
Sets the content locale identifier.void
setName(String name)
void
setType(int type)
-
-
-
Field Detail
-
TYPE_DEFAULT
public static final int TYPE_DEFAULT
Default file type.- See Also:
- Constant Field Values
-
TYPE_FILES
public static final int TYPE_FILES
This type indicates that this file belongs to a "files" data type.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
FileConfig
@Deprecated public FileConfig(String fileId)
Deprecated.Since 6.0.0,FileConfig
should not be constructed directly. UseIFileManager.add(lumis.portal.authentication.SessionConfig, String, java.io.File, String, String, lumis.util.ITransaction)
instead.
-
FileConfig
@Deprecated public FileConfig(String fileId, FileParameter fileParameter, String serviceInstanceId) throws IOException
Deprecated.Since 6.0.0,FileConfig
should not be constructed directly. UseIFileManager.add(lumis.portal.authentication.SessionConfig, String, java.io.File, String, String, lumis.util.ITransaction)
instead.- Throws:
IOException
-
FileConfig
@Deprecated public FileConfig(String fileId, String name, String fullPath, String contentType, long fileSize, int type, String serviceInstanceId)
Deprecated.Since 6.0.0,FileConfig
should not be constructed directly. UseIFileManager.add(lumis.portal.authentication.SessionConfig, String, java.io.File, String, String, lumis.util.ITransaction)
instead.
-
-
Method Detail
-
getContentType
public String getContentType()
Description copied from interface:IDownloadableFile
Returns the file content type- Specified by:
getContentType
in interfaceIDownloadableFile
- Returns:
- the file content type
-
getId
public String getId()
-
getFileSize
public long getFileSize()
Description copied from interface:IDownloadableFile
Returns the file size- Specified by:
getFileSize
in interfaceIDownloadableFile
- Returns:
- the file size
-
getFullPath
public String getFullPath()
-
getName
public String getName()
Description copied from interface:IDownloadableFile
Returns the file name- Specified by:
getName
in interfaceIDownloadableFile
- Returns:
- the file name
-
getServiceInstanceId
public String getServiceInstanceId()
-
setName
public void setName(String name)
-
getType
public int getType()
-
setType
public void setType(int type)
-
getMetadata
public IFileMetadata getMetadata()
Retrieves the metadata of the file.- Returns:
- the metadata of the file.
- Since:
- 6.0.0
-
setContentLocaleId
public void setContentLocaleId(String contentLocaleId)
Sets the content locale identifier.- Parameters:
contentLocaleId
- the content locale identifier.- Since:
- 10.1.0
-
getContentLocaleId
public String getContentLocaleId()
Returns the content locale identifier.- Returns:
- the content locale identifier.
- Since:
- 10.1.0
-
-