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

Packages that use Space
com.atlassian.confluence.api.impl.service.content   
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.nav   
com.atlassian.confluence.api.service.content   
com.atlassian.confluence.it.api   
com.atlassian.confluence.rest.client   
com.atlassian.confluence.rest.resources   
 

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

Methods in com.atlassian.confluence.api.impl.service.content that return Space
 Space SpaceServiceImpl.create(Space space, boolean isPrivate)
           
 Space SpaceServiceImpl.update(Space space)
           
 

Methods in com.atlassian.confluence.api.impl.service.content that return types with arguments of type Space
 PageResponse<Space> SpaceServiceImpl.SpaceFinderImpl.fetchMany(PageRequest request)
           
 com.atlassian.fugue.Option<Space> SpaceServiceImpl.SpaceFinderImpl.fetchOne()
           
 com.atlassian.fugue.Option<Space> SpaceServiceImpl.getSpace(java.lang.String spaceKey, Expansion... expansions)
          Deprecated. 
 

Methods in com.atlassian.confluence.api.impl.service.content with parameters of type Space
 Space SpaceServiceImpl.create(Space space, boolean isPrivate)
           
 LongTaskSubmission SpaceServiceImpl.delete(Space spaceToDelete)
           
 SpaceService.SpaceContentFinder SpaceServiceImpl.findContent(Space space, Expansion... expansions)
           
 Space SpaceServiceImpl.update(Space space)
           
 ValidationResult SpaceServiceImpl.ValidatorImpl.validateCreate(Space space, boolean isPrivate)
           
 ValidationResult SpaceServiceImpl.ValidatorImpl.validateDelete(Space space)
           
 ValidationResult SpaceServiceImpl.ValidatorImpl.validateUpdate(Space space)
           
 

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

Methods in com.atlassian.confluence.api.impl.service.content.factory that return Space
 Space SpaceFactory.buildFrom(Space space, Expansions expansions)
           
 Space SpaceFactory.buildFrom(java.lang.String spaceKey, Expansions expansions)
           
 

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

Methods in com.atlassian.confluence.api.impl.service.nav with parameters of type Space
 Navigation.Builder NavigationImpl.collection(Space spaceData)
           
 Navigation.SpaceNav NavigationImpl.space(Space space)
           
 

Method parameters in com.atlassian.confluence.api.impl.service.nav with type arguments of type Space
 Navigation.SpaceNav NavigationImpl.space(Reference<Space> space)
           
 

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

Methods in com.atlassian.confluence.api.model.content that return Space
 Space Space.SpaceBuilder.build()
           
 Space Content.getSpace()
           
 

Methods in com.atlassian.confluence.api.model.content that return types with arguments of type Space
static Reference<Space> Space.buildReference(java.lang.String spaceKey)
          builds a collapsed reference to the space with the given spaceKey
 Reference<Space> Content.getSpaceRef()
           
 

Methods in com.atlassian.confluence.api.model.content with parameters of type Space
static Space.SpaceBuilder Space.builder(Space space)
           
 Content.ContentBuilder Content.ContentBuilder.space(Space space)
           
 

Method parameters in com.atlassian.confluence.api.model.content with type arguments of type Space
static java.lang.String Space.getSpaceKey(Reference<Space> reference)
           
 Content.ContentBuilder Content.ContentBuilder.space(Reference<Space> space)
           
 

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

Methods in com.atlassian.confluence.api.nav with parameters of type Space
 Navigation.Builder Navigation.collection(Space space)
          a builder to produce a URL to the collection that the space belongs to.
 Navigation.SpaceNav Navigation.space(Space space)
          create a space nav builder to reference the given space
 

Method parameters in com.atlassian.confluence.api.nav with type arguments of type Space
 Navigation.SpaceNav Navigation.space(Reference<Space> spaceReference)
          create a space nav builder to reference the given space
 

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

Methods in com.atlassian.confluence.api.service.content that return Space
 Space SpaceService.create(Space newSpace, boolean isPrivate)
          Create a new space.
 Space SpaceService.update(Space space)
          Updates a space.
 

Methods in com.atlassian.confluence.api.service.content that return types with arguments of type Space
 PageResponse<Space> SpaceService.SpaceFinder.fetchMany(PageRequest request)
           
 com.atlassian.fugue.Option<Space> SpaceService.getSpace(java.lang.String spaceKey, Expansion... expansions)
          Deprecated. use find().withKey(String).fetchOne();
 

Methods in com.atlassian.confluence.api.service.content with parameters of type Space
 Space SpaceService.create(Space newSpace, boolean isPrivate)
          Create a new space.
 LongTaskSubmission SpaceService.delete(Space spaceToDelete)
          Delete the given space.
 SpaceService.SpaceContentFinder SpaceService.findContent(Space space, Expansion... expansion)
          A finder to locate content in the space
 Space SpaceService.update(Space space)
          Updates a space.
 ValidationResult SpaceService.Validator.validateCreate(Space newSpace, boolean isPrivate)
          Validate that a Space can be added, including permission checks.
 ValidationResult SpaceService.Validator.validateDelete(Space spaceToDelete)
          Validate that a Space can be deleted, including permission checks.
 ValidationResult SpaceService.Validator.validateUpdate(Space space)
          Validate that a Space can be updated, including permission checks.
 ContentService.ParameterContentFinder ContentService.ParameterContentFinder.withSpace(Space... space)
          Restrict the fetched content to those in the given spaces.
 

Uses of Space in com.atlassian.confluence.it.api
 

Methods in com.atlassian.confluence.it.api that return Space
static Space ApiEntityConverter.convertItSpaceToApiSpace(Space space)
           
 

Methods in com.atlassian.confluence.it.api with parameters of type Space
static Space ApiEntityConverter.convertApiSpaceToItSpace(Space space)
           
 

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

Methods in com.atlassian.confluence.rest.client that return types with arguments of type Space
 com.atlassian.util.concurrent.Promise<Space> RemoteSpaceServiceImpl.create(Space newSpace, boolean isPrivate)
           
 com.atlassian.util.concurrent.Promise<Space> RemoteSpaceService.create(Space newSpace, boolean isPrivate)
          Create a new space.
 com.atlassian.util.concurrent.Promise<PageResponse<Space>> RemoteSpaceServiceImpl.RemoteSpaceFinderImpl.fetchMany(PageRequest request)
           
 com.atlassian.util.concurrent.Promise<PageResponse<Space>> RemoteSpaceService.RemoteSpaceFinder.fetchMany(PageRequest request)
           
 com.atlassian.util.concurrent.Promise<com.atlassian.fugue.Option<Space>> RemoteSpaceServiceImpl.RemoteSpaceFinderImpl.fetchOne()
           
 com.atlassian.util.concurrent.Promise<com.atlassian.fugue.Option<Space>> RemoteSpaceService.RemoteSpaceSingleFetcher.fetchOne()
           
 com.atlassian.util.concurrent.Promise<Space> RemoteSpaceServiceImpl.RemoteSpaceFinderImpl.fetchOneOrNull()
           
 com.atlassian.util.concurrent.Promise<Space> RemoteSpaceService.RemoteSpaceSingleFetcher.fetchOneOrNull()
           
 com.atlassian.util.concurrent.Promise<com.atlassian.fugue.Option<Space>> RemoteSpaceServiceImpl.getSpace(java.lang.String spaceKey, Expansion... expansions)
          Deprecated. 
 com.atlassian.util.concurrent.Promise<com.atlassian.fugue.Option<Space>> RemoteSpaceService.getSpace(java.lang.String spaceKey, Expansion... expansions)
          Deprecated. since 5.6. Use RemoteSpaceService.find(Expansion...)
 com.atlassian.util.concurrent.Promise<Space> RemoteSpaceServiceImpl.update(Space space)
           
 com.atlassian.util.concurrent.Promise<Space> RemoteSpaceService.update(Space space)
          Updates a space.
 

Methods in com.atlassian.confluence.rest.client with parameters of type Space
 com.atlassian.util.concurrent.Promise<Space> RemoteSpaceServiceImpl.create(Space newSpace, boolean isPrivate)
           
 com.atlassian.util.concurrent.Promise<Space> RemoteSpaceService.create(Space newSpace, boolean isPrivate)
          Create a new space.
 com.atlassian.util.concurrent.Promise<LongTaskSubmission> RemoteSpaceServiceImpl.delete(Space space)
           
 com.atlassian.util.concurrent.Promise<LongTaskSubmission> RemoteSpaceService.delete(Space spaceToDelete)
          Delete the given space.
 RemoteSpaceService.RemoteSpaceContentFinder RemoteSpaceServiceImpl.findContent(Space space, Expansion... expansion)
           
 RemoteSpaceService.RemoteSpaceContentFinder RemoteSpaceService.findContent(Space space, Expansion... expansion)
          Create a finder to find content in the given space.
 com.atlassian.util.concurrent.Promise<Space> RemoteSpaceServiceImpl.update(Space space)
           
 com.atlassian.util.concurrent.Promise<Space> RemoteSpaceService.update(Space space)
          Updates a space.
 RemoteContentService.RemoteParameterContentFinder RemoteContentServiceImpl.RemoteContentFinderImpl.withSpace(Space... spaces)
           
 RemoteContentService.RemoteParameterContentFinder RemoteContentService.RemoteParameterContentFinder.withSpace(Space... space)
           
 

Constructors in com.atlassian.confluence.rest.client with parameters of type Space
RemoteSpaceServiceImpl.RemoteSpaceContentFinderImpl(AbstractRemoteService other, Space space, Expansion[] expansion)
           
 

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

Methods in com.atlassian.confluence.rest.resources that return Space
 Space SpaceResource.createPrivateSpace(Space newSpace)
          Creates a new private Space, viewable only by its creator.
 Space SpaceResource.createSpace(Space newSpace)
          Creates a new Space.
 Space SpaceResource.space(java.lang.String spaceKey, java.lang.String expand)
          Returns information about a space.
 Space SpaceResource.update(java.lang.String spaceKey, Space space)
          Updates a Space.
 

Methods in com.atlassian.confluence.rest.resources that return types with arguments of type Space
 PageResponse<Space> SpaceResource.spaces(java.util.List<java.lang.String> spaceKeys, java.lang.String expand, int start, int limit, javax.ws.rs.core.UriInfo uriInfo)
          Returns information about a number of spaces.
 

Methods in com.atlassian.confluence.rest.resources with parameters of type Space
 Space SpaceResource.createPrivateSpace(Space newSpace)
          Creates a new private Space, viewable only by its creator.
 Space SpaceResource.createSpace(Space newSpace)
          Creates a new Space.
 Space SpaceResource.update(java.lang.String spaceKey, Space space)
          Updates a Space.
 



Copyright © 2003-2014 Atlassian. All Rights Reserved.