Parcourir la source

SEC-1306: OpenIDAttribute class is not marked as Serializable. Added Serializable interface.

Luke Taylor il y a 15 ans
Parent
commit
8571571eaa

+ 2 - 1
openid/src/main/java/org/springframework/security/openid/OpenIDAttribute.java

@@ -1,5 +1,6 @@
 package org.springframework.security.openid;
 
+import java.io.Serializable;
 import java.util.List;
 
 import org.springframework.util.Assert;
@@ -14,7 +15,7 @@ import org.springframework.util.Assert;
  * @version $Id$
  * @since 3.0
  */
-public class OpenIDAttribute {
+public class OpenIDAttribute implements Serializable {
     private final String name;
     private final String typeIdentifier;
     private boolean required = false;