- All Implemented Interfaces:
- Serializable,- Comparable<AclEntryPermission>,- Constable
Defines the permissions for use with the permissions component of an ACL
 
entry.- Since:
- 1.7
- 
Nested Class SummaryNested classes/interfaces declared in class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionPermission to append data to a file.Permission to delete the file.Permission to delete a file or directory within a directory.Permission to execute a file.Permission to read the ACL attribute.The ability to read (non-acl) file attributes.Permission to read the data of the file.Permission to read the named attributes of a file.Permission to access file locally at the server with synchronous reads and writes.Permission to write the ACL attribute.The ability to write (non-acl) file attributes.Permission to modify the file's data.Permission to write the named attributes of a file.Permission to change the owner.
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final AclEntryPermissionPermission to add a new file to a directory (equal toWRITE_DATA)static final AclEntryPermissionPermission to create a subdirectory to a directory (equal toAPPEND_DATA)static final AclEntryPermissionPermission to list the entries of a directory (equal toREAD_DATA)
- 
Method SummaryModifier and TypeMethodDescriptionstatic AclEntryPermissionReturns the enum constant of this class with the specified name.static AclEntryPermission[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
READ_DATAPermission to read the data of the file.
- 
WRITE_DATAPermission to modify the file's data.
- 
APPEND_DATAPermission to append data to a file.
- 
READ_NAMED_ATTRSPermission to read the named attributes of a file.RFC 3530: Network File System (NFS) version 4 Protocol defines named attributes as opaque files associated with a file in the file system. - External Specifications
 
- 
WRITE_NAMED_ATTRSPermission to write the named attributes of a file.RFC 3530: Network File System (NFS) version 4 Protocol defines named attributes as opaque files associated with a file in the file system. - External Specifications
 
- 
EXECUTEPermission to execute a file.
- 
DELETE_CHILDPermission to delete a file or directory within a directory.
- 
READ_ATTRIBUTESThe ability to read (non-acl) file attributes.
- 
WRITE_ATTRIBUTESThe ability to write (non-acl) file attributes.
- 
DELETEPermission to delete the file.
- 
READ_ACLPermission to read the ACL attribute.
- 
WRITE_ACLPermission to write the ACL attribute.
- 
WRITE_OWNERPermission to change the owner.
- 
SYNCHRONIZEPermission to access file locally at the server with synchronous reads and writes.
 
- 
- 
Field Details- 
LIST_DIRECTORYPermission to list the entries of a directory (equal toREAD_DATA)
- 
ADD_FILEPermission to add a new file to a directory (equal toWRITE_DATA)
- 
ADD_SUBDIRECTORYPermission to create a subdirectory to a directory (equal toAPPEND_DATA)
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum class has no constant with the specified name
- NullPointerException- if the argument is null
 
 
-