AclEntryType

  • AclEntryType is a typesafe enum defining access control entry types for files and directories.

  • It inherits methods from java.lang.Enum, java.lang.Object, and java.lang.Comparable for object comparison and manipulation.

  • The enum provides four values: ALARM, ALLOW, AUDIT, and DENY to specify different access control actions.

  • ALARM and AUDIT trigger system-dependent actions, while ALLOW and DENY explicitly grant or deny access.

public final enum AclEntryType extends Enum<AclEntryType>

A typesafe enumeration of the access control entry types.

Inherited Method Summary

Enum Values

public static final AclEntryType ALARM

Generate an alarm, in a system dependent way, the access specified in the permissions component of the ACL entry.

public static final AclEntryType ALLOW

Explicitly grants access to a file or directory.

public static final AclEntryType AUDIT

Log, in a system dependent way, the access specified in the permissions component of the ACL entry.

public static final AclEntryType DENY

Explicitly denies access to a file or directory.