Javadocs author tag doesn't work in methods
This commit is contained in:
committed by
Eleftheria Stein-Kousathana
parent
6b26032ce7
commit
a188138715
@@ -104,7 +104,6 @@ public class HeaderWriterFilter extends OncePerRequestFilter {
|
||||
* Allow writing headers at the beginning of the request.
|
||||
* @param shouldWriteHeadersEagerly boolean to allow writing headers at the beginning
|
||||
* of the request.
|
||||
* @author Ankur Pathak
|
||||
* @since 5.2
|
||||
*/
|
||||
public void setShouldWriteHeadersEagerly(boolean shouldWriteHeadersEagerly) {
|
||||
|
||||
@@ -82,7 +82,6 @@ public final class HstsHeaderWriter implements HeaderWriter {
|
||||
* @param includeSubDomains maps to {@link #setIncludeSubDomains(boolean)}
|
||||
* @param preload maps to {@link #setPreload(boolean)}
|
||||
* @since 5.2.0
|
||||
* @author Ankur Pathak
|
||||
*/
|
||||
public HstsHeaderWriter(RequestMatcher requestMatcher, long maxAgeInSeconds, boolean includeSubDomains,
|
||||
boolean preload) {
|
||||
@@ -109,7 +108,6 @@ public final class HstsHeaderWriter implements HeaderWriter {
|
||||
* @param includeSubDomains maps to {@link #setIncludeSubDomains(boolean)}
|
||||
* @param preload maps to {@link #setPreload(boolean)}
|
||||
* @since 5.2.0
|
||||
* @author Ankur Pathak
|
||||
*/
|
||||
public HstsHeaderWriter(long maxAgeInSeconds, boolean includeSubDomains, boolean preload) {
|
||||
this(new SecureRequestMatcher(), maxAgeInSeconds, includeSubDomains, preload);
|
||||
@@ -222,7 +220,6 @@ public final class HstsHeaderWriter implements HeaderWriter {
|
||||
* </p>
|
||||
* @param preload true to include preload, else false
|
||||
* @since 5.2.0
|
||||
* @author Ankur Pathak
|
||||
*/
|
||||
public void setPreload(boolean preload) {
|
||||
this.preload = preload;
|
||||
|
||||
@@ -27,6 +27,7 @@ import org.springframework.web.server.ServerWebExchange;
|
||||
* Writes the Strict-Transport-Security if the request is secure.
|
||||
*
|
||||
* @author Rob Winch
|
||||
* @author Ankur Pathak
|
||||
* @since 5.0
|
||||
*/
|
||||
public final class StrictTransportSecurityServerHttpHeadersWriter implements ServerHttpHeadersWriter {
|
||||
@@ -73,7 +74,6 @@ public final class StrictTransportSecurityServerHttpHeadersWriter implements Ser
|
||||
* </p>
|
||||
* @param preload if preload should be included
|
||||
* @since 5.2.0
|
||||
* @author Ankur Pathak
|
||||
*/
|
||||
public void setPreload(boolean preload) {
|
||||
this.preload = preload ? " ; preload" : "";
|
||||
|
||||
Reference in New Issue
Block a user