Interface PunchOutUserAuthenticationStrategy
- All Known Implementing Classes:
DefaultPunchOutUserAuthenticationStrategy
public interface PunchOutUserAuthenticationStrategy
Authentication strategy for Punch Out users.
-
Method Summary
Modifier and TypeMethodDescriptionvoidauthenticate(String userId, 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 Details
-
authenticate
void authenticate(String userId, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) Authenticates a user into the system.- Parameters:
userId- the userIdrequest- the HTTP requestresponse- the HTTP response
-
logout
void logout()Logs out a user from the system.
-