@ParametersAreNonnullByDefault public interface SpaceDao extends ObjectDao
NON_CACHEABLE
Modifier and Type | Method and Description |
---|---|
int |
countSpaces(SpacesQueryWithPermissionQueryBuilder queryWithPermissionClauseBuilder)
Count the spaces specified by the
SpacesQuery . |
int |
findPageTotal(Space space)
Fast way to count pages in a space without loading them.
|
Collection<String> |
findSpaceKeysWithStatus(String status)
find all space keys where the space status is equal to the given status.
|
String |
findUniqueVersionOfSpaceKey(String spaceKey)
Return a unique version of the supplied spaceKey.
|
Space |
getById(long id) |
int |
getNumberOfBlogPosts(Space space)
Fast way to count blog posts in a space without loading them.
|
int |
getNumberOfMail(Space space)
Fast way to count pages in a space without loading them.
|
Space |
getPersonalSpace(ConfluenceUser user) |
Space |
getSpace(String spaceKey)
Find a space by its space key.
|
Space |
getSpaceByContentId(long contentId)
Get the space that some content belongs to in a single db query.
|
List<Space> |
getSpaces(SpacesQueryWithPermissionQueryBuilder queryWithPermissionClauseBuilder)
Get a list of spaces specified by the
SpacesQuery . |
List<Space> |
getSpaces(SpacesQueryWithPermissionQueryBuilder queryWithPermissionClauseBuilder,
int offset,
int maxResults)
Get a list of spaces specified by the
SpacesQueryWithPermissionQueryBuilder . |
List<Space> |
getSpacesContainingCommentsByUser(String username)
Find all spaces containing comments by a particular user.
|
List<Space> |
getSpacesContainingPagesEditedByUser(String username)
Find all spaces containing pages that were edited by a particular user.
|
List<Space> |
getSpacesCreatedAfter(Date creationDate) |
List<Space> |
getSpacesCreatedByUser(String username)
Find all the spaces created by a given user.
|
List<Space> |
getSpacesCreatedOrUpdatedSinceDate(Date previousLoginDate) |
void |
performOnAll(Consumer<Space> function)
Perform the task with all spaces.
|
findAll, findAllSorted, findAllSorted, findByClassIds, getPersistentClass, refresh, remove, replicate, save, saveRaw
@Nonnull List<Space> getSpacesCreatedByUser(@Nullable String username)
@Nullable Space getPersonalSpace(@Nullable ConfluenceUser user)
user
- the user who's personal space is to be retrieved@Nonnull List<Space> getSpacesContainingPagesEditedByUser(@Nullable String username)
username
- the name of the user to track down@Nonnull List<Space> getSpacesContainingCommentsByUser(@Nullable String username)
Does currently not include personal spaces, but probably should.
username
- the name of the user to track down@Nonnull List<Space> getSpacesCreatedOrUpdatedSinceDate(Date previousLoginDate)
int findPageTotal(Space space)
int getNumberOfBlogPosts(Space space)
int getNumberOfMail(Space space)
@Nonnull List<Space> getSpaces(SpacesQueryWithPermissionQueryBuilder queryWithPermissionClauseBuilder, int offset, int maxResults)
SpacesQueryWithPermissionQueryBuilder
.@Nonnull List<Space> getSpaces(SpacesQueryWithPermissionQueryBuilder queryWithPermissionClauseBuilder)
SpacesQuery
. Its recommended to use the
getSpaces(SpacesQueryWithPermissionQueryBuilder, int, int)
form of this method where ever possible.int countSpaces(SpacesQueryWithPermissionQueryBuilder queryWithPermissionClauseBuilder)
SpacesQuery
.@Nullable Space getSpaceByContentId(long contentId)
contentId
- the ID of the content@Nonnull Collection<String> findSpaceKeysWithStatus(String status)
status
- the status to search for@Nonnull String findUniqueVersionOfSpaceKey(String spaceKey)
spaceKey
- the space key to create a unique version ofCopyright © 2003–2018 Atlassian. All rights reserved.