Interface SpaceService
- All Known Implementing Classes:
SpaceServiceImpl
public interface SpaceService
Provides CRUD operations on Spaces.
- Since:
- 5.5
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfacestatic interfaceA finder interface to encapsulate finding content in a particular spacestatic interfaceA finder for locating spaces.static interfaceProvides methods for validating the create, update and delete methods. -
Method Summary
Modifier and TypeMethodDescriptionvoidArchives a space.Create a new space.Delete the given space.Create a space finder to locate spaces, the expansions will be applied to each Space matching the restrictions on the finder.findContent(Space space, Expansion... expansion) A finder to locate content in the spacevoidUn-archives a space.Updates a space.Get the validator view of the Space Service.
-
Method Details
-
create
Create a new space.If the "isPrivate" flag is set to true the new space will only be visible to the creator.
Minimum properties to be valid is a key and name.
- Parameters:
newSpace- the space to createisPrivate- whether the space is private (true) or has default permissions (false)- Returns:
- the space created
- Throws:
ServiceException- if the space cannot be created
-
update
Updates a space.Currently limited to changing the space name, description and homepage.
- Parameters:
space- the updatedSpace- Returns:
- the updated space after being persisted
- Throws:
ServiceException
-
find
Create a space finder to locate spaces, the expansions will be applied to each Space matching the restrictions on the finder. Restrictions can be applied to the finder using the appropriate withFoo() methodFor example:
spaceService.find() .withKeys("DEV","PROD") .fetchMany(new SimplePageRequest(0, 10);- Parameters:
expansion- - the expansion to apply to each fetched space- Returns:
- a new SpaceFinder
-
archive
Archives a space. If the space is already archived, this method does nothing.- Parameters:
spaceKey- the key of the space to archive- Since:
- 8.8.0
-
restore
Un-archives a space. If the space is already unarchived, this method does nothing.- Parameters:
spaceKey- the key of the space to restore- Since:
- 8.8.0
-
findContent
SpaceService.SpaceContentFinder findContent(Space space, Expansion... expansion) throws NotFoundException A finder to locate content in the space- Returns:
- a finder
- Throws:
NotFoundException- if the space does not exist or you do not have permission to view it
-
delete
Delete the given space.The deletion happens asynchronously so a LongTaskStatus is returned, that can be used to track progress.
- Parameters:
spaceToDelete- the space to delete- Returns:
- a LongTaskStatus describing the space-removal operation
- Throws:
NotFoundException- if the space does not exist or you do not have permission to view itPermissionException- if you do not have permission to delete the spaceServiceException
-
validator
SpaceService.Validator validator()Get the validator view of the Space Service.
-