public class TeamSpaceServiceImpl extends java.lang.Object implements TeamSpaceService
USER_PROPERTY_PRIMARY_TEAMSPACE
Constructor and Description |
---|
TeamSpaceServiceImpl(<any> authenticatorServiceProvider,
<any> entityManagerProvider,
HookHandlerService hookHandler,
SecurityService securityService,
UserManagerService userService,
UserPropertiesService userPropertiesService) |
Modifier and Type | Method and Description |
---|---|
boolean |
appExists(java.lang.String appId)
Tests if a
TeamSpaceApp with the given id exists |
void |
assertAccess(TeamSpace ts) |
void |
assertIsUser(TeamSpace teamSpace) |
TeamSpace |
createTeamSpace()
Creates a new
TeamSpace with the current user as owner. |
TeamSpace |
createTeamSpace(User user)
|
void |
forceRemove(TeamSpace teamSpace) |
java.util.Collection<TeamSpace> |
getAllTeamSpaces()
Returns a
Collection of all existing TeamSpace s |
TeamSpaceAppDefinition |
getAppDefinitionById(java.lang.String appId) |
TeamSpace |
getExplicitPrimarySpace()
Retrieves the primary
TeamSpace of the current user if this is
explicitely set. |
java.util.List<TeamSpaceAppDefinition> |
getInstalledApps() |
TeamSpaceMember |
getMemberFor(TeamSpace teamSpace,
AbstractUserManagerNode folk) |
java.util.Collection<TeamSpace> |
getOwnedTeamSpaces()
Returns the current user's owned
TeamSpace s |
java.util.Collection<TeamSpace> |
getOwnedTeamSpaces(User owner)
|
TeamSpace |
getPrimarySpace()
Retrieves the primary
TeamSpace of the current user. |
TeamSpace |
getPrimarySpace(User user)
|
TeamSpaceRole |
getRole(TeamSpace teamSpace) |
TeamSpaceRole |
getRole(User user,
TeamSpace teamSpace) |
TeamSpace |
getTeamSpaceById(java.lang.Long id) |
TeamSpace |
getTeamSpaceByName(java.lang.String name) |
java.util.Collection<TeamSpace> |
getTeamSpaces()
Returns the current user's
TeamSpace s |
java.util.Collection<TeamSpace> |
getTeamSpaces(User user)
Returns the
TeamSpace s that can be accessed by a given folk |
java.util.Collection<TeamSpace> |
getTeamSpacesByName(java.lang.String name) |
java.util.Collection<TeamSpace> |
getTeamSpacesWithMemberFor(AbstractUserManagerNode folk) |
boolean |
hasRole(TeamSpace teamSpace,
TeamSpaceRole roleToHave)
Tests if the current user has the given
TeamSpaceRole on the given
TeamSpace |
boolean |
hasRole(User user,
TeamSpace teamSpace,
TeamSpaceRole roleToHave)
|
TeamSpaceApp |
installTeamSpaceApp(TeamSpace teamSpace,
java.lang.String appId)
Creates a new
TeamSpaceApp instance of the given type |
boolean |
isAdmin(TeamSpace teamSpace)
Tests if the current user is an admin of the given
TeamSpace |
boolean |
isAdmin(User user,
TeamSpace teamSpace)
|
boolean |
isGlobalTsAdmin()
Tests if the current user is a global
TeamSpace admin |
boolean |
isGlobalTsAdmin(User user)
|
boolean |
isGuest(TeamSpace teamSpace)
Tests if the current user is a guest in the given
TeamSpace |
boolean |
isGuest(User user,
TeamSpace teamSpace)
|
boolean |
isManager(TeamSpace teamSpace)
Tests if the current user is a manager of the given
TeamSpace |
boolean |
isManager(User user,
TeamSpace teamSpace)
|
boolean |
isOwner(TeamSpace teamSpace)
checks if the current user owns the TeamSpace
|
boolean |
isUser(TeamSpace teamSpace)
Tests if the current user is a user of the given
TeamSpace |
boolean |
isUser(User user,
TeamSpace teamSpace)
|
boolean |
mayAccess(TeamSpace teamSpace)
Tests if the current user has the right to access the given
TeamSpace |
boolean |
mayAccess(User user,
TeamSpace teamSpace)
|
TeamSpace |
merge(TeamSpace teamSpace)
Merges the given
TeamSpace with the representation in the database
and returns the result. |
TeamSpaceApp |
merge(TeamSpaceApp app)
Merges the given
TeamSpaceApp with the representation in the database
and returns the result. |
TeamSpaceMember |
merge(TeamSpaceMember member)
Merges the given
TeamSpaceMember with the representation in the
database and returns the result. |
void |
persist(TeamSpace teamSpace)
Persists the given
TeamSpace |
void |
persist(TeamSpaceApp app)
Persists the given
TeamSpaceApp |
void |
persist(TeamSpaceMember member)
Persists the given
TeamSpaceMember |
void |
provideAccess(TeamSpace teamSpace,
User user,
TeamSpaceRole role) |
void |
remove(TeamSpace teamSpace)
Removes the given
TeamSpace from the database |
void |
remove(TeamSpaceApp app)
Removes the given
TeamSpaceApp from the database |
void |
remove(TeamSpaceMember member)
Removes the given
TeamSpaceMember from the database |
void |
setInstalledApps(TeamSpace teamSpace,
java.util.Collection<java.lang.String> appIds) |
void |
setPrimarySpace(TeamSpace teamSpace)
Sets the primary
TeamSpace for the current user |
public TeamSpaceServiceImpl(<any> authenticatorServiceProvider, <any> entityManagerProvider, HookHandlerService hookHandler, SecurityService securityService, UserManagerService userService, UserPropertiesService userPropertiesService)
@QueryById public TeamSpace getTeamSpaceById(java.lang.Long id)
getTeamSpaceById
in interface TeamSpaceService
@QueryByAttribute(where=<error>) public TeamSpace getTeamSpaceByName(java.lang.String name)
getTeamSpaceByName
in interface TeamSpaceService
@QueryByAttribute(where=<error>) public java.util.Collection<TeamSpace> getTeamSpacesByName(java.lang.String name)
getTeamSpacesByName
in interface TeamSpaceService
public void provideAccess(TeamSpace teamSpace, User user, TeamSpaceRole role)
provideAccess
in interface TeamSpaceService
public TeamSpace getPrimarySpace()
TeamSpaceService
TeamSpace
of the current user.getPrimarySpace
in interface TeamSpaceService
TeamSpace
of the current user.public TeamSpace getExplicitPrimarySpace()
TeamSpaceService
TeamSpace
of the current user if this is
explicitely set.getExplicitPrimarySpace
in interface TeamSpaceService
TeamSpace
of the current user if this is
explicitely set.public TeamSpace getPrimarySpace(User user)
TeamSpaceService
getPrimarySpace
in interface TeamSpaceService
user
- The User
TeamSpace
of the given User
public void setPrimarySpace(TeamSpace teamSpace)
TeamSpaceService
TeamSpace
for the current usersetPrimarySpace
in interface TeamSpaceService
teamSpace
- The new primary TeamSpace
public java.util.Collection<TeamSpace> getTeamSpaces()
TeamSpaceService
TeamSpace
sgetTeamSpaces
in interface TeamSpaceService
Collection
of the current user's TeamSpace
spublic java.util.Collection<TeamSpace> getTeamSpaces(User user)
TeamSpaceService
TeamSpace
s that can be accessed by a given folkgetTeamSpaces
in interface TeamSpaceService
user
- The User
Collection
of TeamSpace
s@SimpleQuery(join=@Join(joinAttribute=<error>,where=@Predicate(attribute=<error>,value="folk"))) public java.util.Collection<TeamSpace> getTeamSpacesWithMemberFor(AbstractUserManagerNode folk)
getTeamSpacesWithMemberFor
in interface TeamSpaceService
public java.util.Collection<TeamSpace> getOwnedTeamSpaces()
TeamSpaceService
TeamSpace
sgetOwnedTeamSpaces
in interface TeamSpaceService
Collection
of the TeamSpace
owned by the current
user@QueryByAttribute(where=<error>) public java.util.Collection<TeamSpace> getOwnedTeamSpaces(User owner)
TeamSpaceService
getOwnedTeamSpaces
in interface TeamSpaceService
owner
- The User
Collection
of the TeamSpace
s owned by the given
User
@SimpleQuery public java.util.Collection<TeamSpace> getAllTeamSpaces()
TeamSpaceService
Collection
of all existing TeamSpace
sgetAllTeamSpaces
in interface TeamSpaceService
Collection
of TeamSpace
spublic void persist(TeamSpace teamSpace)
TeamSpaceService
TeamSpace
persist
in interface TeamSpaceService
teamSpace
- The TeamSpace
to persistpublic void persist(TeamSpaceMember member)
TeamSpaceService
TeamSpaceMember
persist
in interface TeamSpaceService
member
- The TeamSpaceMember
to persistpublic void persist(TeamSpaceApp app)
TeamSpaceService
TeamSpaceApp
persist
in interface TeamSpaceService
app
- The TeamSpaceApp
to persistpublic TeamSpace merge(TeamSpace teamSpace)
TeamSpaceService
TeamSpace
with the representation in the database
and returns the result.merge
in interface TeamSpaceService
teamSpace
- The TeamSpace
with the new dataTeamSpace
public TeamSpaceMember merge(TeamSpaceMember member)
TeamSpaceService
TeamSpaceMember
with the representation in the
database and returns the result.merge
in interface TeamSpaceService
member
- The TeamSpaceMember
with the new dataTeamSpaceMember
public TeamSpaceApp merge(TeamSpaceApp app)
TeamSpaceService
TeamSpaceApp
with the representation in the database
and returns the result.merge
in interface TeamSpaceService
app
- The TeamSpaceApp
with the new dataTeamSpaceApp
public void remove(TeamSpace teamSpace)
TeamSpaceService
TeamSpace
from the databaseremove
in interface TeamSpaceService
teamSpace
- The TeamSpace
to be removedpublic void forceRemove(TeamSpace teamSpace)
forceRemove
in interface TeamSpaceService
public void remove(TeamSpaceMember member)
TeamSpaceService
TeamSpaceMember
from the databaseremove
in interface TeamSpaceService
member
- The TeamSpaceMember
to be removedpublic void remove(TeamSpaceApp app)
TeamSpaceService
TeamSpaceApp
from the databaseremove
in interface TeamSpaceService
app
- The TeamSpaceApp
to be removedpublic TeamSpace createTeamSpace()
TeamSpaceService
TeamSpace
with the current user as owner.createTeamSpace
in interface TeamSpaceService
TeamSpace
public TeamSpace createTeamSpace(User user)
TeamSpaceService
createTeamSpace
in interface TeamSpaceService
user
- The User
TeamSpace
public boolean appExists(java.lang.String appId)
TeamSpaceService
TeamSpaceApp
with the given id existsappExists
in interface TeamSpaceService
appId
- The TeamSpaceApp
idTeamSpaceApp
exists; false otherwisepublic TeamSpaceAppDefinition getAppDefinitionById(java.lang.String appId)
getAppDefinitionById
in interface TeamSpaceService
public java.util.List<TeamSpaceAppDefinition> getInstalledApps()
public TeamSpaceApp installTeamSpaceApp(TeamSpace teamSpace, java.lang.String appId)
TeamSpaceService
TeamSpaceApp
instance of the given typeinstallTeamSpaceApp
in interface TeamSpaceService
appId
- The type (TeamSpaceApp
id)TeamSpaceApp
public boolean isAdmin(TeamSpace teamSpace)
TeamSpaceService
TeamSpace
isAdmin
in interface TeamSpaceService
teamSpace
- The TeamSpace
TeamSpace
;
false otherwisepublic boolean isAdmin(User user, TeamSpace teamSpace)
TeamSpaceService
public boolean isUser(TeamSpace teamSpace)
TeamSpaceService
TeamSpace
isUser
in interface TeamSpaceService
teamSpace
- The TeamSpace
TeamSpace
;
false otherwisepublic boolean isUser(User user, TeamSpace teamSpace)
TeamSpaceService
isUser
in interface TeamSpaceService
teamSpace
- The TeamSpace
User
is a user of the given
TeamSpace
; false otherwisepublic boolean isGuest(TeamSpace teamSpace)
TeamSpaceService
TeamSpace
isGuest
in interface TeamSpaceService
teamSpace
- The TeamSpace
TeamSpace
;
false otherwisepublic boolean isGuest(User user, TeamSpace teamSpace)
TeamSpaceService
isGuest
in interface TeamSpaceService
teamSpace
- The TeamSpace
User
is a guest in the given
TeamSpace
; false otherwisepublic boolean isManager(TeamSpace teamSpace)
TeamSpaceService
TeamSpace
isManager
in interface TeamSpaceService
teamSpace
- The TeamSpace
TeamSpace
;
false otherwisepublic boolean isManager(User user, TeamSpace teamSpace)
TeamSpaceService
public boolean isOwner(TeamSpace teamSpace)
TeamSpaceService
isOwner
in interface TeamSpaceService
public boolean hasRole(TeamSpace teamSpace, TeamSpaceRole roleToHave)
TeamSpaceService
TeamSpaceRole
on the given
TeamSpace
hasRole
in interface TeamSpaceService
teamSpace
- The TeamSpace
roleToHave
- The TeamSpaceRole
to testTeamSpaceRole
; false
otherwisepublic boolean hasRole(User user, TeamSpace teamSpace, TeamSpaceRole roleToHave)
TeamSpaceService
hasRole
in interface TeamSpaceService
user
- The User
teamSpace
- The TeamSpace
roleToHave
- The TeamSpaceRole
to testUser
has the TeamSpaceRole
; false
otherwisepublic TeamSpaceRole getRole(User user, TeamSpace teamSpace)
getRole
in interface TeamSpaceService
public TeamSpaceMember getMemberFor(TeamSpace teamSpace, AbstractUserManagerNode folk)
getMemberFor
in interface TeamSpaceService
public TeamSpaceRole getRole(TeamSpace teamSpace)
getRole
in interface TeamSpaceService
public boolean isGlobalTsAdmin()
TeamSpaceService
TeamSpace
adminisGlobalTsAdmin
in interface TeamSpaceService
TeamSpace
admin; false
otherwisepublic boolean isGlobalTsAdmin(User user)
TeamSpaceService
isGlobalTsAdmin
in interface TeamSpaceService
user
- The User
User
is a global TeamSpace
admin;
false otherwisepublic boolean mayAccess(TeamSpace teamSpace)
TeamSpaceService
TeamSpace
mayAccess
in interface TeamSpaceService
teamSpace
- The TeamSpace
TeamSpace
; false otherwisepublic boolean mayAccess(User user, TeamSpace teamSpace)
TeamSpaceService
public void setInstalledApps(TeamSpace teamSpace, java.util.Collection<java.lang.String> appIds)
setInstalledApps
in interface TeamSpaceService
public void assertAccess(TeamSpace ts)
assertAccess
in interface TeamSpaceService
public void assertIsUser(TeamSpace teamSpace)
assertIsUser
in interface TeamSpaceService