Class FilePermission


  • public class FilePermission
    extends java.lang.Object
    Whether the user is allowed to take the sharing action on the file.
    • Constructor Detail

      • FilePermission

        public FilePermission​(FileAction action,
                              boolean allow,
                              PermissionDeniedReason reason)
        Whether the user is allowed to take the sharing action on the file.
        Parameters:
        action - The action that the user may wish to take on the file. Must not be null.
        allow - True if the user is allowed to take the action.
        reason - The reason why the user is denied the permission. Not present if the action is allowed.
        Throws:
        java.lang.IllegalArgumentException - If any argument does not meet its preconditions.
      • FilePermission

        public FilePermission​(FileAction action,
                              boolean allow)
        Whether the user is allowed to take the sharing action on the file.

        The default values for unset fields will be used.

        Parameters:
        action - The action that the user may wish to take on the file. Must not be null.
        allow - True if the user is allowed to take the action.
        Throws:
        java.lang.IllegalArgumentException - If any argument does not meet its preconditions.
    • Method Detail

      • getAction

        public FileAction getAction()
        The action that the user may wish to take on the file.
        Returns:
        value for this field, never null.
      • getAllow

        public boolean getAllow()
        True if the user is allowed to take the action.
        Returns:
        value for this field.
      • getReason

        public PermissionDeniedReason getReason()
        The reason why the user is denied the permission. Not present if the action is allowed.
        Returns:
        value for this field, or null if not present.
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • toStringMultiline

        public java.lang.String toStringMultiline()
        Returns a String representation of this object formatted for easier readability.

        The returned String may contain newlines.

        Returns:
        Formatted, multiline String representation of this object