public interface Session
Modifier and Type | Method and Description |
---|---|
AuthenticationManager |
getAuthenticationManager()
Gets an
AuthenticationManager . |
AuthorizationManager |
getAuthorizationManager()
Gets an
AuthorizationManager . |
TraversalManager |
getTraversalManager()
Gets a
TraversalManager to implement query-based traversal. |
TraversalManager getTraversalManager() throws RepositoryException
TraversalManager
to implement query-based traversal.TraversalManager
- should not be null
RepositoryException
AuthenticationManager getAuthenticationManager() throws RepositoryException
AuthenticationManager
. It is permissible to return
null
. A null
return means that this implementation does
not support an authentication manager. This may be for one of these
reasons:
AuthenticationManager
- may be null
RepositoryException
AuthorizationManager getAuthorizationManager() throws RepositoryException
AuthorizationManager
. It is permissible to return
null
. A null
return means that this implementation does
not support an authorization manager. This may be for one of these
reasons:
AuthorizationManager
- may be null
RepositoryException