Example usage for org.springframework.security.oauth2.provider.approval JdbcApprovalStore JdbcApprovalStore

List of usage examples for org.springframework.security.oauth2.provider.approval JdbcApprovalStore JdbcApprovalStore

Introduction

In this page you can find the example usage for org.springframework.security.oauth2.provider.approval JdbcApprovalStore JdbcApprovalStore.

Prototype

public JdbcApprovalStore(DataSource dataSource) 

Source Link

Usage

From source file:org.shaigor.rest.retro.security.gateway.config.OAuth2UserApprovalHandlerConfigurer.java

@Bean
public ApprovalStore approvalStore() throws Exception {
    JdbcApprovalStore store = new JdbcApprovalStore(securityDataSource);
    return store;
}