|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of SpaceGroup in com.atlassian.confluence.hosted |
---|
Methods in com.atlassian.confluence.hosted that return SpaceGroup | |
---|---|
SpaceGroup |
SpaceGroupPermission.getSpaceGroup()
|
Methods in com.atlassian.confluence.hosted with parameters of type SpaceGroup | |
---|---|
List<String> |
SpaceGroupPermissionManager.getUsersWithPermission(SpaceGroup spaceGroup,
String type)
Returns a collection of usernames with VIEWSPACEGROUP_PERMISSION in the spacegroup. |
List<String> |
DefaultSpaceGroupPermissionManager.getUsersWithPermission(SpaceGroup spaceGroup,
String type)
|
boolean |
SpaceGroupPermissionManager.hasPermission(String permissionType,
SpaceGroup spaceGroup,
com.atlassian.user.User remoteUser)
Determines if remoteUser has the given permission in space |
boolean |
DefaultSpaceGroupPermissionManager.hasPermission(String permissionType,
SpaceGroup spaceGroup,
com.atlassian.user.User remoteUser)
|
void |
SpaceGroupPermissionManager.removeAllPermissionsForSpaceGroup(SpaceGroup spaceGroup)
Removes all permissions on the space-group for a particular SpaceGroup |
void |
DefaultSpaceGroupPermissionManager.removeAllPermissionsForSpaceGroup(SpaceGroup spaceGroup)
|
void |
SpaceGroupPermission.setSpaceGroup(SpaceGroup spaceGroup)
|
Constructors in com.atlassian.confluence.hosted with parameters of type SpaceGroup | |
---|---|
SpaceGroupPermission(SpaceGroup spaceGroup,
String permType,
String userName,
String group)
|
Uses of SpaceGroup in com.atlassian.confluence.hosted.persistence.dao |
---|
Methods in com.atlassian.confluence.hosted.persistence.dao with parameters of type SpaceGroup | |
---|---|
List |
SpaceGroupPermissionDao.getPermissionsForSpaceGroup(SpaceGroup spaceGroup)
|
List<String> |
SpaceGroupPermissionDao.getUsersWithPermission(SpaceGroup spaceGroup,
String type)
Returns a list of usernames with permissions of a certain type to a SpaceGroup |
void |
SpaceGroupPermissionDao.removePermissionsForSpaceGroup(SpaceGroup spaceGroup)
|
Uses of SpaceGroup in com.atlassian.confluence.hosted.persistence.dao.hibernate |
---|
Methods in com.atlassian.confluence.hosted.persistence.dao.hibernate with parameters of type SpaceGroup | |
---|---|
List |
HibernateSpaceGroupPermissionDao.getPermissionsForSpaceGroup(SpaceGroup spaceGroup)
|
List<String> |
HibernateSpaceGroupPermissionDao.getUsersWithPermission(SpaceGroup spaceGroup,
String type)
|
void |
HibernateSpaceGroupPermissionDao.removePermissionsForSpaceGroup(SpaceGroup spaceGroup)
|
Uses of SpaceGroup in com.atlassian.confluence.spaces |
---|
Methods in com.atlassian.confluence.spaces that return SpaceGroup | |
---|---|
SpaceGroup |
DefaultSpaceGroupManager.createSpaceGroup(String key,
String name)
|
SpaceGroup |
SpaceGroupManager.createSpaceGroup(String key,
String name)
Create a Space Group |
SpaceGroup |
DefaultSpaceGroupManager.createSpaceGroup(String key,
String name,
String creatorName)
|
SpaceGroup |
SpaceGroupManager.createSpaceGroup(String key,
String name,
String creatorName)
Create a space Group |
SpaceGroup |
Space.getSpaceGroup()
|
SpaceGroup |
SpacesQuery.getSpaceGroup()
|
SpaceGroup |
DefaultSpaceGroupManager.getSpaceGroup(long id)
|
SpaceGroup |
SpaceGroupManager.getSpaceGroup(long id)
Retrieve a space by its ID. |
SpaceGroup |
DefaultSpaceGroupManager.getSpaceGroup(String spaceGroupKey)
|
SpaceGroup |
SpaceGroupManager.getSpaceGroup(String spaceGroupKey)
Retrieve a spaceGroup by its key. |
Methods in com.atlassian.confluence.spaces that return types with arguments of type SpaceGroup | |
---|---|
Set<SpaceGroup> |
DefaultSpaceGroupManager.getSpaceGroupsForUser(String username)
Currently this method will return a all spacegroups the user has access to. |
Set<SpaceGroup> |
SpaceGroupManager.getSpaceGroupsForUser(String username)
|
Methods in com.atlassian.confluence.spaces with parameters of type SpaceGroup | |
---|---|
List |
DefaultSpaceManager.getPermittedSpacesInSpaceGroup(com.atlassian.user.User user,
SpaceGroup spaceGroup)
Deprecated. since 3.1 use DefaultSpaceManager.getSpaces(SpacesQuery) instead |
List |
SpaceManager.getPermittedSpacesInSpaceGroup(com.atlassian.user.User user,
SpaceGroup spaceGroup)
Deprecated. since 3.1 Use SpaceManager.getSpaces(SpacesQuery) instead |
com.atlassian.license.License |
DefaultSpaceGroupManager.getSpaceGroupLicense(SpaceGroup spaceGroup)
|
com.atlassian.license.License |
SpaceGroupManager.getSpaceGroupLicense(SpaceGroup spaceGroup)
Retrieves a license stored against a given SpaceGroup |
List<Space> |
DefaultSpaceManager.getSpacesInSpaceGroup(SpaceGroup spaceGroup)
Deprecated. since 3.1. Space groups are no longer a feature of Confluence |
List<Space> |
SpaceManager.getSpacesInSpaceGroup(SpaceGroup spaceGroup)
Deprecated. since 3.1 Use SpaceManager.getSpaces(SpacesQuery) instead |
SpacesQuery.Builder |
SpacesQuery.Builder.inSpaceGroup(SpaceGroup spaceGroup)
|
void |
DefaultSpaceGroupManager.removeSpaceGroup(SpaceGroup spaceGroup,
boolean removeSpaces)
|
void |
SpaceGroupManager.removeSpaceGroup(SpaceGroup spaceGroup,
boolean removeSpaces)
Removes the spaceGroup without removing the space. |
void |
DefaultSpaceGroupManager.removeSpaceGroupLicense(SpaceGroup spaceGroup)
|
void |
SpaceGroupManager.removeSpaceGroupLicense(SpaceGroup spaceGroup)
Removes the license key from the given spaceGroup |
void |
DefaultSpaceManager.removeSpacesInGroup(SpaceGroup spaceGroup)
|
void |
SpaceManager.removeSpacesInGroup(SpaceGroup spaceGroup)
|
void |
DefaultSpaceGroupManager.saveSpaceGroup(SpaceGroup spaceGroup)
|
void |
SpaceGroupManager.saveSpaceGroup(SpaceGroup spaceGroup)
|
void |
Space.setSpaceGroup(SpaceGroup spaceGroup)
|
void |
DefaultSpaceGroupManager.setSpaceGroupLicense(SpaceGroup spaceGroup,
String licenseKey)
|
void |
SpaceGroupManager.setSpaceGroupLicense(SpaceGroup spaceGroup,
String licenseKey)
Stores a license key against a given SpaceGroup |
Uses of SpaceGroup in com.atlassian.confluence.spaces.persistence.dao |
---|
Methods in com.atlassian.confluence.spaces.persistence.dao that return SpaceGroup | |
---|---|
SpaceGroup |
SpaceGroupDao.getById(long id)
|
SpaceGroup |
SpaceGroupDao.getSpaceGroup(String spaceGroupKey)
Find a space by its space key. |
Methods in com.atlassian.confluence.spaces.persistence.dao with parameters of type SpaceGroup | |
---|---|
int |
SpaceGroupDao.findSpaceTotal(SpaceGroup spaceGroup)
Fast way to count Spaces in a SpaceGroup without loading them. |
List<Space> |
SpaceDao.getPermittedSpacesForUserInSpaceGroup(com.atlassian.user.User user,
List<com.atlassian.user.Group> groups,
String permission,
SpaceGroup spaceGroup)
Deprecated. since 3.1 use SpaceDao.getSpaces(SpacesQuery,int,int) |
List<Space> |
SpaceDao.getPermittedSpacesForUserInSpaceGroup(com.atlassian.user.User user,
String permission,
SpaceGroup spaceGroup)
Deprecated. since 3.0, use SpaceDao.getPermittedSpacesForUserInSpaceGroup(User, List, String, SpaceGroup) |
List<Space> |
SpaceDao.getSpacesInSpaceGroup(SpaceGroup spaceGroup)
Deprecated. since 3.1 use SpaceDao.getSpaces(SpacesQuery,int,int) |
Uses of SpaceGroup in com.atlassian.confluence.spaces.persistence.dao.hibernate |
---|
Methods in com.atlassian.confluence.spaces.persistence.dao.hibernate that return SpaceGroup | |
---|---|
SpaceGroup |
HibernateSpaceGroupDao.getById(long id)
|
SpaceGroup |
HibernateSpaceGroupDao.getSpaceGroup(String spaceGroupKey)
first tries to fetch the spaceGroup from the cache by space id if not, fetch it from database |
Methods in com.atlassian.confluence.spaces.persistence.dao.hibernate with parameters of type SpaceGroup | |
---|---|
int |
HibernateSpaceGroupDao.findSpaceTotal(SpaceGroup spaceGroup)
|
List<Space> |
HibernateSpaceDao.getPermittedSpacesForUserInSpaceGroup(com.atlassian.user.User user,
List<com.atlassian.user.Group> groups,
String permission,
SpaceGroup spaceGroup)
Query for spaces by type. |
List<Space> |
HibernateSpaceDao.getPermittedSpacesForUserInSpaceGroup(com.atlassian.user.User user,
String permission,
SpaceGroup spaceGroup)
Deprecated. |
List<Space> |
HibernateSpaceDao.getSpacesInSpaceGroup(SpaceGroup spaceGroup)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |