Interface PunchOutUserAuthenticationStrategy
-
- All Known Implementing Classes:
DefaultPunchOutUserAuthenticationStrategy
public interface PunchOutUserAuthenticationStrategyAuthentication strategy for Punch Out users.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidauthenticate(UserModel user, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)Authenticates a user into the system.voidlogout()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.
-
-