Java Code Examples for org.eclipse.jetty.server.Request#getSessionManager()

The following examples show how to use org.eclipse.jetty.server.Request#getSessionManager() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: KeycloakJettyAuthenticator.java    From keycloak with Apache License 2.0 4 votes vote down vote up
@Override
public JettyUserSessionManagement createSessionManagement(Request request) {
    return new JettyUserSessionManagement(new Jetty93SessionManager(request.getSessionManager()));
}
 
Example 2
Source File: KeycloakJettyAuthenticator.java    From keycloak with Apache License 2.0 4 votes vote down vote up
@Override
public JettyUserSessionManagement createSessionManagement(Request request) {
    return new JettyUserSessionManagement(new Jetty92SessionManager(request.getSessionManager()));
}
 
Example 3
Source File: KeycloakSamlAuthenticator.java    From keycloak with Apache License 2.0 4 votes vote down vote up
@Override
public JettyUserSessionManagement createSessionManagement(Request request) {
    return new JettyUserSessionManagement(new Jetty9SessionManager(request.getSessionManager()));
}
 
Example 4
Source File: KeycloakSamlAuthenticator.java    From keycloak with Apache License 2.0 4 votes vote down vote up
@Override
public JettyUserSessionManagement createSessionManagement(Request request) {
    return new JettyUserSessionManagement(new Jetty9SessionManager(request.getSessionManager()));
}