001/*
002 * Copyright 2012-2018 the original author or authors.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *      http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.springframework.boot.autoconfigure.security.oauth2.resource.reactive;
017
018import org.springframework.boot.autoconfigure.AutoConfigureBefore;
019import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
020import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
021import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;
022import org.springframework.boot.autoconfigure.security.oauth2.resource.OAuth2ResourceServerProperties;
023import org.springframework.boot.autoconfigure.security.reactive.ReactiveSecurityAutoConfiguration;
024import org.springframework.boot.context.properties.EnableConfigurationProperties;
025import org.springframework.context.annotation.Configuration;
026import org.springframework.context.annotation.Import;
027import org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity;
028import org.springframework.security.oauth2.server.resource.BearerTokenAuthenticationToken;
029
030/**
031 * {@link EnableAutoConfiguration Auto-configuration} for Reactive OAuth2 resource server
032 * support.
033 *
034 * @author Madhura Bhave
035 * @since 2.1.0
036 */
037@Configuration
038@AutoConfigureBefore(ReactiveSecurityAutoConfiguration.class)
039@EnableConfigurationProperties(OAuth2ResourceServerProperties.class)
040@ConditionalOnClass({ EnableWebFluxSecurity.class, BearerTokenAuthenticationToken.class })
041@ConditionalOnWebApplication(type = ConditionalOnWebApplication.Type.REACTIVE)
042@Import({ ReactiveOAuth2ResourceServerJwkConfiguration.class,
043                ReactiveOAuth2ResourceServerWebSecurityConfiguration.class })
044public class ReactiveOAuth2ResourceServerAutoConfiguration {
045
046}