Package org.apache.tomcat.jni
Class FileInfo
- java.lang.Object
- 
- org.apache.tomcat.jni.FileInfo
 
- 
 @Deprecated public class FileInfo extends java.lang.ObjectDeprecated.The scope of the APR/Native Library will be reduced in Tomcat 10.1.x / Tomcat Native 2.x onwards to only include those components required to provide OpenSSL integration with the NIO and NIO2 connectors.Fileinfo- Author:
- Mladen Turk
 
- 
- 
Field SummaryFields Modifier and Type Field Description longatimeDeprecated.The time the file was last accessedlongcsizeDeprecated.The storage size consumed by the filelongctimeDeprecated.The time the file was created, or the inode was last changedintdeviceDeprecated.The id of the device the file is on.longfilehandDeprecated.The file's handle, if accessed (can be submitted to apr_duphandle)intfiletypeDeprecated.The type of file.java.lang.StringfnameDeprecated.The pathname of the file (possibly unrooted)intgroupDeprecated.The group id that owns the fileintinodeDeprecated.The inode of the file.longmtimeDeprecated.The time the file was last modifiedjava.lang.StringnameDeprecated.The file's name (no path) in filesystem caseintnlinkDeprecated.The number of hard links to the file.longpoolDeprecated.Allocates memory and closes lingering handles in the specified poolintprotectionDeprecated.The access permissions of the file.longsizeDeprecated.The size of the fileintuserDeprecated.The user id that owns the fileintvalidDeprecated.The bitmask describing valid fields of this apr_finfo_t structure including all available 'wanted' fields and potentially more
 - 
Constructor SummaryConstructors Constructor Description FileInfo()Deprecated.
 
- 
- 
- 
Field Detail- 
poolpublic long pool Deprecated.Allocates memory and closes lingering handles in the specified pool
 - 
validpublic int valid Deprecated.The bitmask describing valid fields of this apr_finfo_t structure including all available 'wanted' fields and potentially more
 - 
protectionpublic int protection Deprecated.The access permissions of the file. Mimics Unix access rights.
 - 
filetypepublic int filetype Deprecated.The type of file. One of APR_REG, APR_DIR, APR_CHR, APR_BLK, APR_PIPE, APR_LNK or APR_SOCK. If the type is undetermined, the value is APR_NOFILE. If the type cannot be determined, the value is APR_UNKFILE.
 - 
userpublic int user Deprecated.The user id that owns the file
 - 
grouppublic int group Deprecated.The group id that owns the file
 - 
inodepublic int inode Deprecated.The inode of the file.
 - 
devicepublic int device Deprecated.The id of the device the file is on.
 - 
nlinkpublic int nlink Deprecated.The number of hard links to the file.
 - 
sizepublic long size Deprecated.The size of the file
 - 
csizepublic long csize Deprecated.The storage size consumed by the file
 - 
atimepublic long atime Deprecated.The time the file was last accessed
 - 
mtimepublic long mtime Deprecated.The time the file was last modified
 - 
ctimepublic long ctime Deprecated.The time the file was created, or the inode was last changed
 - 
fnamepublic java.lang.String fname Deprecated.The pathname of the file (possibly unrooted)
 - 
namepublic java.lang.String name Deprecated.The file's name (no path) in filesystem case
 - 
filehandpublic long filehand Deprecated.The file's handle, if accessed (can be submitted to apr_duphandle)
 
- 
 
-