All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.formkiq.server.config.OAuth2ResourceServerConfig Maven / Gradle / Ivy

There is a newer version: 0.6.1
Show newest version
package com.formkiq.server.config;

import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.oauth2.config.annotation.web.configuration.EnableResourceServer;
import org.springframework.security.oauth2.config.annotation.web.configuration.ResourceServerConfigurerAdapter;

/**
 * OAuth2ResourceServerConfig.
 *
 */
@Configuration
@EnableResourceServer
public class OAuth2ResourceServerConfig
    extends ResourceServerConfigurerAdapter {

    @Override
    public void configure(final HttpSecurity http) throws Exception {
        http.requestMatcher(new OAuthRequestedMatcher())
        .authorizeRequests()
            .anyRequest().authenticated();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy