java.lang.Object
java.lang.Enum<SecurityInformation>
org.cryptomator.frontend.dokany.internal.constants.SecurityInformation
All Implemented Interfaces:
Serializable, Comparable<SecurityInformation>, Constable, EnumInteger

public enum SecurityInformation extends Enum<SecurityInformation> implements EnumInteger
Identifies the object-related security information being set or queried. This security information includes:
  • The owner of an object.
  • The primary group of an object.>
  • The discretionary access control list(DACL) of an object.
  • The system access control list(SACL) of an object.

Structure taken from pinvoke.net

See Also:
  • Enum Constant Details

    • OWNER_SECURITY_INFORMATION

      public static final SecurityInformation OWNER_SECURITY_INFORMATION
    • GROUP_SECURITY_INFORMATION

      public static final SecurityInformation GROUP_SECURITY_INFORMATION
    • DACL_SECURITY_INFORMATION

      public static final SecurityInformation DACL_SECURITY_INFORMATION
    • SACL_SECURITY_INFORMATION

      public static final SecurityInformation SACL_SECURITY_INFORMATION
    • LABEL_SECURITY_INFORMATION

      public static final SecurityInformation LABEL_SECURITY_INFORMATION
    • ATTRIBUTE_SECURITY_INFORMATION

      public static final SecurityInformation ATTRIBUTE_SECURITY_INFORMATION
    • SCOPE_SECURITY_INFORMATION

      public static final SecurityInformation SCOPE_SECURITY_INFORMATION
    • PROCESS_TRUST_LABEL_SECURITY_INFORMATION

      public static final SecurityInformation PROCESS_TRUST_LABEL_SECURITY_INFORMATION
    • ACCESS_FILTER_SECURITY_INFORMATION

      public static final SecurityInformation ACCESS_FILTER_SECURITY_INFORMATION
    • BACKUP_SECURITY_INFORMATION

      public static final SecurityInformation BACKUP_SECURITY_INFORMATION
    • PROTECTED_SACL_SECURITY_INFORMATION

      public static final SecurityInformation PROTECTED_SACL_SECURITY_INFORMATION
    • PROTECTED_DACL_SECURITY_INFORMATION

      public static final SecurityInformation PROTECTED_DACL_SECURITY_INFORMATION
    • UNPROTECTED_SACL_SECURITY_INFORMATION

      public static final SecurityInformation UNPROTECTED_SACL_SECURITY_INFORMATION
    • UNPROTECTED_DACL_SECURITY_INFORMATION

      public static final SecurityInformation UNPROTECTED_DACL_SECURITY_INFORMATION
  • Method Details

    • values

      public static SecurityInformation[] values()
      Returns 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
    • valueOf

      public static SecurityInformation valueOf(String name)
      Returns 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
    • getMask

      public int getMask()
      Specified by:
      getMask in interface EnumInteger
    • getDescription

      public String getDescription()