Uses of Class
com.logicaldoc.core.security.Client
-
Packages that use Client Package Description com.logicaldoc.core Core plug-in that contains the most important domain objectscom.logicaldoc.core.security com.logicaldoc.core.security.authentication The pluggable authentication mechanism.com.logicaldoc.core.security.dao -
-
Uses of Client in com.logicaldoc.core
Methods in com.logicaldoc.core with parameters of type Client Modifier and Type Method Description void
History. setClient(Client client)
This setter sets the ip, device and other informations that can be captured by the given client -
Uses of Client in com.logicaldoc.core.security
Methods in com.logicaldoc.core.security that return Client Modifier and Type Method Description Client
SessionManager. buildClient(javax.servlet.http.HttpServletRequest req)
Create a client identified using a concatenation of Basic authentication credentials and remote IP.Client
Session. getClient()
Methods in com.logicaldoc.core.security with parameters of type Client Modifier and Type Method Description Session
SessionManager. createSession(User user, Client client)
Creates a new session by authenticated the given user and stores it in the pool of opened sessionsSession
SessionManager. newSession(String username, String password, Client client)
Creates a new session by authenticated the given user and stores it in the pool of opened sessionsSession
SessionManager. newSession(String username, String password, String key, Client client)
Creates a new session by authenticating the given user and stores it in the pool of opened sessionsstatic void
LoginThrottle. recordFailure(String username, Client client)
Saves the login failure in the database -
Uses of Client in com.logicaldoc.core.security.authentication
Methods in com.logicaldoc.core.security.authentication with parameters of type Client Modifier and Type Method Description User
AbstractAuthenticator. authenticate(String username, String password, String key, Client client)
User
AuthenticationChain. authenticate(String username, String password, String key, Client client)
User
Authenticator. authenticate(String username, String password, String key, Client client)
Authenticates the user using the given credentials, if successful, the corresponding user is returned. -
Uses of Client in com.logicaldoc.core.security.dao
Methods in com.logicaldoc.core.security.dao with parameters of type Client Modifier and Type Method Description UserHistory
HibernateUserHistoryDAO. createUserHistory(User user, String eventType, String comment, String sessionId, Client client)
UserHistory
UserHistoryDAO. createUserHistory(User user, String event, String comment, String sessionId, Client client)
Creates an user history entry
-