mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-26 13:53:14 +00:00
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…
x
Reference in New Issue
Block a user