mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-27 14:22:47 +00:00
Add marker to make Kotlin DSL type safe.
Fixes gh-8366
This commit is contained in:
parent
4e5a3a76cd
commit
146d9ba0bf
@ -34,6 +34,7 @@ import reactor.core.publisher.Mono
|
|||||||
* @author Eleftheria Stein
|
* @author Eleftheria Stein
|
||||||
* @since 5.4
|
* @since 5.4
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class AuthorizeExchangeDsl {
|
class AuthorizeExchangeDsl {
|
||||||
private val authorizationRules = mutableListOf<ExchangeAuthorizationRule>()
|
private val authorizationRules = mutableListOf<ExchangeAuthorizationRule>()
|
||||||
|
|
||||||
|
@ -32,6 +32,7 @@ import org.springframework.security.web.server.authentication.AnonymousAuthentic
|
|||||||
* @property authenticationFilter the [AnonymousAuthenticationWebFilter] used to populate
|
* @property authenticationFilter the [AnonymousAuthenticationWebFilter] used to populate
|
||||||
* an anonymous user.
|
* an anonymous user.
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerAnonymousDsl {
|
class ServerAnonymousDsl {
|
||||||
var key: String? = null
|
var key: String? = null
|
||||||
var principal: Any? = null
|
var principal: Any? = null
|
||||||
|
@ -26,6 +26,7 @@ import org.springframework.web.cors.reactive.CorsConfigurationSource
|
|||||||
* @since 5.4
|
* @since 5.4
|
||||||
* @property configurationSource the [CorsConfigurationSource] to use.
|
* @property configurationSource the [CorsConfigurationSource] to use.
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerCorsDsl {
|
class ServerCorsDsl {
|
||||||
var configurationSource: CorsConfigurationSource? = null
|
var configurationSource: CorsConfigurationSource? = null
|
||||||
|
|
||||||
|
@ -32,6 +32,7 @@ import org.springframework.security.web.server.util.matcher.ServerWebExchangeMat
|
|||||||
* @property requireCsrfProtectionMatcher the [ServerWebExchangeMatcher] used to determine when CSRF protection
|
* @property requireCsrfProtectionMatcher the [ServerWebExchangeMatcher] used to determine when CSRF protection
|
||||||
* is enabled.
|
* is enabled.
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerCsrfDsl {
|
class ServerCsrfDsl {
|
||||||
var accessDeniedHandler: ServerAccessDeniedHandler? = null
|
var accessDeniedHandler: ServerAccessDeniedHandler? = null
|
||||||
var csrfTokenRepository: ServerCsrfTokenRepository? = null
|
var csrfTokenRepository: ServerCsrfTokenRepository? = null
|
||||||
|
@ -30,6 +30,7 @@ import org.springframework.security.web.server.authorization.ServerAccessDeniedH
|
|||||||
* @property accessDeniedHandler the [ServerAccessDeniedHandler] to use when an
|
* @property accessDeniedHandler the [ServerAccessDeniedHandler] to use when an
|
||||||
* authenticated user does not hold a required authority
|
* authenticated user does not hold a required authority
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerExceptionHandlingDsl {
|
class ServerExceptionHandlingDsl {
|
||||||
var authenticationEntryPoint: ServerAuthenticationEntryPoint? = null
|
var authenticationEntryPoint: ServerAuthenticationEntryPoint? = null
|
||||||
var accessDeniedHandler: ServerAccessDeniedHandler? = null
|
var accessDeniedHandler: ServerAccessDeniedHandler? = null
|
||||||
|
@ -50,6 +50,7 @@ import org.springframework.security.web.server.util.matcher.ServerWebExchangeMat
|
|||||||
* [ReactorContextWebFilter] must be configured to be able to load the value (they are not
|
* [ReactorContextWebFilter] must be configured to be able to load the value (they are not
|
||||||
* implicitly linked).
|
* implicitly linked).
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerFormLoginDsl {
|
class ServerFormLoginDsl {
|
||||||
var authenticationManager: ReactiveAuthenticationManager? = null
|
var authenticationManager: ReactiveAuthenticationManager? = null
|
||||||
var loginPage: String? = null
|
var loginPage: String? = null
|
||||||
|
@ -25,6 +25,7 @@ import org.springframework.security.web.server.header.*
|
|||||||
* @author Eleftheria Stein
|
* @author Eleftheria Stein
|
||||||
* @since 5.4
|
* @since 5.4
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerHeadersDsl {
|
class ServerHeadersDsl {
|
||||||
private var contentTypeOptions: ((ServerHttpSecurity.HeaderSpec.ContentTypeOptionsSpec) -> Unit)? = null
|
private var contentTypeOptions: ((ServerHttpSecurity.HeaderSpec.ContentTypeOptionsSpec) -> Unit)? = null
|
||||||
private var xssProtection: ((ServerHttpSecurity.HeaderSpec.XssProtectionSpec) -> Unit)? = null
|
private var xssProtection: ((ServerHttpSecurity.HeaderSpec.XssProtectionSpec) -> Unit)? = null
|
||||||
|
@ -38,6 +38,7 @@ import org.springframework.security.web.server.context.ServerSecurityContextRepo
|
|||||||
* @property authenticationEntryPoint the [ServerAuthenticationEntryPoint] to be
|
* @property authenticationEntryPoint the [ServerAuthenticationEntryPoint] to be
|
||||||
* populated on [BasicAuthenticationFilter] in the event that authentication fails.
|
* populated on [BasicAuthenticationFilter] in the event that authentication fails.
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerHttpBasicDsl {
|
class ServerHttpBasicDsl {
|
||||||
var authenticationManager: ReactiveAuthenticationManager? = null
|
var authenticationManager: ReactiveAuthenticationManager? = null
|
||||||
var securityContextRepository: ServerSecurityContextRepository? = null
|
var securityContextRepository: ServerSecurityContextRepository? = null
|
||||||
|
@ -57,6 +57,7 @@ operator fun ServerHttpSecurity.invoke(httpConfiguration: ServerHttpSecurityDsl.
|
|||||||
* @since 5.4
|
* @since 5.4
|
||||||
* @param init the configurations to apply to the provided [ServerHttpSecurity]
|
* @param init the configurations to apply to the provided [ServerHttpSecurity]
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerHttpSecurityDsl(private val http: ServerHttpSecurity, private val init: ServerHttpSecurityDsl.() -> Unit) {
|
class ServerHttpSecurityDsl(private val http: ServerHttpSecurity, private val init: ServerHttpSecurityDsl.() -> Unit) {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -28,6 +28,7 @@ import org.springframework.web.server.ServerWebExchange
|
|||||||
* @since 5.4
|
* @since 5.4
|
||||||
* @property portMapper the [PortMapper] that specifies a custom HTTPS port to redirect to.
|
* @property portMapper the [PortMapper] that specifies a custom HTTPS port to redirect to.
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerHttpsRedirectDsl {
|
class ServerHttpsRedirectDsl {
|
||||||
var portMapper: PortMapper? = null
|
var portMapper: PortMapper? = null
|
||||||
|
|
||||||
|
@ -32,6 +32,7 @@ import org.springframework.security.web.server.util.matcher.ServerWebExchangeMat
|
|||||||
* @property logoutSuccessHandler the [ServerLogoutSuccessHandler] to use after logout has
|
* @property logoutSuccessHandler the [ServerLogoutSuccessHandler] to use after logout has
|
||||||
* occurred.
|
* occurred.
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerLogoutDsl {
|
class ServerLogoutDsl {
|
||||||
var logoutHandler: ServerLogoutHandler? = null
|
var logoutHandler: ServerLogoutHandler? = null
|
||||||
var logoutUrl: String? = null
|
var logoutUrl: String? = null
|
||||||
|
@ -38,6 +38,7 @@ import org.springframework.web.server.ServerWebExchange
|
|||||||
* @property authorizedClientRepository the repository for authorized client(s).
|
* @property authorizedClientRepository the repository for authorized client(s).
|
||||||
* @property authorizationRequestRepository the repository to use for storing [OAuth2AuthorizationRequest]s.
|
* @property authorizationRequestRepository the repository to use for storing [OAuth2AuthorizationRequest]s.
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerOAuth2ClientDsl {
|
class ServerOAuth2ClientDsl {
|
||||||
var authenticationManager: ReactiveAuthenticationManager? = null
|
var authenticationManager: ReactiveAuthenticationManager? = null
|
||||||
var authenticationConverter: ServerAuthenticationConverter? = null
|
var authenticationConverter: ServerAuthenticationConverter? = null
|
||||||
|
@ -52,6 +52,7 @@ import org.springframework.web.server.ServerWebExchange
|
|||||||
* @property authenticationMatcher the [ServerWebExchangeMatcher] used for determining if the request is an
|
* @property authenticationMatcher the [ServerWebExchangeMatcher] used for determining if the request is an
|
||||||
* authentication request.
|
* authentication request.
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerOAuth2LoginDsl {
|
class ServerOAuth2LoginDsl {
|
||||||
var authenticationManager: ReactiveAuthenticationManager? = null
|
var authenticationManager: ReactiveAuthenticationManager? = null
|
||||||
var securityContextRepository: ServerSecurityContextRepository? = null
|
var securityContextRepository: ServerSecurityContextRepository? = null
|
||||||
|
@ -37,6 +37,7 @@ import org.springframework.web.server.ServerWebExchange
|
|||||||
* Bearer Tokens.
|
* Bearer Tokens.
|
||||||
* @property authenticationManagerResolver the [ReactiveAuthenticationManagerResolver] to use.
|
* @property authenticationManagerResolver the [ReactiveAuthenticationManagerResolver] to use.
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerOAuth2ResourceServerDsl {
|
class ServerOAuth2ResourceServerDsl {
|
||||||
var accessDeniedHandler: ServerAccessDeniedHandler? = null
|
var accessDeniedHandler: ServerAccessDeniedHandler? = null
|
||||||
var authenticationEntryPoint: ServerAuthenticationEntryPoint? = null
|
var authenticationEntryPoint: ServerAuthenticationEntryPoint? = null
|
||||||
|
@ -25,6 +25,7 @@ import org.springframework.security.web.server.savedrequest.ServerRequestCache
|
|||||||
* @since 5.4
|
* @since 5.4
|
||||||
* @property requestCache allows explicit configuration of the [ServerRequestCache] to be used.
|
* @property requestCache allows explicit configuration of the [ServerRequestCache] to be used.
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerRequestCacheDsl {
|
class ServerRequestCacheDsl {
|
||||||
var requestCache: ServerRequestCache? = null
|
var requestCache: ServerRequestCache? = null
|
||||||
|
|
||||||
|
@ -0,0 +1,26 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2002-2020 the original author or authors.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* https://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.springframework.security.config.web.server
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Marker annotation indicating that the annotated class is part of the security DSL for server configuration.
|
||||||
|
*
|
||||||
|
* @author Loïc Labagnara
|
||||||
|
* @since 5.4
|
||||||
|
*/
|
||||||
|
@DslMarker
|
||||||
|
annotation class ServerSecurityMarker
|
@ -29,6 +29,7 @@ import org.springframework.security.web.authentication.preauth.x509.X509Principa
|
|||||||
* @property authenticationManager the [ReactiveAuthenticationManager] used to determine if the provided
|
* @property authenticationManager the [ReactiveAuthenticationManager] used to determine if the provided
|
||||||
* [Authentication] can be authenticated.
|
* [Authentication] can be authenticated.
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerX509Dsl {
|
class ServerX509Dsl {
|
||||||
var principalExtractor: X509PrincipalExtractor? = null
|
var principalExtractor: X509PrincipalExtractor? = null
|
||||||
var authenticationManager: ReactiveAuthenticationManager? = null
|
var authenticationManager: ReactiveAuthenticationManager? = null
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
package org.springframework.security.config.web.server.headers
|
package org.springframework.security.config.web.server.headers
|
||||||
|
|
||||||
import org.springframework.security.config.web.server.ServerHttpSecurity
|
import org.springframework.security.config.web.server.ServerHttpSecurity
|
||||||
|
import org.springframework.security.config.web.server.ServerSecurityMarker
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A Kotlin DSL to configure the [ServerHttpSecurity] cache control headers using
|
* A Kotlin DSL to configure the [ServerHttpSecurity] cache control headers using
|
||||||
@ -25,6 +26,7 @@ import org.springframework.security.config.web.server.ServerHttpSecurity
|
|||||||
* @author Eleftheria Stein
|
* @author Eleftheria Stein
|
||||||
* @since 5.4
|
* @since 5.4
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerCacheControlDsl {
|
class ServerCacheControlDsl {
|
||||||
private var disabled = false
|
private var disabled = false
|
||||||
|
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
package org.springframework.security.config.web.server.headers
|
package org.springframework.security.config.web.server.headers
|
||||||
|
|
||||||
import org.springframework.security.config.web.server.ServerHttpSecurity
|
import org.springframework.security.config.web.server.ServerHttpSecurity
|
||||||
|
import org.springframework.security.config.web.server.ServerSecurityMarker
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A Kotlin DSL to configure the [ServerHttpSecurity] Content-Security-Policy header using
|
* A Kotlin DSL to configure the [ServerHttpSecurity] Content-Security-Policy header using
|
||||||
@ -25,6 +26,7 @@ import org.springframework.security.config.web.server.ServerHttpSecurity
|
|||||||
* @author Eleftheria Stein
|
* @author Eleftheria Stein
|
||||||
* @since 5.4
|
* @since 5.4
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerContentSecurityPolicyDsl {
|
class ServerContentSecurityPolicyDsl {
|
||||||
var policyDirectives: String? = null
|
var policyDirectives: String? = null
|
||||||
var reportOnly: Boolean? = null
|
var reportOnly: Boolean? = null
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
package org.springframework.security.config.web.server.headers
|
package org.springframework.security.config.web.server.headers
|
||||||
|
|
||||||
import org.springframework.security.config.web.server.ServerHttpSecurity
|
import org.springframework.security.config.web.server.ServerHttpSecurity
|
||||||
|
import org.springframework.security.config.web.server.ServerSecurityMarker
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A Kotlin DSL to configure the [ServerHttpSecurity] the content type options header
|
* A Kotlin DSL to configure the [ServerHttpSecurity] the content type options header
|
||||||
@ -25,6 +26,7 @@ import org.springframework.security.config.web.server.ServerHttpSecurity
|
|||||||
* @author Eleftheria Stein
|
* @author Eleftheria Stein
|
||||||
* @since 5.4
|
* @since 5.4
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerContentTypeOptionsDsl {
|
class ServerContentTypeOptionsDsl {
|
||||||
private var disabled = false
|
private var disabled = false
|
||||||
|
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
package org.springframework.security.config.web.server.headers
|
package org.springframework.security.config.web.server.headers
|
||||||
|
|
||||||
import org.springframework.security.config.web.server.ServerHttpSecurity
|
import org.springframework.security.config.web.server.ServerHttpSecurity
|
||||||
|
import org.springframework.security.config.web.server.ServerSecurityMarker
|
||||||
import org.springframework.security.web.server.header.XFrameOptionsServerHttpHeadersWriter
|
import org.springframework.security.web.server.header.XFrameOptionsServerHttpHeadersWriter
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -27,6 +28,7 @@ import org.springframework.security.web.server.header.XFrameOptionsServerHttpHea
|
|||||||
* @since 5.4
|
* @since 5.4
|
||||||
* @property mode the X-Frame-Options mode to set in the response header.
|
* @property mode the X-Frame-Options mode to set in the response header.
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerFrameOptionsDsl {
|
class ServerFrameOptionsDsl {
|
||||||
var mode: XFrameOptionsServerHttpHeadersWriter.Mode? = null
|
var mode: XFrameOptionsServerHttpHeadersWriter.Mode? = null
|
||||||
|
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
package org.springframework.security.config.web.server.headers
|
package org.springframework.security.config.web.server.headers
|
||||||
|
|
||||||
import org.springframework.security.config.web.server.ServerHttpSecurity
|
import org.springframework.security.config.web.server.ServerHttpSecurity
|
||||||
|
import org.springframework.security.config.web.server.ServerSecurityMarker
|
||||||
import java.time.Duration
|
import java.time.Duration
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -30,6 +31,7 @@ import java.time.Duration
|
|||||||
* @property includeSubdomains if true, subdomains should be considered HSTS Hosts too.
|
* @property includeSubdomains if true, subdomains should be considered HSTS Hosts too.
|
||||||
* @property preload if true, preload will be included in HSTS Header.
|
* @property preload if true, preload will be included in HSTS Header.
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerHttpStrictTransportSecurityDsl {
|
class ServerHttpStrictTransportSecurityDsl {
|
||||||
var maxAge: Duration? = null
|
var maxAge: Duration? = null
|
||||||
var includeSubdomains: Boolean? = null
|
var includeSubdomains: Boolean? = null
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
package org.springframework.security.config.web.server.headers
|
package org.springframework.security.config.web.server.headers
|
||||||
|
|
||||||
import org.springframework.security.config.web.server.ServerHttpSecurity
|
import org.springframework.security.config.web.server.ServerHttpSecurity
|
||||||
|
import org.springframework.security.config.web.server.ServerSecurityMarker
|
||||||
import org.springframework.security.web.server.header.ReferrerPolicyServerHttpHeadersWriter
|
import org.springframework.security.web.server.header.ReferrerPolicyServerHttpHeadersWriter
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -27,6 +28,7 @@ import org.springframework.security.web.server.header.ReferrerPolicyServerHttpHe
|
|||||||
* @since 5.4
|
* @since 5.4
|
||||||
* @property policy the policy to be used in the response header.
|
* @property policy the policy to be used in the response header.
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerReferrerPolicyDsl {
|
class ServerReferrerPolicyDsl {
|
||||||
var policy: ReferrerPolicyServerHttpHeadersWriter.ReferrerPolicy? = null
|
var policy: ReferrerPolicyServerHttpHeadersWriter.ReferrerPolicy? = null
|
||||||
|
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
package org.springframework.security.config.web.server.headers
|
package org.springframework.security.config.web.server.headers
|
||||||
|
|
||||||
import org.springframework.security.config.web.server.ServerHttpSecurity
|
import org.springframework.security.config.web.server.ServerHttpSecurity
|
||||||
|
import org.springframework.security.config.web.server.ServerSecurityMarker
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A Kotlin DSL to configure the [ServerHttpSecurity] XSS protection header using
|
* A Kotlin DSL to configure the [ServerHttpSecurity] XSS protection header using
|
||||||
@ -25,6 +26,7 @@ import org.springframework.security.config.web.server.ServerHttpSecurity
|
|||||||
* @author Eleftheria Stein
|
* @author Eleftheria Stein
|
||||||
* @since 5.4
|
* @since 5.4
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerXssProtectionDsl {
|
class ServerXssProtectionDsl {
|
||||||
private var disabled = false
|
private var disabled = false
|
||||||
|
|
||||||
|
@ -20,6 +20,7 @@ import org.springframework.core.convert.converter.Converter
|
|||||||
import org.springframework.security.authentication.AbstractAuthenticationToken
|
import org.springframework.security.authentication.AbstractAuthenticationToken
|
||||||
import org.springframework.security.authentication.ReactiveAuthenticationManager
|
import org.springframework.security.authentication.ReactiveAuthenticationManager
|
||||||
import org.springframework.security.config.web.server.ServerHttpSecurity
|
import org.springframework.security.config.web.server.ServerHttpSecurity
|
||||||
|
import org.springframework.security.config.web.server.ServerSecurityMarker
|
||||||
import org.springframework.security.core.Authentication
|
import org.springframework.security.core.Authentication
|
||||||
import org.springframework.security.oauth2.jwt.Jwt
|
import org.springframework.security.oauth2.jwt.Jwt
|
||||||
import org.springframework.security.oauth2.jwt.ReactiveJwtDecoder
|
import org.springframework.security.oauth2.jwt.ReactiveJwtDecoder
|
||||||
@ -40,6 +41,7 @@ import java.security.interfaces.RSAPublicKey
|
|||||||
* @property jwkSetUri configures a [ReactiveJwtDecoder] using a
|
* @property jwkSetUri configures a [ReactiveJwtDecoder] using a
|
||||||
* <a target="_blank" href="https://tools.ietf.org/html/rfc7517">JSON Web Key (JWK)</a> URL
|
* <a target="_blank" href="https://tools.ietf.org/html/rfc7517">JSON Web Key (JWK)</a> URL
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerJwtDsl {
|
class ServerJwtDsl {
|
||||||
private var _jwtDecoder: ReactiveJwtDecoder? = null
|
private var _jwtDecoder: ReactiveJwtDecoder? = null
|
||||||
private var _publicKey: RSAPublicKey? = null
|
private var _publicKey: RSAPublicKey? = null
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
package org.springframework.security.config.web.server.oauth2.resourceserver
|
package org.springframework.security.config.web.server.oauth2.resourceserver
|
||||||
|
|
||||||
import org.springframework.security.config.web.server.ServerHttpSecurity
|
import org.springframework.security.config.web.server.ServerHttpSecurity
|
||||||
|
import org.springframework.security.config.web.server.ServerSecurityMarker
|
||||||
import org.springframework.security.oauth2.server.resource.introspection.ReactiveOpaqueTokenIntrospector
|
import org.springframework.security.oauth2.server.resource.introspection.ReactiveOpaqueTokenIntrospector
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -27,6 +28,7 @@ import org.springframework.security.oauth2.server.resource.introspection.Reactiv
|
|||||||
* @property introspectionUri the URI of the Introspection endpoint.
|
* @property introspectionUri the URI of the Introspection endpoint.
|
||||||
* @property introspector the [ReactiveOpaqueTokenIntrospector] to use.
|
* @property introspector the [ReactiveOpaqueTokenIntrospector] to use.
|
||||||
*/
|
*/
|
||||||
|
@ServerSecurityMarker
|
||||||
class ServerOpaqueTokenDsl {
|
class ServerOpaqueTokenDsl {
|
||||||
private var _introspectionUri: String? = null
|
private var _introspectionUri: String? = null
|
||||||
private var _introspector: ReactiveOpaqueTokenIntrospector? = null
|
private var _introspector: ReactiveOpaqueTokenIntrospector? = null
|
||||||
|
Loading…
x
Reference in New Issue
Block a user