void |
SpaceStorage.deleteExternalUserInvitations(String email) |
Delete external invitations
|
void |
SpaceStorage.deleteSpace(String id) |
Deletes a space by space id.
|
void |
SpaceStorage.deleteSpaceExternalInvitation(SpaceExternalInvitation spaceExternalInvitation) |
Delete an external invitation from a space
|
List<String> |
SpaceStorage.findExternalInvitationsSpacesByEmail(String email) |
get the list of spaces ids by external email
|
SpaceExternalInvitation |
SpaceStorage.findSpaceExternalInvitationById(String invitationId) |
Get an external invitation by invitation id
|
List<SpaceExternalInvitation> |
SpaceStorage.findSpaceExternalInvitationsBySpaceId(String spaceId) |
|
List<Space> |
SpaceStorage.getAccessibleSpaces(String userId) |
Deprecated.
|
List<Space> |
SpaceStorage.getAccessibleSpaces(String userId,
long offset,
long limit) |
Gets the spaces of a user which that user has "member" role or edit permission with offset, limit.
|
int |
SpaceStorage.getAccessibleSpacesCount(String userId) |
Gets the count of the accessible spaces of the userId.
|
List<Space> |
SpaceStorage.getAllSpaces() |
Gets all the spaces.
|
int |
SpaceStorage.getAllSpacesCount() |
Gets the count of the spaces.
|
List<Space> |
SpaceStorage.getEditableSpaces(String userId) |
Gets the spaces of a user which that user has the edit permission.
|
List<Space> |
SpaceStorage.getEditableSpaces(String userId,
long offset,
long limit) |
Gets the spaces of a user which that user has the edit permission with offset, limit.
|
int |
SpaceStorage.getEditableSpacesCount(String userId) |
Gets the count of the spaces of a user which that user has the edit permission.
|
List<Space> |
SpaceStorage.getInvitedSpaces(String userId) |
Gets a user's invited spaces and that user can accept or deny the request.
|
List<Space> |
SpaceStorage.getInvitedSpaces(String userId,
long offset,
long limit) |
Gets a user's invited spaces and that user can accept or deny the request with offset, limit.
|
int |
SpaceStorage.getInvitedSpacesCount(String userId) |
Gets the count of the invited spaces of the userId.
|
List<Space> |
SpaceStorage.getLastAccessedSpace(SpaceFilter filter,
int offset,
int limit) |
Gets list of spaces which user has been last visited.
|
int |
SpaceStorage.getLastAccessedSpaceCount(SpaceFilter filter) |
Gets number of spaces which user has been last visited.
|
List<String> |
SpaceStorage.getMemberSpaceIds(String identityId,
int offset,
int limit) |
|
List<Space> |
SpaceStorage.getMemberSpaces(String userId) |
Deprecated.
|
List<Space> |
SpaceStorage.getMemberSpaces(String userId,
long offset,
long limit) |
Gets the spaces that a user has the "member" role with offset, limit.
|
int |
SpaceStorage.getMemberSpacesCount(String userId) |
Gets the count of the spaces that a user has the "member" role.
|
List<Space> |
SpaceStorage.getPendingSpaces(String userId) |
Gets a user's pending spaces and that the user can revoke that request.
|
List<Space> |
SpaceStorage.getPendingSpaces(String userId,
long offset,
long limit) |
Gets a user's pending spaces and that the user can revoke that request with offset, limit.
|
int |
SpaceStorage.getPendingSpacesCount(String userId) |
Gets the count of the pending spaces of the userId.
|
List<Space> |
SpaceStorage.getPublicSpaces(String userId) |
Gets a user's public spaces and that user can request to join.
|
List<Space> |
SpaceStorage.getPublicSpaces(String userId,
long offset,
long limit) |
Gets a user's public spaces and that user can request to join with offset, limit.
|
int |
SpaceStorage.getPublicSpacesCount(String userId) |
Gets the count of the public spaces of the userId.
|
Space |
SpaceStorage.getSpaceByDisplayName(String spaceDisplayName) |
Gets a space by its display name.
|
Space |
SpaceStorage.getSpaceByGroupId(String groupId) |
Gets a space by its associated group id.
|
Space |
SpaceStorage.getSpaceById(String id) |
Gets a space by its space id.
|
Space |
SpaceStorage.getSpaceByPrettyName(String spacePrettyName) |
Gets a space by its pretty name.
|
Space |
SpaceStorage.getSpaceByUrl(String url) |
Gets a space by its url.
|
List<Space> |
SpaceStorage.getSpaces(long offset,
long limit) |
Gets the spaces with offset, limit.
|
Space |
SpaceStorage.getSpaceSimpleById(String id) |
Gets a space simple by its space id to aim decrease workload to get full information.
|
List<Space> |
SpaceStorage.getUnifiedSearchSpaces(String userId,
SpaceFilter spaceFilter,
long offset,
long limit) |
Provides Unified Search to get the spaces of a user which that user has the visible spaces.
|
int |
SpaceStorage.getUnifiedSearchSpacesCount(String userId,
SpaceFilter spaceFilter) |
Provides Unified Search to get the count of the visible spaces of the userId.
|
List<Space> |
SpaceStorage.getVisibleSpaces(String userId,
SpaceFilter spaceFilter) |
Gets the spaces of a user which that user has the "member" role or edit permission.
|
List<Space> |
SpaceStorage.getVisibleSpaces(String userId,
SpaceFilter spaceFilter,
long offset,
long limit) |
Gets the spaces of a user which that user has the visible spaces.
|
int |
SpaceStorage.getVisibleSpacesCount(String userId,
SpaceFilter spaceFilter) |
Gets the count of the visible spaces of the userId.
|
List<Space> |
SpaceStorage.getVisitedSpaces(SpaceFilter filter,
int offset,
int limit) |
Get the visited spaces
|
void |
SpaceStorage.renameSpace(String remoteId,
Space space,
String newDisplayName) |
Renames a space.
|
void |
SpaceStorage.renameSpace(Space space,
String newDisplayName) |
Renames a space.
|
void |
SpaceStorage.saveSpace(Space space,
boolean isNew) |
Saves a space.
|
void |
SpaceStorage.saveSpaceExternalInvitation(String spaceId,
String email,
String tokenId) |
Saves a new external invitation in space
|
void |
SpaceStorage.updateSpaceAccessed(String remoteId,
Space space) |
Update accessed space to top of space members list of Identity model
|