Example usage for org.springframework.security.core.session SessionRegistryImpl SessionRegistryImpl

List of usage examples for org.springframework.security.core.session SessionRegistryImpl SessionRegistryImpl

Introduction

In this page you can find the example usage for org.springframework.security.core.session SessionRegistryImpl SessionRegistryImpl.

Prototype

public SessionRegistryImpl() 

Source Link

Usage

From source file:com.acme.portal.SecurityConfig.java

@Bean
@Override/*  ww  w .  ja  v a2 s .  c  o  m*/
protected SessionAuthenticationStrategy sessionAuthenticationStrategy() {
    return new RegisterSessionAuthenticationStrategy(new SessionRegistryImpl());
}

From source file:cz.muni.fi.editor.test.service.support.configs.TestConfiguration.java

@Bean
public SessionRegistry sessionRegistry() {
    return new SessionRegistryImpl();
}