Package com.gooddata.md
Class Entry
- java.lang.Object
-
- com.gooddata.md.Entry
-
public class Entry extends Object
Metadata entry (can be named "LINK" in some API docs)
-
-
Constructor Summary
Constructors Constructor Description Entry(String uri, String title, String summary, String category, String author, String contributor, Boolean deprecated, String identifier, Set<String> tags, org.joda.time.DateTime created, org.joda.time.DateTime updated, Boolean locked, Boolean unlisted)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description StringgetAuthor()StringgetCategory()StringgetContributor()org.joda.time.DateTimegetCreated()BooleangetDeprecated()StringgetId()Returns internally generated ID of the object (that's part of the object URI).StringgetIdentifier()Returns user-specified identifier of the object.StringgetLink()Deprecated.usegetUri()insteadBooleangetLocked()StringgetSummary()Set<String>getTags()StringgetTitle()BooleangetUnlisted()org.joda.time.DateTimegetUpdated()StringgetUri()booleanisDeprecated()booleanisLocked()booleanisUnlisted()StringtoString()
-
-
-
Method Detail
-
getLink
@Deprecated public String getLink()
Deprecated.usegetUri()instead- Returns:
- self URI string
-
getId
public String getId()
Returns internally generated ID of the object (that's part of the object URI).- Returns:
- internal ID of the object
-
getUri
public String getUri()
-
getTitle
public String getTitle()
-
getSummary
public String getSummary()
-
getCategory
public String getCategory()
-
getAuthor
public String getAuthor()
-
getContributor
public String getContributor()
-
isDeprecated
public boolean isDeprecated()
- Returns:
- true if the deprecated is set and is true
-
getDeprecated
public Boolean getDeprecated()
-
getIdentifier
public String getIdentifier()
Returns user-specified identifier of the object.- Returns:
- user-specified object identifier
-
getCreated
public org.joda.time.DateTime getCreated()
-
getUpdated
public org.joda.time.DateTime getUpdated()
-
isLocked
public boolean isLocked()
- Returns:
- true if the locked is set and is true
-
getLocked
public Boolean getLocked()
-
isUnlisted
public boolean isUnlisted()
- Returns:
- true if the unlisted is set and is true
-
getUnlisted
public Boolean getUnlisted()
-
-