Package com.logicaldoc.web.service
Class LoginServiceImpl
java.lang.Object
javax.servlet.GenericServlet
javax.servlet.http.HttpServlet
com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet
com.google.gwt.user.server.rpc.RemoteServiceServlet
com.logicaldoc.web.service.LoginServiceImpl
- All Implemented Interfaces:
com.google.gwt.user.client.rpc.RemoteService
,com.google.gwt.user.server.rpc.SerializationPolicyProvider
,LoginService
,Serializable
,javax.servlet.Servlet
,javax.servlet.ServletConfig
public class LoginServiceImpl
extends com.google.gwt.user.server.rpc.RemoteServiceServlet
implements LoginService
Implementation of the
LoginService
- Since:
- 7.5
- Author:
- Marco Meschieri - LogicalDOC
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.logicaldoc.gui.login.client.services.LoginService
LoginService.Instance
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionchangePassword
(long userId, String oldPassword, String newPassword) Changes the password of a usergeneratePassword
(String username) Generates a password using the configured policies.boolean
isSecretKeyRequired
(String username, String deviceId) Check if a secret key must be provided by the uservoid
resetPassword
(String username, String emailAddress, String productName) Reset the password for the given email.Methods inherited from class com.google.gwt.user.server.rpc.RemoteServiceServlet
getSerializationPolicy, init, processCall, processCall, processPost
Methods inherited from class com.google.gwt.user.server.rpc.AbstractRemoteServiceServlet
doPost
Methods inherited from class javax.servlet.http.HttpServlet
service
Methods inherited from class javax.servlet.GenericServlet
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, log, log
-
Constructor Details
-
LoginServiceImpl
public LoginServiceImpl()
-
-
Method Details
-
changePassword
Description copied from interface:LoginService
Changes the password of a user- Specified by:
changePassword
in interfaceLoginService
- Parameters:
userId
- The user IdentifieroldPassword
- can be null or is the old passwordnewPassword
- the new password- Returns:
- the error code and message. 0 if all went ok, 1 if the password is incorrect, 2 if the new password cannot be notified, 3 if the password has been already used, otherwise a positive number grater than 3
-
getUser
- Specified by:
getUser
in interfaceLoginService
-
resetPassword
public void resetPassword(String username, String emailAddress, String productName) throws ServerException Description copied from interface:LoginService
Reset the password for the given email.- Specified by:
resetPassword
in interfaceLoginService
- Parameters:
username
- the username for which reset passwordemailAddress
- the email for which reset passwordproductName
- the application product name- Throws:
ServerException
- error in the server application
-
isSecretKeyRequired
Description copied from interface:LoginService
Check if a secret key must be provided by the user- Specified by:
isSecretKeyRequired
in interfaceLoginService
- Parameters:
username
- the username trying to logindeviceId
- identifier of the current device- Returns:
- True only if the user must provide the secret key
- Throws:
ServerException
- if the user is unexisting or any kind of server error
-
generatePassword
Description copied from interface:LoginService
Generates a password using the configured policies.- Specified by:
generatePassword
in interfaceLoginService
- Parameters:
username
- the current user- Returns:
- the generated password
-