Interface UserLoginService
-
- All Known Implementing Classes:
DefaultUserLoginService
public interface UserLoginServiceService for doing user authentication actions- Author:
- Jay Aisenbrey (cja769)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidloginUser(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, String clientId, String username, String password)Login a user outside of the filter chain
-
-
-
Method Detail
-
loginUser
void loginUser(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, String clientId, String username, String password)Login a user outside of the filter chain- Parameters:
request- TheHttpServletRequestthat prompted the login requestresponse- TheHttpServletResponsefor the givenHttpServletRequestclientId- The client id that the user belongs tousername- The user's usernamepassword- The user's unencoded password
-
-