Class UserSGAccountsCache
java.lang.Object
oracle.stellent.ridc.convenience.usersecurity.impl.UserSecurityGroupsCache
oracle.stellent.ridc.convenience.usersecurity.impl.UserSGAccountsCache
- All Implemented Interfaces:
IUserSecurityCache
- Direct Known Subclasses:
UserSGAcctAclCache
Implementation of Content Security will check Security Groups and Accounts
-
Nested Class Summary
Nested classes/interfaces inherited from interface oracle.stellent.ridc.convenience.usersecurity.IUserSecurityCache
IUserSecurityCache.AdminType
-
Field Summary
Fields inherited from class oracle.stellent.ridc.convenience.usersecurity.impl.UserSecurityGroupsCache
m_accessResolvers, m_csEnvCache, m_idcClient, m_log, m_securityGroupsResolver, m_serviceCallUtils, m_userPermissionsCache
-
Constructor Summary
ConstructorsConstructorDescriptionUserSGAccountsCache
(IdcClient idcClient, int cacheMaxSize, long userTimeToLive, long serverTimeToLive) Deprecated.UserSGAccountsCache
(IdcClient idcClient, int cacheMaxSize, long userTimeToLive, long serverTimeToLive, IdcContext superuser) Create a security implementation that checks Security Groups and Accounts if Account Security is enabled on the content server with UseAccounts=1UserSGAccountsCache
(IdcClient idcClient, int cacheMaxSize, long userTimeToLive, long serverTimeToLive, IdcContext superuser, IServiceCallUtils serviceCallUtils) Create a security implementation that checks Security Groups and Accounts if Account Security is enabled on the content server with UseAccounts=1 -
Method Summary
Methods inherited from class oracle.stellent.ridc.convenience.usersecurity.impl.UserSecurityGroupsCache
addAccessResolver, clearCache, clearCache, getAccessLevelForDocument, getAccessLevelForDocument, getCacheIdForUser, getCacheIdForUser, getIdcClient, getInUseCount, getPermissions, getServiceCallUtils, getUserSecurityFlags, initializeCache, isAdmin, isAdmin, isAuthorDelete, putPermissions, removeCacheId, removePermissions, removeStaleEntries, setIdcClient, setServiceCallUtils
-
Constructor Details
-
UserSGAccountsCache
public UserSGAccountsCache(IdcClient idcClient, int cacheMaxSize, long userTimeToLive, long serverTimeToLive) Deprecated.Create a security implementation that checks Security Groups and Accounts if Account Security is enabled on the content server with UseAccounts=1 This constructor will use the anonymous user to fetch environment information. You should consider using another constructor and the superuser as some environment information is restricted. Since this is a potentially dangerous configuration (you will silently not get all the information you think you should be getting) it is marked as deprecated.- Parameters:
idcClient
- RIDC connection informationcacheMaxSize
- Number of entries (userids) to keep in LRU cacheuserTimeToLive
- Number of milliseconds before an entry is too oldserverTimeToLive
- Number of milliseconds to keep server's Environment information- See Also:
-
UserSGAccountsCache
public UserSGAccountsCache(IdcClient idcClient, int cacheMaxSize, long userTimeToLive, long serverTimeToLive, IdcContext superuser) Create a security implementation that checks Security Groups and Accounts if Account Security is enabled on the content server with UseAccounts=1- Parameters:
idcClient
- RIDC connection informationcacheMaxSize
- Number of entries (userids) to keep in LRU cacheuserTimeToLive
- Number of milliseconds before an entry is too oldserverTimeToLive
- Number of milliseconds to keep server's Environment informationsuperuser
- Admin-level user to fetch environment information- See Also:
-
UserSGAccountsCache
public UserSGAccountsCache(IdcClient idcClient, int cacheMaxSize, long userTimeToLive, long serverTimeToLive, IdcContext superuser, IServiceCallUtils serviceCallUtils) Create a security implementation that checks Security Groups and Accounts if Account Security is enabled on the content server with UseAccounts=1- Parameters:
idcClient
- RIDC connection informationcacheMaxSize
- Number of entries (userids) to keep in LRU cacheuserTimeToLive
- Number of milliseconds before an entry is too oldserverTimeToLive
- Number of milliseconds to keep server's Environment informationsuperuser
- Admin-level user to fetch environment informationserviceCallUtils
- util class perhaps a mock object for testing- See Also:
-