Uses of Class
com.atlassian.confluence.spaces.SpacesQuery
-
Packages that use SpacesQuery Package Description com.atlassian.confluence.internal.spaces Confluence internal classes related to spaces.com.atlassian.confluence.security.denormalisedpermissions com.atlassian.confluence.security.denormalisedpermissions.impl com.atlassian.confluence.security.denormalisedpermissions.impl.space.dao com.atlassian.confluence.spaces -
-
Uses of SpacesQuery in com.atlassian.confluence.internal.spaces
Methods in com.atlassian.confluence.internal.spaces that return SpacesQuery Modifier and Type Method Description SpacesQuery
SpacesQueryWithPermissionQueryBuilder. getSpacesQuery()
Methods in com.atlassian.confluence.internal.spaces with parameters of type SpacesQuery Modifier and Type Method Description @NonNull PageResponse<Space>
SpaceManagerInternal. getSpaces(SpacesQuery query, LimitedRequest limitedRequest, Predicate<? super Space>... filter)
get a paginated list of spaces that match the spaceQuery, filtered by the given predicatestatic SpacesQueryWithPermissionQueryBuilder
SpacesQueryWithPermissionQueryBuilder. spacesQueryWithoutPermissionCheck(SpacesQuery spacesQuery)
static SpacesQueryWithPermissionQueryBuilder
SpacesQueryWithPermissionQueryBuilder. spacesQueryWithPermissionCheck(SpacesQuery spacesQuery, SpacePermissionQueryBuilder permissionClauseBuilder)
@NonNull io.atlassian.fugue.Either<AccessDenied,SpacesQueryWithPermissionQueryBuilder>
SpaceManagerInternal. toSpacesQueryWithPermissionQueryBuilder(SpacesQuery spacesQuery)
Converts aSpacesQuery
into a decorated formSpacesQueryWithPermissionQueryBuilder
that includes information about how database queries should be built for the space permissions table. -
Uses of SpacesQuery in com.atlassian.confluence.security.denormalisedpermissions
Methods in com.atlassian.confluence.security.denormalisedpermissions with parameters of type SpacesQuery Modifier and Type Method Description List<Space>
BulkPermissionService. getPermittedSpaces(SpacesQuery spaceQuery, int offset, int limit)
Returns a list of permitted spaces filters by spaceQuery. -
Uses of SpacesQuery in com.atlassian.confluence.security.denormalisedpermissions.impl
Methods in com.atlassian.confluence.security.denormalisedpermissions.impl with parameters of type SpacesQuery Modifier and Type Method Description List<Space>
DenormalisedPermissionFallbackServiceImpl. getPermittedSpaces(SpacesQuery spaceQuery, int offset, int limit)
Returns a list of permitted spaces filters by spaceQuery.List<Space>
DenormalisedPermissionRouter. getPermittedSpaces(SpacesQuery spaceQuery, int offset, int limit)
Returns a list of permitted spaces filters by spaceQuery.List<Space>
DenormalisedPermissionServiceImpl. getPermittedSpaces(SpacesQuery spaceQuery, int offset, int limit)
Returns a list of permitted spaces filters by spaceQuery. -
Uses of SpacesQuery in com.atlassian.confluence.security.denormalisedpermissions.impl.space.dao
Methods in com.atlassian.confluence.security.denormalisedpermissions.impl.space.dao with parameters of type SpacesQuery Modifier and Type Method Description List<Space>
DenormalisedSpacePermissionDao. getSpaces(Set<Long> sids, SpacePermissionType permissionType, SpacesQuery spaceQuery, int offset, int limit, boolean permissionExempt)
Returns a list of permitted spaces Spaces could be additionally filtered by provided optional filters -
Uses of SpacesQuery in com.atlassian.confluence.spaces
Methods in com.atlassian.confluence.spaces that return SpacesQuery Modifier and Type Method Description SpacesQuery
SpacesQuery.Builder. build()
Methods in com.atlassian.confluence.spaces with parameters of type SpacesQuery Modifier and Type Method Description @NonNull List<Space>
DefaultSpaceManager. getAllSpaces(SpacesQuery query)
@NonNull List<Space>
SpaceManager. getAllSpaces(SpacesQuery query)
Deprecated.since 7.3.0, useSpaceService.find(Expansion...)
in plugins andSpaceManagerInternal
in core where applicable@NonNull ListBuilder<Space>
DefaultSpaceManager. getSpaces(SpacesQuery query)
@NonNull PageResponse<Space>
DefaultSpaceManager. getSpaces(SpacesQuery query, LimitedRequest limitedRequest, Predicate<? super Space>... filter)
@NonNull ListBuilder<Space>
SpaceManager. getSpaces(SpacesQuery query)
Deprecated.since 7.3.0, useSpaceService.find(Expansion...)
in plugins andSpaceManagerInternal
in core where applicable@NonNull io.atlassian.fugue.Either<AccessDenied,SpacesQueryWithPermissionQueryBuilder>
DefaultSpaceManager. toSpacesQueryWithPermissionQueryBuilder(SpacesQuery spacesQuery)
-