Uses of Class
com.atlassian.confluence.api.model.reference.Reference

Packages that use Reference
com.atlassian.confluence.api.impl.service.content.factory   
com.atlassian.confluence.api.impl.service.nav   
com.atlassian.confluence.api.model.content   
com.atlassian.confluence.api.model.reference   
com.atlassian.confluence.api.nav   
com.atlassian.confluence.plugins.contentproperty   
 

Uses of Reference in com.atlassian.confluence.api.impl.service.content.factory
 

Methods in com.atlassian.confluence.api.impl.service.content.factory that return Reference
 Reference<Version> VersionFactory.buildRef(AbstractLabelableEntityObject entity, Fauxpansions fauxpansions)
           
 Reference<History> HistoryFactory.buildRef(AbstractLabelableEntityObject entity, Reference<Content> contentReference, Fauxpansions fauxpansions)
           
 

Methods in com.atlassian.confluence.api.impl.service.content.factory with parameters of type Reference
 Reference<History> HistoryFactory.buildRef(AbstractLabelableEntityObject entity, Reference<Content> contentReference, Fauxpansions fauxpansions)
           
 

Uses of Reference in com.atlassian.confluence.api.impl.service.nav
 

Methods in com.atlassian.confluence.api.impl.service.nav with parameters of type Reference
 Navigation.ContentNav NavigationImpl.content(Reference<Content> contentReference)
           
 Navigation.Builder NavigationImpl.fromReference(Reference reference)
           
 Navigation.SpaceNav NavigationImpl.space(Reference<Space> space)
           
 

Uses of Reference in com.atlassian.confluence.api.model.content
 

Methods in com.atlassian.confluence.api.model.content that return Reference
static Reference<Content> Content.buildReference(ContentId id)
           
static Reference<Version> Version.buildReference(int number)
           
static Reference<JsonContentProperty> JsonContentProperty.buildReference(JsonContentPropertyId id)
          Creates a collapsed reference to a JsonContentProperty with the given id, or an empty reference, if none was given.
static Reference<History> History.buildReference(Reference<Content> contentParent)
           
static Reference<Version> Version.buildReference(Reference<Content> contentRef, int number)
          Deprecated. since 5.6 use Version.buildReference(int)
static Reference<Space> Space.buildReference(java.lang.String spaceKey)
          builds a collapsed reference to the space with the given spaceKey
 Reference<Content> History.getContentParentRef()
           
 Reference<Content> JsonContentProperty.getContentRef()
           
 Reference<Content> ContentBody.getContentRef()
           
 Reference<History> Content.getHistoryRef()
           
 Reference<Content> Space.getHomepageRef()
           
 Reference<Icon> Space.getIconRef()
           
 Reference<Version> History.getLastUpdatedRef()
           
 Reference<Version> History.getNextVersionRef()
           
static Reference<Content> History.getParentReference(Reference<History> historyReference)
           
 Reference<Version> History.getPreviousVersionRef()
           
 Reference<Space> Content.getSpaceRef()
           
 

Methods in com.atlassian.confluence.api.model.content that return types with arguments of type Reference
 java.util.Map<ContentRepresentation,Reference<FormattedBody>> Space.getDescriptionRefs()
          Deprecated. Since 5.5.1 Use Space.getDescription().
 

Methods in com.atlassian.confluence.api.model.content with parameters of type Reference
static Reference<History> History.buildReference(Reference<Content> contentParent)
           
static Reference<Version> Version.buildReference(Reference<Content> contentRef, int number)
          Deprecated. since 5.6 use Version.buildReference(int)
 JsonContentProperty.ContentPropertyBuilder JsonContentProperty.ContentPropertyBuilder.content(Reference<Content> contentRef)
           
 History.HistoryBuilder History.HistoryBuilder.content(Reference<Content> content)
           
 Space.SpaceBuilder Space.SpaceBuilder.description(ContentRepresentation representation, Reference<FormattedBody> formattedBody)
          Deprecated. 5.6 use Space.SpaceBuilder.description(ContentRepresentation,FormattedBody)
static ContentBody ContentBody.emptyBody(ContentRepresentation representation, Reference<Content> contentReference)
           
static ContentId Content.getContentId(Reference<Content> contentRef)
          Get the ContentId from a Content Reference.
static Reference<Content> History.getParentReference(Reference<History> historyReference)
           
static java.lang.String Space.getSpaceKey(Reference<Space> reference)
           
 Content.ContentBuilder Content.ContentBuilder.history(Reference<History> history)
           
 Space.SpaceBuilder Space.SpaceBuilder.homepage(Reference<Content> homepageRef)
           
 Space.SpaceBuilder Space.SpaceBuilder.icon(Reference<Icon> iconRef)
           
 History.HistoryBuilder History.HistoryBuilder.lastUpdated(Reference<Version> lastUpdated)
           
 History.HistoryBuilder History.HistoryBuilder.nextVersion(Reference<Version> nextVersion)
           
 History.HistoryBuilder History.HistoryBuilder.previousVersion(Reference<Version> previousVersion)
           
 Content.ContentBuilder Content.ContentBuilder.space(Reference<Space> space)
           
 JsonContentProperty.ContentPropertyBuilder JsonContentProperty.ContentPropertyBuilder.version(Reference<Version> version)
           
 Content.ContentBuilder Content.ContentBuilder.version(Reference<Version> version)
           
 

Constructors in com.atlassian.confluence.api.model.content with parameters of type Reference
ContentBody(ContentRepresentation representation, java.lang.String value, Reference<Content> contentReference)
           
 

Uses of Reference in com.atlassian.confluence.api.model.reference
 

Subclasses of Reference in com.atlassian.confluence.api.model.reference
 class ExpandedReference<T>
          An expanded reference has a value, call get() will return that referent value.
 

Methods in com.atlassian.confluence.api.model.reference that return Reference
static
<T> Reference<T>
Reference.collapsed(java.lang.Class objClass)
           
static
<T> Reference<T>
Reference.collapsed(java.lang.Class objClass, java.util.Map idProperties)
           
static
<T> Reference<T>
Reference.collapsed(T obj)
          Create a collapse reference to the given object.
static
<T> Reference<T>
Reference.empty(java.lang.Class<T> referrentClass)
          Create an empty reference to the given class.
static
<T> Reference<T>
Reference.orEmpty(Reference<T> reference, java.lang.Class<T> referentClass)
           
static
<T> Reference<T>
Reference.orEmpty(T entity, java.lang.Class<T> referentClass)
           
static
<T> Reference<T>
Reference.to(T value)
          Create an expanded reference to the referent value.
 

Methods in com.atlassian.confluence.api.model.reference with parameters of type Reference
static
<T> Reference<T>
Reference.orEmpty(Reference<T> reference, java.lang.Class<T> referentClass)
           
 

Uses of Reference in com.atlassian.confluence.api.nav
 

Methods in com.atlassian.confluence.api.nav with parameters of type Reference
 Navigation.ContentNav Navigation.content(Reference<Content> contentReference)
          create a content nav builder to reference a piece of content
 Navigation.ExperimentalContentNav Navigation.ExperimentalNav.content(Reference<Content> contentReference)
          create a content nav builder to reference a piece of content
 Navigation.Builder Navigation.fromReference(Reference<?> reference)
           
 Navigation.SpaceNav Navigation.space(Reference<Space> spaceReference)
          create a space nav builder to reference the given space
 

Uses of Reference in com.atlassian.confluence.plugins.contentproperty
 

Methods in com.atlassian.confluence.plugins.contentproperty that return Reference
 Reference<Version> ContentPropertyFactory.makeVersion(ContentEntityObject entity, boolean expanded)
           
 



Copyright © 2003-2014 Atlassian. All Rights Reserved.