Class FolderPolicy


  • public class FolderPolicy
    extends java.lang.Object
    A set of policies governing membership and privileges for a shared folder.
    • Constructor Detail

      • FolderPolicy

        public FolderPolicy​(AclUpdatePolicy aclUpdatePolicy,
                            SharedLinkPolicy sharedLinkPolicy,
                            MemberPolicy memberPolicy,
                            MemberPolicy resolvedMemberPolicy,
                            ViewerInfoPolicy viewerInfoPolicy)
        A set of policies governing membership and privileges for a shared folder.

        Use newBuilder(com.dropbox.core.v2.sharing.AclUpdatePolicy,com.dropbox.core.v2.sharing.SharedLinkPolicy) to create instances of this class without specifying values for all optional fields.

        Parameters:
        aclUpdatePolicy - Who can add and remove members from this shared folder. Must not be null.
        sharedLinkPolicy - Who links can be shared with. Must not be null.
        memberPolicy - Who can be a member of this shared folder, as set on the folder itself. The effective policy may differ from this value if the team-wide policy is more restrictive. Present only if the folder is owned by a team.
        resolvedMemberPolicy - Who can be a member of this shared folder, taking into account both the folder and the team-wide policy. This value may differ from that of member_policy if the team-wide policy is more restrictive than the folder policy. Present only if the folder is owned by a team.
        viewerInfoPolicy - Who can enable/disable viewer info for this shared folder.
        Throws:
        java.lang.IllegalArgumentException - If any argument does not meet its preconditions.
      • FolderPolicy

        public FolderPolicy​(AclUpdatePolicy aclUpdatePolicy,
                            SharedLinkPolicy sharedLinkPolicy)
        A set of policies governing membership and privileges for a shared folder.

        The default values for unset fields will be used.

        Parameters:
        aclUpdatePolicy - Who can add and remove members from this shared folder. Must not be null.
        sharedLinkPolicy - Who links can be shared with. Must not be null.
        Throws:
        java.lang.IllegalArgumentException - If any argument does not meet its preconditions.
    • Method Detail

      • getAclUpdatePolicy

        public AclUpdatePolicy getAclUpdatePolicy()
        Who can add and remove members from this shared folder.
        Returns:
        value for this field, never null.
      • getSharedLinkPolicy

        public SharedLinkPolicy getSharedLinkPolicy()
        Who links can be shared with.
        Returns:
        value for this field, never null.
      • getMemberPolicy

        public MemberPolicy getMemberPolicy()
        Who can be a member of this shared folder, as set on the folder itself. The effective policy may differ from this value if the team-wide policy is more restrictive. Present only if the folder is owned by a team.
        Returns:
        value for this field, or null if not present.
      • getResolvedMemberPolicy

        public MemberPolicy getResolvedMemberPolicy()
        Who can be a member of this shared folder, taking into account both the folder and the team-wide policy. This value may differ from that of member_policy if the team-wide policy is more restrictive than the folder policy. Present only if the folder is owned by a team.
        Returns:
        value for this field, or null if not present.
      • getViewerInfoPolicy

        public ViewerInfoPolicy getViewerInfoPolicy()
        Who can enable/disable viewer info for this shared folder.
        Returns:
        value for this field, or null if not present.
      • newBuilder

        public static FolderPolicy.Builder newBuilder​(AclUpdatePolicy aclUpdatePolicy,
                                                      SharedLinkPolicy sharedLinkPolicy)
        Returns a new builder for creating an instance of this class.
        Parameters:
        aclUpdatePolicy - Who can add and remove members from this shared folder. Must not be null.
        sharedLinkPolicy - Who links can be shared with. Must not be null.
        Returns:
        builder for this class.
        Throws:
        java.lang.IllegalArgumentException - If any argument does not meet its preconditions.
      • 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