Class FileLinkMetadata


  • public class FileLinkMetadata
    extends SharedLinkMetadata
    The metadata of a file shared link.
    • Field Detail

      • clientModified

        protected final java.util.Date clientModified
      • serverModified

        protected final java.util.Date serverModified
      • rev

        protected final java.lang.String rev
      • size

        protected final long size
    • Constructor Detail

      • FileLinkMetadata

        public FileLinkMetadata​(java.lang.String url,
                                java.lang.String name,
                                LinkPermissions linkPermissions,
                                java.util.Date clientModified,
                                java.util.Date serverModified,
                                java.lang.String rev,
                                long size,
                                java.lang.String id,
                                java.util.Date expires,
                                java.lang.String pathLower,
                                TeamMemberInfo teamMemberInfo,
                                Team contentOwnerTeamInfo)
        The metadata of a file shared link.

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

        Parameters:
        url - URL of the shared link. Must not be null.
        name - The linked file name (including extension). This never contains a slash. Must not be null.
        linkPermissions - The link's access permissions. Must not be null.
        clientModified - The modification time set by the desktop client when the file was added to Dropbox. Since this time is not verified (the Dropbox server stores whatever the desktop client sends up), this should only be used for display purposes (such as sorting) and not, for example, to determine if a file has changed or not. Must not be null.
        serverModified - The last time the file was modified on Dropbox. Must not be null.
        rev - A unique identifier for the current revision of a file. This field is the same rev as elsewhere in the API and can be used to detect changes and avoid conflicts. Must have length of at least 9, match pattern "[0-9a-f]+", and not be null.
        size - The file size in bytes.
        id - A unique identifier for the linked file. Must have length of at least 1.
        expires - Expiration time, if set. By default the link won't expire.
        pathLower - The lowercased full path in the user's Dropbox. This always starts with a slash. This field will only be present only if the linked file is in the authenticated user's dropbox.
        teamMemberInfo - The team membership information of the link's owner. This field will only be present if the link's owner is a team member.
        contentOwnerTeamInfo - The team information of the content's owner. This field will only be present if the content's owner is a team member and the content's owner team is different from the link's owner team.
        Throws:
        java.lang.IllegalArgumentException - If any argument does not meet its preconditions.
      • FileLinkMetadata

        public FileLinkMetadata​(java.lang.String url,
                                java.lang.String name,
                                LinkPermissions linkPermissions,
                                java.util.Date clientModified,
                                java.util.Date serverModified,
                                java.lang.String rev,
                                long size)
        The metadata of a file shared link.

        The default values for unset fields will be used.

        Parameters:
        url - URL of the shared link. Must not be null.
        name - The linked file name (including extension). This never contains a slash. Must not be null.
        linkPermissions - The link's access permissions. Must not be null.
        clientModified - The modification time set by the desktop client when the file was added to Dropbox. Since this time is not verified (the Dropbox server stores whatever the desktop client sends up), this should only be used for display purposes (such as sorting) and not, for example, to determine if a file has changed or not. Must not be null.
        serverModified - The last time the file was modified on Dropbox. Must not be null.
        rev - A unique identifier for the current revision of a file. This field is the same rev as elsewhere in the API and can be used to detect changes and avoid conflicts. Must have length of at least 9, match pattern "[0-9a-f]+", and not be null.
        size - The file size in bytes.
        Throws:
        java.lang.IllegalArgumentException - If any argument does not meet its preconditions.
    • Method Detail

      • getUrl

        public java.lang.String getUrl()
        URL of the shared link.
        Overrides:
        getUrl in class SharedLinkMetadata
        Returns:
        value for this field, never null.
      • getName

        public java.lang.String getName()
        The linked file name (including extension). This never contains a slash.
        Overrides:
        getName in class SharedLinkMetadata
        Returns:
        value for this field, never null.
      • getClientModified

        public java.util.Date getClientModified()
        The modification time set by the desktop client when the file was added to Dropbox. Since this time is not verified (the Dropbox server stores whatever the desktop client sends up), this should only be used for display purposes (such as sorting) and not, for example, to determine if a file has changed or not.
        Returns:
        value for this field, never null.
      • getServerModified

        public java.util.Date getServerModified()
        The last time the file was modified on Dropbox.
        Returns:
        value for this field, never null.
      • getRev

        public java.lang.String getRev()
        A unique identifier for the current revision of a file. This field is the same rev as elsewhere in the API and can be used to detect changes and avoid conflicts.
        Returns:
        value for this field, never null.
      • getSize

        public long getSize()
        The file size in bytes.
        Returns:
        value for this field.
      • getId

        public java.lang.String getId()
        A unique identifier for the linked file.
        Overrides:
        getId in class SharedLinkMetadata
        Returns:
        value for this field, or null if not present.
      • getExpires

        public java.util.Date getExpires()
        Expiration time, if set. By default the link won't expire.
        Overrides:
        getExpires in class SharedLinkMetadata
        Returns:
        value for this field, or null if not present.
      • getPathLower

        public java.lang.String getPathLower()
        The lowercased full path in the user's Dropbox. This always starts with a slash. This field will only be present only if the linked file is in the authenticated user's dropbox.
        Overrides:
        getPathLower in class SharedLinkMetadata
        Returns:
        value for this field, or null if not present.
      • getTeamMemberInfo

        public TeamMemberInfo getTeamMemberInfo()
        The team membership information of the link's owner. This field will only be present if the link's owner is a team member.
        Overrides:
        getTeamMemberInfo in class SharedLinkMetadata
        Returns:
        value for this field, or null if not present.
      • getContentOwnerTeamInfo

        public Team getContentOwnerTeamInfo()
        The team information of the content's owner. This field will only be present if the content's owner is a team member and the content's owner team is different from the link's owner team.
        Overrides:
        getContentOwnerTeamInfo in class SharedLinkMetadata
        Returns:
        value for this field, or null if not present.
      • newBuilder

        public static FileLinkMetadata.Builder newBuilder​(java.lang.String url,
                                                          java.lang.String name,
                                                          LinkPermissions linkPermissions,
                                                          java.util.Date clientModified,
                                                          java.util.Date serverModified,
                                                          java.lang.String rev,
                                                          long size)
        Returns a new builder for creating an instance of this class.
        Parameters:
        url - URL of the shared link. Must not be null.
        name - The linked file name (including extension). This never contains a slash. Must not be null.
        linkPermissions - The link's access permissions. Must not be null.
        clientModified - The modification time set by the desktop client when the file was added to Dropbox. Since this time is not verified (the Dropbox server stores whatever the desktop client sends up), this should only be used for display purposes (such as sorting) and not, for example, to determine if a file has changed or not. Must not be null.
        serverModified - The last time the file was modified on Dropbox. Must not be null.
        rev - A unique identifier for the current revision of a file. This field is the same rev as elsewhere in the API and can be used to detect changes and avoid conflicts. Must have length of at least 9, match pattern "[0-9a-f]+", and not be null.
        size - The file size in bytes.
        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 SharedLinkMetadata
        Returns:
        Formatted, multiline String representation of this object