Uses of Class
com.atlassian.confluence.api.model.content.ContentType

Packages that use ContentType
com.atlassian.confluence.api.extension.typebinding   
com.atlassian.confluence.api.impl.service.content   
com.atlassian.confluence.api.impl.service.content.factory   
com.atlassian.confluence.api.impl.service.content.finder   
com.atlassian.confluence.api.impl.service.content.typebinding   
com.atlassian.confluence.api.impl.service.nav   
com.atlassian.confluence.api.model.content   
com.atlassian.confluence.api.model.content.id   
com.atlassian.confluence.api.model.locator   
com.atlassian.confluence.api.nav   
com.atlassian.confluence.api.service.content   
com.atlassian.confluence.it   
com.atlassian.confluence.plugins.like.notifications   
com.atlassian.confluence.rest.client   
com.atlassian.confluence.rest.resources   
 

Uses of ContentType in com.atlassian.confluence.api.extension.typebinding
 

Methods in com.atlassian.confluence.api.extension.typebinding that return ContentType
 ContentType ContentTypeBinding.getHandledType()
           
 ContentType AbstractContentTypeBinding.getHandledType()
           
 

Methods in com.atlassian.confluence.api.extension.typebinding with parameters of type ContentType
 boolean ContentTypeBinding.handlesParentType(ContentType parentType)
           
 boolean AbstractContentTypeBinding.handlesParentType(ContentType type)
           
 

Constructors in com.atlassian.confluence.api.extension.typebinding with parameters of type ContentType
AbstractContentTypeBinding(ContentType handledType, java.util.Set<ContentType> parentTypes)
           
 

Constructor parameters in com.atlassian.confluence.api.extension.typebinding with type arguments of type ContentType
AbstractContentTypeBinding(ContentType handledType, java.util.Set<ContentType> parentTypes)
           
 

Uses of ContentType in com.atlassian.confluence.api.impl.service.content
 

Methods in com.atlassian.confluence.api.impl.service.content that return types with arguments of type ContentType
 java.util.Map<ContentType,PageResponse<Content>> SpaceServiceImpl.SpaceContentImpl.fetchMappedByType(PageRequest pageRequest)
           
 

Methods in com.atlassian.confluence.api.impl.service.content with parameters of type ContentType
 PageResponse<Content> SpaceServiceImpl.SpaceContentImpl.fetchMany(ContentType type, PageRequest pageRequest)
           
 

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

Methods in com.atlassian.confluence.api.impl.service.content.factory that return types with arguments of type ContentType
 java.util.Map<ContentType,PageResponse<Content>> ChildContentFactory.buildFrom(Content parent, Depth depth, Fauxpansions fauxpansions)
           
 java.util.Map<ContentType,PageResponse<Content>> ChildSupport.getChildrenMap(Content parent, LimitedRequest limitedRequest, Expansions childExpansions, Depth depth)
          Called from the ContentFactory when expanding "children" on a Content item being built.
 

Methods in com.atlassian.confluence.api.impl.service.content.factory with parameters of type ContentType
 PageResponse<Content> ChildSupport.getChildrenList(Content parent, ContentType childType, LimitedRequest limitedRequest, Expansions expansions, Depth depth)
           
 

Uses of ContentType in com.atlassian.confluence.api.impl.service.content.finder
 

Methods in com.atlassian.confluence.api.impl.service.content.finder with parameters of type ContentType
static com.google.common.base.Predicate<? super AbstractLabelableEntityObject> FinderPredicates.createContentTypePredicate(ContentType... types)
           
 

Uses of ContentType in com.atlassian.confluence.api.impl.service.content.typebinding
 

Methods in com.atlassian.confluence.api.impl.service.content.typebinding that return ContentType
 ContentType CommentContentTypeBinding.getHandledType()
           
 

Methods in com.atlassian.confluence.api.impl.service.content.typebinding that return types with arguments of type ContentType
 java.util.Map<ContentType,ContentTypeBinding> ContentTypeBindingProvider.getMap()
           
 

Methods in com.atlassian.confluence.api.impl.service.content.typebinding with parameters of type ContentType
 ContentTypeBinding ContentTypeBindingProvider.getForType(ContentType type)
           
 boolean CommentContentTypeBinding.handlesParentType(ContentType type)
           
 

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

Methods in com.atlassian.confluence.api.impl.service.nav with parameters of type ContentType
 Navigation.Builder ContentNavImpl.children(ContentType type, Depth depth)
           
 Navigation.Builder SpaceNavBuilderImpl.SpaceContentNavImpl.type(ContentType type)
           
 

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

Fields in com.atlassian.confluence.api.model.content declared as ContentType
static ContentType ContentType.ATTACHMENT
           
static ContentType ContentType.BLOG_POST
           
static ContentType ContentType.COMMENT
           
static ContentType ContentType.PAGE
           
 

Fields in com.atlassian.confluence.api.model.content with type parameters of type ContentType
static java.util.List<ContentType> ContentType.BUILT_IN
           
 

Methods in com.atlassian.confluence.api.model.content that return ContentType
 ContentType Content.getType()
           
static ContentType ContentType.valueOf(java.lang.String type)
          Return the ContentType for the given type string.
 

Methods in com.atlassian.confluence.api.model.content that return types with arguments of type ContentType
 java.util.Map<ContentType,PageResponse<Content>> Content.getChildren()
          Returns a map of the immediate sub-content of this Content, split by ContentType.
 java.util.Map<ContentType,PageResponse<Content>> Content.getDescendants()
          Returns a map of all sub-content of this Content, at any depth, split by ContentType.
static java.util.Set<ContentType> ContentType.valuesOf(java.lang.Iterable<java.lang.String> types)
          Return the ContentTypes for the given set of type strings.
 

Methods in com.atlassian.confluence.api.model.content with parameters of type ContentType
static Content.ContentBuilder Content.builder(ContentType type)
          Returns a Content.ContentBuilder instance that can be used to create a new Content object.
static Content.ContentBuilder Content.builder(ContentType type, long id)
          Returns a Content.ContentBuilder instance that can be used to create a new Content object.
 Content.ContentBuilder Content.ContentBuilder.type(ContentType type)
           
 

Method parameters in com.atlassian.confluence.api.model.content with type arguments of type ContentType
 Content.ContentBuilder Content.ContentBuilder.children(java.util.Map<ContentType,PageResponse<Content>> children)
           
 Content.ContentBuilder Content.ContentBuilder.descendants(java.util.Map<ContentType,PageResponse<Content>> descendants)
           
 

Constructors in com.atlassian.confluence.api.model.content with parameters of type ContentType
Content.ContentBuilder(ContentType type)
          Create new builders with Content.builder(ContentType).
Content.ContentBuilder(ContentType type, long id)
          Create new builders with Content.builder(ContentType) and a ContentId generated from the ContentType and the Long id.
 

Uses of ContentType in com.atlassian.confluence.api.model.content.id
 

Methods in com.atlassian.confluence.api.model.content.id with parameters of type ContentType
static ContentId ContentId.of(ContentType type, long id)
           
 

Uses of ContentType in com.atlassian.confluence.api.model.locator
 

Methods in com.atlassian.confluence.api.model.locator that return ContentType
 ContentType[] ContentLocator.getContentTypes()
           
 

Methods in com.atlassian.confluence.api.model.locator with parameters of type ContentType
 boolean ContentLocator.isForContent(ContentType contentType)
           
 

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

Methods in com.atlassian.confluence.api.nav with parameters of type ContentType
 Navigation.Builder Navigation.ContentNav.children(ContentType type, Depth depth)
           
 Navigation.Builder Navigation.SpaceContentNav.type(ContentType type)
           
 

Uses of ContentType in com.atlassian.confluence.api.service.content
 

Methods in com.atlassian.confluence.api.service.content that return types with arguments of type ContentType
 java.util.Map<ContentType,PageResponse<Content>> ContentService.ContentFetcher.fetchMappedByContentType(PageRequest request)
           
 java.util.Map<ContentType,PageResponse<Content>> SpaceService.SpaceContentFinder.fetchMappedByType(PageRequest request)
          Retrieve all content contained in this space mapped by ContentType
 java.util.Map<ContentType,PageResponse<Content>> ChildContentService.ChildContentFinder.fetchMappedByType(PageRequest request)
          Retrieve all content contained in this parent mapped by ContentType.
 

Methods in com.atlassian.confluence.api.service.content with parameters of type ContentType
 PageResponse<Content> SpaceService.SpaceContentFinder.fetchMany(ContentType type, PageRequest request)
          Retrieve all content contained in this space of the particular type
 PageResponse<Content> ContentService.ContentFetcher.fetchMany(ContentType type, PageRequest request)
           
 PageResponse<Content> ChildContentService.ChildContentFinder.fetchMany(ContentType type, PageRequest request)
          Retrieve all content of the particular type contained in this parent.
 ContentService.ParameterContentFinder ContentService.ParameterContentFinder.withType(ContentType... type)
          Restrict the fetched content to those matching the given contentType
 

Uses of ContentType in com.atlassian.confluence.it
 

Methods in com.atlassian.confluence.it that return ContentType
 ContentType Page.getContentType()
           
 ContentType ContentEntity.getContentType()
           
 ContentType Comment.getContentType()
           
 ContentType BlogPost.getContentType()
           
 ContentType AbstractContentEntity.getContentType()
           
 

Uses of ContentType in com.atlassian.confluence.plugins.like.notifications
 

Methods in com.atlassian.confluence.plugins.like.notifications that return ContentType
 ContentType LikePayload.getContentType()
           
 

Uses of ContentType in com.atlassian.confluence.rest.client
 

Methods in com.atlassian.confluence.rest.client that return types with arguments of type ContentType
 com.atlassian.util.concurrent.Promise<java.util.Map<ContentType,PageResponse<Content>>> RemoteContentServiceImpl.RemoteContentFinderImpl.fetchMappedByContentType(PageRequest request)
           
 com.atlassian.util.concurrent.Promise<java.util.Map<ContentType,PageResponse<Content>>> RemoteContentService.RemoteContentFetcher.fetchMappedByContentType(PageRequest request)
           
 com.atlassian.util.concurrent.Promise<java.util.Map<ContentType,PageResponse<Content>>> RemoteSpaceServiceImpl.RemoteSpaceContentFinderImpl.fetchMappedByType(PageRequest request)
           
 com.atlassian.util.concurrent.Promise<java.util.Map<ContentType,PageResponse<Content>>> RemoteSpaceService.RemoteSpaceContentFinder.fetchMappedByType(PageRequest request)
          Retrieve the all content contained in this space.
 com.atlassian.util.concurrent.Promise<java.util.Map<ContentType,PageResponse<Content>>> RemoteChildContentServiceImpl.RemoteChildContentFinderImpl.fetchMappedByType(PageRequest request)
           
 com.atlassian.util.concurrent.Promise<java.util.Map<ContentType,PageResponse<Content>>> RemoteChildContentService.RemoteChildContentFinder.fetchMappedByType(PageRequest request)
          Retrieve the content contained in this parent.
 

Methods in com.atlassian.confluence.rest.client with parameters of type ContentType
 com.atlassian.util.concurrent.Promise<PageResponse<Content>> RemoteSpaceServiceImpl.RemoteSpaceContentFinderImpl.fetchMany(ContentType type, PageRequest request)
           
 com.atlassian.util.concurrent.Promise<PageResponse<Content>> RemoteSpaceService.RemoteSpaceContentFinder.fetchMany(ContentType type, PageRequest request)
          Retrieve a paged list of content of the given type contained in this space
 com.atlassian.util.concurrent.Promise<PageResponse<Content>> RemoteContentServiceImpl.RemoteContentFinderImpl.fetchMany(ContentType type, PageRequest request)
           
 com.atlassian.util.concurrent.Promise<PageResponse<Content>> RemoteContentService.RemoteContentFetcher.fetchMany(ContentType type, PageRequest request)
           
 com.atlassian.util.concurrent.Promise<PageResponse<Content>> RemoteChildContentServiceImpl.RemoteChildContentFinderImpl.fetchMany(ContentType type, PageRequest request)
           
 com.atlassian.util.concurrent.Promise<PageResponse<Content>> RemoteChildContentService.RemoteChildContentFinder.fetchMany(ContentType type, PageRequest request)
          Retrieve a paged list of content of the given type contained in this parent
 RemoteContentService.RemoteParameterContentFinder RemoteContentServiceImpl.RemoteContentFinderImpl.withType(ContentType... types)
           
 RemoteContentService.RemoteParameterContentFinder RemoteContentService.RemoteParameterContentFinder.withType(ContentType... type)
           
 

Uses of ContentType in com.atlassian.confluence.rest.resources
 

Methods in com.atlassian.confluence.rest.resources that return types with arguments of type ContentType
 java.util.Map<ContentType,PageResponse<Content>> ChildContentResource.children(ContentId contentId, java.lang.String expand, javax.ws.rs.core.UriInfo uriInfo)
          Returns a map of the direct children of a piece of Content.
 java.util.Map<ContentType,RestList<Content>> SpaceResource.contents(java.lang.String spaceKey, java.lang.String depth, java.lang.String expand, int start, int limit)
          Returns the content in this given space
 java.util.Map<ContentType,PageResponse<Content>> DescendantContentResource.descendants(ContentId contentId, java.lang.String expand, javax.ws.rs.core.UriInfo uriInfo)
          Returns a map of the descendants of a piece of Content.
 

Methods in com.atlassian.confluence.rest.resources with parameters of type ContentType
 RestList<Content> ChildContentResource.childrenOfType(ContentId contentId, ContentType type, java.lang.String expand, int start, int limit, javax.ws.rs.core.UriInfo uriInfo)
          Returns the direct children of a piece of Content, limited to a single child type.
 RestList<Content> DescendantContentResource.descendantsOfType(ContentId contentId, ContentType type, java.lang.String expand, int start, int limit, javax.ws.rs.core.UriInfo uriInfo)
          Returns the direct descendants of a piece of Content, limited to a single descendant type.
 



Copyright © 2003-2014 Atlassian. All Rights Reserved.