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

Remove Deprecated Usage

Issue gh-12086
This commit is contained in:
Josh Cummings
2022-12-05 11:00:57 -07:00
parent 8ef2fc3837
commit 886d1ffec2
2 changed files with 10 additions and 10 deletions
@@ -171,14 +171,14 @@ public final class CookieCsrfTokenRepository implements CsrfTokenRepository {
} }
/** /**
* Factory method to conveniently create an instance that has * Factory method to conveniently create an instance that creates cookies where
* {@link #setCookieHttpOnly(boolean)} set to false. * {@link Cookie#isHttpOnly()} is set to false.
* @return an instance of CookieCsrfTokenRepository with * @return an instance of CookieCsrfTokenRepository that creates cookies where
* {@link #setCookieHttpOnly(boolean)} set to false * {@link Cookie#isHttpOnly()} is set to false.
*/ */
public static CookieCsrfTokenRepository withHttpOnlyFalse() { public static CookieCsrfTokenRepository withHttpOnlyFalse() {
CookieCsrfTokenRepository result = new CookieCsrfTokenRepository(); CookieCsrfTokenRepository result = new CookieCsrfTokenRepository();
result.setCookieHttpOnly(false); result.setCookieCustomizer((cookie) -> cookie.httpOnly(false));
return result; return result;
} }
@@ -77,14 +77,14 @@ public final class CookieServerCsrfTokenRepository implements ServerCsrfTokenRep
} }
/** /**
* Factory method to conveniently create an instance that has * Factory method to conveniently create an instance that has creates cookies with
* {@link #setCookieHttpOnly(boolean)} set to false. * {@link ResponseCookie#isHttpOnly} set to false.
* @return an instance of CookieCsrfTokenRepository with * @return an instance of CookieCsrfTokenRepository that creates cookies with
* {@link #setCookieHttpOnly(boolean)} set to false * {@link ResponseCookie#isHttpOnly} set to false
*/ */
public static CookieServerCsrfTokenRepository withHttpOnlyFalse() { public static CookieServerCsrfTokenRepository withHttpOnlyFalse() {
CookieServerCsrfTokenRepository result = new CookieServerCsrfTokenRepository(); CookieServerCsrfTokenRepository result = new CookieServerCsrfTokenRepository();
result.setCookieHttpOnly(false); result.setCookieCustomizer((cookie) -> cookie.httpOnly(false));
return result; return result;
} }