diff --git a/core/src/main/java/org/springframework/security/ui/webapp/AuthenticationProcessingFilterEntryPoint.java b/core/src/main/java/org/springframework/security/ui/webapp/AuthenticationProcessingFilterEntryPoint.java index 1f145db0dd..b83ca68b93 100644 --- a/core/src/main/java/org/springframework/security/ui/webapp/AuthenticationProcessingFilterEntryPoint.java +++ b/core/src/main/java/org/springframework/security/ui/webapp/AuthenticationProcessingFilterEntryPoint.java @@ -47,7 +47,6 @@ import javax.servlet.http.HttpServletResponse; * authentication via the {@link AuthenticationProcessingFilter}. This object * holds the location of the login form, relative to the web app context path, * and is used to commence a redirect to that form. - *
*
* By setting the forceHttps property to true, you may configure the
* class to force the protocol used for the login form to be HTTPS,
@@ -56,13 +55,11 @@ import javax.servlet.http.HttpServletResponse;
* (via HTTPS), the original resource will still be accessed as HTTP, via the
* original request URL. For the forced HTTPS feature to work, the {@link
* PortMapper} is consulted to determine the HTTP:HTTPS pairs.
- *
https, then the client will first be redirected to an https URL, even if serverSideRedirect
* is set to true.
- *
- * @param forceHttps
*/
public void setForceHttps(boolean forceHttps) {
this.forceHttps = forceHttps;
@@ -221,8 +216,6 @@ public class AuthenticationProcessingFilterEntryPoint implements AuthenticationE
* The URL where the AuthenticationProcessingFilter login
* page can be found. Should be relative to the web-app context path, and
* include a leading /
- *
- * @param loginFormUrl
*/
public void setLoginFormUrl(String loginFormUrl) {
this.loginFormUrl = loginFormUrl;