Package com.dropbox.core.v2.sharing
Class LinkMetadata
- java.lang.Object
- 
- com.dropbox.core.v2.sharing.LinkMetadata
 
- 
- Direct Known Subclasses:
- CollectionLinkMetadata,- PathLinkMetadata
 
 public class LinkMetadata extends java.lang.ObjectMetadata for a shared link. This can be either aPathLinkMetadataorCollectionLinkMetadata.
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.util.Dateexpiresprotected java.lang.Stringurlprotected Visibilityvisibility
 - 
Constructor SummaryConstructors Constructor Description LinkMetadata(java.lang.String url, Visibility visibility)Metadata for a shared link.LinkMetadata(java.lang.String url, Visibility visibility, java.util.Date expires)Metadata for a shared link.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.util.DategetExpires()Expiration time, if set.java.lang.StringgetUrl()URL of the shared link.VisibilitygetVisibility()Who can access the link.inthashCode()java.lang.StringtoString()java.lang.StringtoStringMultiline()Returns a String representation of this object formatted for easier readability.
 
- 
- 
- 
Field Detail- 
urlprotected final java.lang.String url 
 - 
visibilityprotected final Visibility visibility 
 - 
expiresprotected final java.util.Date expires 
 
- 
 - 
Constructor Detail- 
LinkMetadatapublic LinkMetadata(java.lang.String url, Visibility visibility, java.util.Date expires)Metadata for a shared link. This can be either aPathLinkMetadataorCollectionLinkMetadata.- Parameters:
- url- URL of the shared link. Must not be- null.
- visibility- Who can access the link. Must not be- null.
- expires- Expiration time, if set. By default the link won't expire.
- Throws:
- java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
 
 - 
LinkMetadatapublic LinkMetadata(java.lang.String url, Visibility visibility)Metadata for a shared link. This can be either aPathLinkMetadataorCollectionLinkMetadata.The default values for unset fields will be used. - Parameters:
- url- URL of the shared link. Must not be- null.
- visibility- Who can access the link. Must not be- null.
- Throws:
- java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
 
 
- 
 - 
Method Detail- 
getUrlpublic java.lang.String getUrl() URL of the shared link.- Returns:
- value for this field, never null.
 
 - 
getVisibilitypublic Visibility getVisibility() Who can access the link.- Returns:
- value for this field, never null.
 
 - 
getExpirespublic java.util.Date getExpires() Expiration time, if set. By default the link won't expire.- Returns:
- value for this field, or nullif not present.
 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- java.lang.Object
 
 - 
equalspublic boolean equals(java.lang.Object obj) - Overrides:
- equalsin class- java.lang.Object
 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Object
 
 - 
toStringMultilinepublic 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
 
 
- 
 
-