From b0998c01bcd920d48e4fdeb179cfa0a61b1ac650 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Wed, 1 Sep 2010 18:43:07 +0100 Subject: [PATCH] SEC-1553: Make WebAuthenticationDetails serializable --- .../security/web/authentication/WebAuthenticationDetails.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/src/main/java/org/springframework/security/web/authentication/WebAuthenticationDetails.java b/web/src/main/java/org/springframework/security/web/authentication/WebAuthenticationDetails.java index ca4699fe5d..04aa918d9b 100644 --- a/web/src/main/java/org/springframework/security/web/authentication/WebAuthenticationDetails.java +++ b/web/src/main/java/org/springframework/security/web/authentication/WebAuthenticationDetails.java @@ -15,6 +15,7 @@ package org.springframework.security.web.authentication; +import java.io.Serializable; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpSession; @@ -24,7 +25,7 @@ import javax.servlet.http.HttpSession; * * @author Ben Alex */ -public class WebAuthenticationDetails { +public class WebAuthenticationDetails implements Serializable { //~ Instance fields ================================================================================================ private final String remoteAddress;