public final class DefaultMembershipCache extends Object implements MembershipCache
CachedCrowdMembershipCacheKey
representing a user (or group) in a particular directory
to a Map<String, String>
where each entry in the map represents a group that the user (or group)
is a member of.
The key of each Map entry is the lowercase name of the user or child group. The value is the case-preserved
actual name of the entity.Constructor and Description |
---|
DefaultMembershipCache(com.atlassian.cache.CacheFactory cacheFactory) |
Modifier and Type | Method and Description |
---|---|
List<String> |
getGroupsForGroup(long directoryId,
String groupName)
Returns the list of groups names which the named group is a member of in the specified directory.
|
List<String> |
getGroupsForUser(long directoryId,
String userName)
Returns the list of groups names which the named user is a member of in the specified directory.
|
Boolean |
isGroupDirectMember(long directoryId,
String groupName,
String parentGroupName)
Returns
true if the parentGroupName is in the cached list of parents of the child group,
false if parentGroupName is not in the list, or null if there is no cached list for the child group. |
Boolean |
isUserDirectMember(long directoryId,
String userName,
String groupName)
Returns
true if the groupName is in the cached list of parents of the user, false
if groupName is not in the list, or null if there is no cached list for the user. |
void |
removeAllDirectoryMemberships(long directoryId)
Removes any entries in the cache which relate to the specified directory.
|
void |
removeAllGroupMemberships(long directoryId,
String groupName)
Removes any entries in the cache which contain the groupName in the specified directory.
|
void |
removeAllUserMemberships(long directoryId,
String userName)
Removes any entries in the cache which contain the userName in the specified directory.
|
void |
removeGroupGroupMemberships(long directoryId,
String groupName)
Removes any cached list of group names which are members of the named group in the specified directory.
|
void |
removeUserGroupMemberships(long directoryId,
String userName)
Removes any cached list of user names which are members of the named group in the specified directory.
|
void |
setGroupsForGroup(long directoryId,
String groupName,
Iterable<String> parentGroupNames)
Caches the list of parent groupNames for each membership for the named group in the specified directory.
|
void |
setGroupsForUser(long directoryId,
String userName,
Iterable<String> groupNames)
Caches the list of parent groupNames for each membership for the named user in the specified directory.
|
public DefaultMembershipCache(com.atlassian.cache.CacheFactory cacheFactory)
public Boolean isUserDirectMember(long directoryId, String userName, String groupName)
MembershipCache
true
if the groupName is in the cached list of parents of the user, false
if groupName is not in the list, or null
if there is no cached list for the user.isUserDirectMember
in interface MembershipCache
public Boolean isGroupDirectMember(long directoryId, String groupName, String parentGroupName)
MembershipCache
true
if the parentGroupName is in the cached list of parents of the child group,
false
if parentGroupName is not in the list, or null
if there is no cached list for the child group.isGroupDirectMember
in interface MembershipCache
public void setGroupsForUser(long directoryId, String userName, Iterable<String> groupNames)
MembershipCache
setGroupsForUser
in interface MembershipCache
public void setGroupsForGroup(long directoryId, String groupName, Iterable<String> parentGroupNames)
MembershipCache
setGroupsForGroup
in interface MembershipCache
public List<String> getGroupsForUser(long directoryId, String userName)
MembershipCache
null
if there is no cached list.getGroupsForUser
in interface MembershipCache
public List<String> getGroupsForGroup(long directoryId, String groupName)
MembershipCache
null
if there is no cached list.getGroupsForGroup
in interface MembershipCache
public void removeUserGroupMemberships(long directoryId, String userName)
MembershipCache
removeUserGroupMemberships
in interface MembershipCache
public void removeGroupGroupMemberships(long directoryId, String groupName)
MembershipCache
removeGroupGroupMemberships
in interface MembershipCache
public void removeAllUserMemberships(long directoryId, String userName)
MembershipCache
removeAllUserMemberships
in interface MembershipCache
public void removeAllGroupMemberships(long directoryId, String groupName)
MembershipCache
removeAllGroupMemberships
in interface MembershipCache
public void removeAllDirectoryMemberships(long directoryId)
MembershipCache
removeAllDirectoryMemberships
in interface MembershipCache
Copyright © 2003–2015 Atlassian. All rights reserved.