Interface PunchOutUserAuthenticationStrategy
-
- All Known Implementing Classes:
DefaultPunchOutUserAuthenticationStrategy
public interface PunchOutUserAuthenticationStrategy
Authentication strategy for Punch Out users.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
authenticate(UserModel user, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
Authenticates a user into the system.void
logout()
Logs out a user from the system.
-
-
-
Method Detail
-
authenticate
void authenticate(UserModel user, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
Authenticates a user into the system.- Parameters:
user
- the userrequest
- the HTTP requestresponse
- the HTTP response
-
logout
void logout()
Logs out a user from the system.
-
-