SEC-1553: Make WebAuthenticationDetails serializable

This commit is contained in:
Luke Taylor 2010-09-01 18:43:07 +01:00
parent 577ec27507
commit b0998c01bc
1 changed files with 2 additions and 1 deletions

View File

@ -15,6 +15,7 @@
package org.springframework.security.web.authentication; package org.springframework.security.web.authentication;
import java.io.Serializable;
import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession; import javax.servlet.http.HttpSession;
@ -24,7 +25,7 @@ import javax.servlet.http.HttpSession;
* *
* @author Ben Alex * @author Ben Alex
*/ */
public class WebAuthenticationDetails { public class WebAuthenticationDetails implements Serializable {
//~ Instance fields ================================================================================================ //~ Instance fields ================================================================================================
private final String remoteAddress; private final String remoteAddress;