Interface AdminConsoleAuthenticator
- All Known Implementing Classes:
DefaultAdminConsoleAuthenticator,IdentityServiceAdminConsoleAuthenticator
public interface AdminConsoleAuthenticator
An interface for objects capable of extracting an externally authenticated user ID from the HTTP Admin Console webscript request.
-
Method Summary
Modifier and TypeMethodDescriptiongetAdminConsoleUser(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) Gets an externally authenticated user ID from the HTTP Admin Console webscript request.voidrequestAuthentication(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) Requests an authentication.
-
Method Details
-
getAdminConsoleUser
String getAdminConsoleUser(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) Gets an externally authenticated user ID from the HTTP Admin Console webscript request.- Parameters:
request- the requestresponse- the response- Returns:
- the user ID or
nullif the user is unauthenticated
-
requestAuthentication
void requestAuthentication(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response) Requests an authentication.- Parameters:
request- the requestresponse- the response
-