Add @since attributes

Issue gh-8900
This commit is contained in:
Josh Cummings 2020-12-16 15:41:38 -07:00
parent 34b4b1054f
commit c066e23a86
No known key found for this signature in database
GPG Key ID: 49EF60DD7FF83443
7 changed files with 7 additions and 0 deletions

View File

@ -1329,6 +1329,7 @@ public final class HttpSecurity extends AbstractConfiguredSecurityBuilder<Defaul
* options for the {@link AuthorizationManagerRequestMatcherRegistry}
* @return the {@link HttpSecurity} for further customizations
* @throws Exception
* @since 5.5
* @see #requestMatcher(RequestMatcher)
*/
public HttpSecurity authorizeHttpRequests(

View File

@ -41,6 +41,7 @@ import org.springframework.util.Assert;
*
* @param <H> the type of {@link HttpSecurityBuilder} that is being configured.
* @author Evgeniy Cheban
* @since 5.5
*/
public final class AuthorizeHttpRequestsConfigurer<H extends HttpSecurityBuilder<H>>
extends AbstractHttpConfigurer<AuthorizeHttpRequestsConfigurer<H>, H> {

View File

@ -27,6 +27,7 @@ import org.springframework.security.core.Authentication;
*
* @param <T> the type of object authorization is being performed against. This does not.
* @author Evgeniy Cheban
* @since 5.5
*/
public final class AuthenticatedAuthorizationManager<T> implements AuthorizationManager<T> {

View File

@ -31,6 +31,7 @@ import org.springframework.util.Assert;
*
* @param <T> the type of object being authorized.
* @author Evgeniy Cheban
* @since 5.5
*/
public final class AuthorityAuthorizationManager<T> implements AuthorizationManager<T> {

View File

@ -35,6 +35,7 @@ import org.springframework.web.filter.OncePerRequestFilter;
* {@link AuthorizationManager}.
*
* @author Evgeniy Cheban
* @since 5.5
*/
public class AuthorizationFilter extends OncePerRequestFilter {

View File

@ -38,6 +38,7 @@ import org.springframework.util.Assert;
* {@link AuthorizationManager} based on a {@link RequestMatcher} evaluation.
*
* @author Evgeniy Cheban
* @since 5.5
*/
public final class DelegatingAuthorizationManager implements AuthorizationManager<HttpServletRequest> {

View File

@ -25,6 +25,7 @@ import javax.servlet.http.HttpServletRequest;
* An {@link HttpServletRequest} authorization context.
*
* @author Evgeniy Cheban
* @since 5.5
*/
public final class RequestAuthorizationContext {