SEC-1306: OpenIDAttribute class is not marked as Serializable. Added Serializable interface.
This commit is contained in:
parent
30b7000875
commit
8571571eaa
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue