Package org.eclipse.jetty.ee8.security
Interface Authenticator.AuthConfiguration
- All Known Implementing Classes:
ConstraintSecurityHandler,SecurityHandler,WrappedAuthConfiguration
- Enclosing interface:
Authenticator
public static interface Authenticator.AuthConfiguration
Authenticator Configuration
-
Method Summary
Modifier and TypeMethodDescriptionorg.eclipse.jetty.security.IdentityServicegetInitParameter(String param) Get a SecurityHandler init parameterGet a SecurityHandler init parameter namesorg.eclipse.jetty.security.LoginServiceintGet the interval in seconds, which if non-zero, will be set withHttpSession.setMaxInactiveInterval(int)when a session is newly authenticatedbooleanShould session ID be renewed on authentication.
-
Method Details
-
getAuthMethod
String getAuthMethod() -
getRealmName
String getRealmName() -
getInitParameter
-
getInitParameterNames
-
getLoginService
org.eclipse.jetty.security.LoginService getLoginService() -
getIdentityService
org.eclipse.jetty.security.IdentityService getIdentityService() -
isSessionRenewedOnAuthentication
boolean isSessionRenewedOnAuthentication()Should session ID be renewed on authentication.- Returns:
- true if the session ID should be renewed on authentication
-
getSessionMaxInactiveIntervalOnAuthentication
int getSessionMaxInactiveIntervalOnAuthentication()Get the interval in seconds, which if non-zero, will be set withHttpSession.setMaxInactiveInterval(int)when a session is newly authenticated- Returns:
- An interval in seconds; or 0 to not set the interval on authentication; or a negative number to make the session never timeout after authentication.
-