org.springframework.security.web.authentication.rememberme.PersistentTokenBasedRememberMeServices Java Examples
The following examples show how to use
org.springframework.security.web.authentication.rememberme.PersistentTokenBasedRememberMeServices.
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: SmsCodeAuthenticationSecurityConfig.java From paascloud-master with Apache License 2.0 | 6 votes |
/** * Configure. * * @param http the http */ @Override public void configure(HttpSecurity http) { SmsCodeAuthenticationFilter smsCodeAuthenticationFilter = new SmsCodeAuthenticationFilter(); smsCodeAuthenticationFilter.setAuthenticationManager(http.getSharedObject(AuthenticationManager.class)); smsCodeAuthenticationFilter.setAuthenticationSuccessHandler(pcAuthenticationSuccessHandler); smsCodeAuthenticationFilter.setAuthenticationFailureHandler(pcAuthenticationFailureHandler); String key = UUID.randomUUID().toString(); smsCodeAuthenticationFilter.setRememberMeServices(new PersistentTokenBasedRememberMeServices(key, userDetailsService, persistentTokenRepository)); SmsCodeAuthenticationProvider smsCodeAuthenticationProvider = new SmsCodeAuthenticationProvider(); smsCodeAuthenticationProvider.setUserDetailsService(userDetailsService); http.authenticationProvider(smsCodeAuthenticationProvider) .addFilterAfter(smsCodeAuthenticationFilter, UsernamePasswordAuthenticationFilter.class); // }
Example #2
Source File: MultiHttpSecurityConfig.java From enhanced-pet-clinic with Apache License 2.0 | 5 votes |
@Bean public RememberMeServices getRememberMeServices() { PersistentTokenBasedRememberMeServices services = new PersistentTokenBasedRememberMeServices( rememberMeToken, new BasicRememberMeUserDetailsService(), new InMemoryTokenRepositoryImpl()); services.setParameter(rememberMeParameter); return services; }
Example #3
Source File: MultiHttpSecurityConfig.java From enhanced-pet-clinic with Apache License 2.0 | 5 votes |
@Bean public RememberMeServices getRememberMeServices() { JdbcUserDetailsManager jdbcUserDetailsManager = new JdbcUserDetailsManager(); jdbcUserDetailsManager.setDataSource(dataSource); JdbcTokenRepositoryImpl jdbcTokenRepositoryImpl = new JdbcTokenRepositoryImpl(); jdbcTokenRepositoryImpl.setDataSource(dataSource); PersistentTokenBasedRememberMeServices services = new PersistentTokenBasedRememberMeServices( rememberMeToken, jdbcUserDetailsManager, jdbcTokenRepositoryImpl); services.setParameter(rememberMeParameter); return services; }
Example #4
Source File: WebSecurityConfigration.java From Taroco with Apache License 2.0 | 4 votes |
/** * RememberMeServices */ public RememberMeServices rememberMeServices() { final JdbcTokenRepositoryImpl tokenRepository = new JdbcTokenRepositoryImpl(); tokenRepository.setDataSource(dataSource); return new PersistentTokenBasedRememberMeServices(RM_KEY, userNameUserDetailsService, tokenRepository); }