Class SharedFolderMetadata


  • public class SharedFolderMetadata
    extends SharedFolderMetadataBase
    The metadata which includes basic information about the shared folder.
    • Field Detail

      • name

        protected final java.lang.String name
      • previewUrl

        protected final java.lang.String previewUrl
      • sharedFolderId

        protected final java.lang.String sharedFolderId
      • timeInvited

        protected final java.util.Date timeInvited
    • Constructor Detail

      • SharedFolderMetadata

        public SharedFolderMetadata​(AccessLevel accessType,
                                    boolean isInsideTeamFolder,
                                    boolean isTeamFolder,
                                    java.lang.String name,
                                    FolderPolicy policy,
                                    java.lang.String previewUrl,
                                    java.lang.String sharedFolderId,
                                    java.util.Date timeInvited,
                                    java.util.List<java.lang.String> ownerDisplayNames,
                                    Team ownerTeam,
                                    java.lang.String parentSharedFolderId,
                                    java.lang.String pathLower,
                                    java.lang.String parentFolderName,
                                    SharedContentLinkMetadata linkMetadata,
                                    java.util.List<FolderPermission> permissions,
                                    AccessInheritance accessInheritance)
        The metadata which includes basic information about the shared folder.

        Use newBuilder(com.dropbox.core.v2.sharing.AccessLevel,boolean,boolean,java.lang.String,com.dropbox.core.v2.sharing.FolderPolicy,java.lang.String,java.lang.String,java.util.Date) to create instances of this class without specifying values for all optional fields.

        Parameters:
        accessType - The current user's access level for this shared folder. Must not be null.
        isInsideTeamFolder - Whether this folder is inside of a team folder.
        isTeamFolder - Whether this folder is a team folder.
        name - The name of the this shared folder. Must not be null.
        policy - Policies governing this shared folder. Must not be null.
        previewUrl - URL for displaying a web preview of the shared folder. Must not be null.
        sharedFolderId - The ID of the shared folder. Must match pattern "[-_0-9a-zA-Z:]+" and not be null.
        timeInvited - Timestamp indicating when the current user was invited to this shared folder. Must not be null.
        ownerDisplayNames - The display names of the users that own the folder. If the folder is part of a team folder, the display names of the team admins are also included. Absent if the owner display names cannot be fetched. Must not contain a null item.
        ownerTeam - The team that owns the folder. This field is not present if the folder is not owned by a team.
        parentSharedFolderId - The ID of the parent shared folder. This field is present only if the folder is contained within another shared folder. Must match pattern "[-_0-9a-zA-Z:]+".
        pathLower - The lower-cased full path of this shared folder. Absent for unmounted folders.
        parentFolderName - Display name for the parent folder.
        linkMetadata - The metadata of the shared content link to this shared folder. Absent if there is no link on the folder. This is for an unreleased feature so it may not be returned yet.
        permissions - Actions the current user may perform on the folder and its contents. The set of permissions corresponds to the FolderActions in the request. Must not contain a null item.
        accessInheritance - Whether the folder inherits its members from its parent. Must not be null.
        Throws:
        java.lang.IllegalArgumentException - If any argument does not meet its preconditions.
      • SharedFolderMetadata

        public SharedFolderMetadata​(AccessLevel accessType,
                                    boolean isInsideTeamFolder,
                                    boolean isTeamFolder,
                                    java.lang.String name,
                                    FolderPolicy policy,
                                    java.lang.String previewUrl,
                                    java.lang.String sharedFolderId,
                                    java.util.Date timeInvited)
        The metadata which includes basic information about the shared folder.

        The default values for unset fields will be used.

        Parameters:
        accessType - The current user's access level for this shared folder. Must not be null.
        isInsideTeamFolder - Whether this folder is inside of a team folder.
        isTeamFolder - Whether this folder is a team folder.
        name - The name of the this shared folder. Must not be null.
        policy - Policies governing this shared folder. Must not be null.
        previewUrl - URL for displaying a web preview of the shared folder. Must not be null.
        sharedFolderId - The ID of the shared folder. Must match pattern "[-_0-9a-zA-Z:]+" and not be null.
        timeInvited - Timestamp indicating when the current user was invited to this shared folder. Must not be null.
        Throws:
        java.lang.IllegalArgumentException - If any argument does not meet its preconditions.
    • Method Detail

      • getName

        public java.lang.String getName()
        The name of the this shared folder.
        Returns:
        value for this field, never null.
      • getPolicy

        public FolderPolicy getPolicy()
        Policies governing this shared folder.
        Returns:
        value for this field, never null.
      • getPreviewUrl

        public java.lang.String getPreviewUrl()
        URL for displaying a web preview of the shared folder.
        Returns:
        value for this field, never null.
      • getSharedFolderId

        public java.lang.String getSharedFolderId()
        The ID of the shared folder.
        Returns:
        value for this field, never null.
      • getTimeInvited

        public java.util.Date getTimeInvited()
        Timestamp indicating when the current user was invited to this shared folder.
        Returns:
        value for this field, never null.
      • getOwnerDisplayNames

        public java.util.List<java.lang.String> getOwnerDisplayNames()
        The display names of the users that own the folder. If the folder is part of a team folder, the display names of the team admins are also included. Absent if the owner display names cannot be fetched.
        Overrides:
        getOwnerDisplayNames in class SharedFolderMetadataBase
        Returns:
        value for this field, or null if not present.
      • getOwnerTeam

        public Team getOwnerTeam()
        The team that owns the folder. This field is not present if the folder is not owned by a team.
        Overrides:
        getOwnerTeam in class SharedFolderMetadataBase
        Returns:
        value for this field, or null if not present.
      • getParentSharedFolderId

        public java.lang.String getParentSharedFolderId()
        The ID of the parent shared folder. This field is present only if the folder is contained within another shared folder.
        Overrides:
        getParentSharedFolderId in class SharedFolderMetadataBase
        Returns:
        value for this field, or null if not present.
      • getPathLower

        public java.lang.String getPathLower()
        The lower-cased full path of this shared folder. Absent for unmounted folders.
        Overrides:
        getPathLower in class SharedFolderMetadataBase
        Returns:
        value for this field, or null if not present.
      • getParentFolderName

        public java.lang.String getParentFolderName()
        Display name for the parent folder.
        Overrides:
        getParentFolderName in class SharedFolderMetadataBase
        Returns:
        value for this field, or null if not present.
      • getLinkMetadata

        public SharedContentLinkMetadata getLinkMetadata()
        The metadata of the shared content link to this shared folder. Absent if there is no link on the folder. This is for an unreleased feature so it may not be returned yet.
        Returns:
        value for this field, or null if not present.
      • getPermissions

        public java.util.List<FolderPermission> getPermissions()
        Actions the current user may perform on the folder and its contents. The set of permissions corresponds to the FolderActions in the request.
        Returns:
        value for this field, or null if not present.
      • getAccessInheritance

        public AccessInheritance getAccessInheritance()
        Whether the folder inherits its members from its parent.
        Returns:
        value for this field, or null if not present. Defaults to AccessInheritance.INHERIT.
      • newBuilder

        public static SharedFolderMetadata.Builder newBuilder​(AccessLevel accessType,
                                                              boolean isInsideTeamFolder,
                                                              boolean isTeamFolder,
                                                              java.lang.String name,
                                                              FolderPolicy policy,
                                                              java.lang.String previewUrl,
                                                              java.lang.String sharedFolderId,
                                                              java.util.Date timeInvited)
        Returns a new builder for creating an instance of this class.
        Parameters:
        accessType - The current user's access level for this shared folder. Must not be null.
        isInsideTeamFolder - Whether this folder is inside of a team folder.
        isTeamFolder - Whether this folder is a team folder.
        name - The name of the this shared folder. Must not be null.
        policy - Policies governing this shared folder. Must not be null.
        previewUrl - URL for displaying a web preview of the shared folder. Must not be null.
        sharedFolderId - The ID of the shared folder. Must match pattern "[-_0-9a-zA-Z:]+" and not be null.
        timeInvited - Timestamp indicating when the current user was invited to this shared folder. Must not be null.
        Returns:
        builder for this class.
        Throws:
        java.lang.IllegalArgumentException - If any argument does not meet its preconditions.
      • toStringMultiline

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

        The returned String may contain newlines.

        Overrides:
        toStringMultiline in class SharedFolderMetadataBase
        Returns:
        Formatted, multiline String representation of this object