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 Summary
Fields Modifier and Type Field Description protected java.util.Dateexpiresprotected java.lang.Stringurlprotected Visibilityvisibility
-
Constructor Summary
Constructors 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 Summary
All 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
-
url
protected final java.lang.String url
-
visibility
protected final Visibility visibility
-
expires
protected final java.util.Date expires
-
-
Constructor Detail
-
LinkMetadata
public 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 benull.visibility- Who can access the link. Must not benull.expires- Expiration time, if set. By default the link won't expire.- Throws:
java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
-
LinkMetadata
public 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 benull.visibility- Who can access the link. Must not benull.- 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.- Returns:
- value for this field, never
null.
-
getVisibility
public Visibility getVisibility()
Who can access the link.- Returns:
- value for this field, never
null.
-
getExpires
public java.util.Date getExpires()
Expiration time, if set. By default the link won't expire.- Returns:
- value for this field, or
nullif not present.
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.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
-
-