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.servlet;
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.servlet.SecurityAutoConfiguration;
024import org.springframework.boot.context.properties.EnableConfigurationProperties;
025import org.springframework.context.annotation.Configuration;
026import org.springframework.context.annotation.Import;
027import org.springframework.security.oauth2.server.resource.authentication.JwtAuthenticationToken;
028
029/**
030 * {@link EnableAutoConfiguration Auto-configuration} for OAuth resource server support.
031 *
032 * @author Madhura Bhave
033 * @since 2.1.0
034 */
035@Configuration
036@AutoConfigureBefore(SecurityAutoConfiguration.class)
037@EnableConfigurationProperties(OAuth2ResourceServerProperties.class)
038@ConditionalOnClass(JwtAuthenticationToken.class)
039@ConditionalOnWebApplication(type = ConditionalOnWebApplication.Type.SERVLET)
040@Import({ OAuth2ResourceServerJwkConfiguration.class,
041                OAuth2ResourceServerWebSecurityConfiguration.class })
042public class OAuth2ResourceServerAutoConfiguration {
043
044}