From 1d6fdd249bea9c5b9878d09c95c26713b753bdde Mon Sep 17 00:00:00 2001 From: Eleftheria Stein Date: Tue, 11 Feb 2020 18:09:12 +0100 Subject: [PATCH] Add missing Javadoc to Kotlin class --- .../config/web/servlet/AbstractRequestMatcherDsl.kt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/config/src/main/kotlin/org/springframework/security/config/web/servlet/AbstractRequestMatcherDsl.kt b/config/src/main/kotlin/org/springframework/security/config/web/servlet/AbstractRequestMatcherDsl.kt index 6aa2906530..799d0106bc 100644 --- a/config/src/main/kotlin/org/springframework/security/config/web/servlet/AbstractRequestMatcherDsl.kt +++ b/config/src/main/kotlin/org/springframework/security/config/web/servlet/AbstractRequestMatcherDsl.kt @@ -19,8 +19,13 @@ package org.springframework.security.config.web.servlet import org.springframework.security.web.util.matcher.AnyRequestMatcher import org.springframework.security.web.util.matcher.RequestMatcher +/** + * A base class that provides authorization rules for [RequestMatcher]s and patterns. + * + * @author Eleftheria Stein + * @since 5.3 + */ abstract class AbstractRequestMatcherDsl { - /** * Matches any request. */