public interface SpaceDao extends ObjectDao
NON_CACHEABLE| Modifier and Type | Method and Description |
|---|---|
int |
countPermittedSpacesForUser(com.atlassian.user.User user,
List<com.atlassian.user.Group> groupsForUser,
String permission)
Deprecated.
since 5.2. See
countSpaces(SpacesQuery) instead. |
int |
countSpaces(SpacesQuery query)
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(SpacesQuery query)
Get a list of spaces specified by the
SpacesQuery. |
List<Space> |
getSpaces(SpacesQuery query,
int offset,
int maxResults)
Get a list of spaces specified by the
SpacesQuery. |
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) |
findAll, findAllSorted, findAllSorted, findByClassIds, getPersistentClass, refresh, remove, replicate, save, saveRawSpace getById(long id)
List<Space> getSpacesCreatedByUser(String username)
Space getPersonalSpace(ConfluenceUser user)
user - the user who's personal space is to be retrievedList<Space> getSpacesContainingPagesEditedByUser(String username)
username - the name of the user to track downList<Space> getSpacesContainingCommentsByUser(String username)
username - the name of the user to track downList<Space> getSpacesCreatedOrUpdatedSinceDate(Date previousLoginDate)
int findPageTotal(Space space)
int getNumberOfBlogPosts(Space space)
int getNumberOfMail(Space space)
@Deprecated int countPermittedSpacesForUser(com.atlassian.user.User user, List<com.atlassian.user.Group> groupsForUser, String permission)
countSpaces(SpacesQuery) instead.user - groupsForUser - permission - List<Space> getSpaces(SpacesQuery query, int offset, int maxResults)
SpacesQuery.List<Space> getSpaces(SpacesQuery query)
SpacesQuery. Its recommended to use the
getSpaces(com.atlassian.confluence.spaces.SpacesQuery, int, int) form of this method where ever
possible.int countSpaces(SpacesQuery query)
SpacesQuery.Space getSpaceByContentId(long contentId)
contentId - the ID of the contentCollection<String> findSpaceKeysWithStatus(String status)
status - the status to search forString findUniqueVersionOfSpaceKey(String spaceKey)
spaceKey - the space key to create a unique version ofCopyright © 2003–2015 Atlassian. All rights reserved.