Package com.day.cq.security
Interface UserManagerFactory
-
public interface UserManagerFactory
Deprecated.cq 5.5 UseJackrabbitSession#getUserManager()
instead.Creates aUserManager
for a givenSession
. Implementations have to return a UserManager, that respects the access rights of the given Session.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description UserManager
createUserManager(javax.jcr.Session session)
Deprecated.NOTE: the Manager will be invalid if session is closed.
-
-
-
Method Detail
-
createUserManager
UserManager createUserManager(javax.jcr.Session session) throws javax.jcr.AccessDeniedException
Deprecated.NOTE: the Manager will be invalid if session is closed.- Parameters:
session
- to access a UserManager for- Returns:
- the user manager
- Throws:
javax.jcr.AccessDeniedException
- in case the session is not allowed to access a UserManager
-
-