1
0
mirror of synced 2026-05-22 21:33:16 +00:00

Use consistent "@" tag order in Javadoc

Ensure that Javadoc "@" tags appear in a consistent and well defined
order.

Issue gh-8945
This commit is contained in:
Phillip Webb
2020-07-24 15:03:32 -07:00
committed by Rob Winch
parent 7f0653fa34
commit 5f64f53c3f
195 changed files with 556 additions and 607 deletions
@@ -43,8 +43,8 @@ import org.springframework.security.web.FilterInvocation;
* A JSP {@link Tag} implementation of {@link AbstractAuthorizeTag}.
*
* @author Rossen Stoyanchev
* @see AbstractAuthorizeTag
* @since 3.1.0
* @see AbstractAuthorizeTag
*/
public class JspAuthorizeTag extends AbstractAuthorizeTag implements Tag {
@@ -25,8 +25,8 @@ import java.io.IOException;
/**
* An abstract tag for handling CSRF operations.
*
* @since 3.2.2
* @author Nick Williams
* @since 3.2.2
*/
abstract class AbstractCsrfTag extends TagSupport {
@@ -22,8 +22,8 @@ import org.springframework.security.web.csrf.CsrfToken;
* A JSP tag that prints out a hidden form field for the CSRF token. See the JSP Tab
* Library documentation for more information.
*
* @since 3.2.2
* @author Nick Williams
* @since 3.2.2
*/
public class CsrfInputTag extends AbstractCsrfTag {
@@ -22,8 +22,8 @@ import org.springframework.security.web.csrf.CsrfToken;
* A JSP tag that prints out a meta tags holding the CSRF form field name and token value
* for use in JavaScrip code. See the JSP Tab Library documentation for more information.
*
* @since 3.2.2
* @author Nick Williams
* @since 3.2.2
*/
public class CsrfMetaTagsTag extends AbstractCsrfTag {