From 426e526694526bd8d9d1dfbd1563171bcdec6f3c Mon Sep 17 00:00:00 2001
From: Luke Taylor
Date: Mon, 3 Mar 2008 21:57:59 +0000
Subject: [PATCH] Minor tidying.
---
.../webapp/AuthenticationProcessingFilterEntryPoint.java | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
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.
- *
*
* @author Ben Alex
* @author colin sampaleanu
* @author Omri Spector
- * @version $Id: AuthenticationProcessingFilterEntryPoint.java 1873 2007-05-25
- * 03:21:17Z benalex $
+ * @version $Id$
*/
public class AuthenticationProcessingFilterEntryPoint implements AuthenticationEntryPoint, InitializingBean {
//~ Static fields/initializers =====================================================================================
@@ -206,8 +203,6 @@ public class AuthenticationProcessingFilterEntryPoint implements AuthenticationE
* and the incoming request for the protected resource which triggered the interceptor was not already
* 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;