mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-27 06:12:27 +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;
|
package org.springframework.security.openid;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import org.springframework.util.Assert;
|
import org.springframework.util.Assert;
|
||||||
@ -14,7 +15,7 @@ import org.springframework.util.Assert;
|
|||||||
* @version $Id$
|
* @version $Id$
|
||||||
* @since 3.0
|
* @since 3.0
|
||||||
*/
|
*/
|
||||||
public class OpenIDAttribute {
|
public class OpenIDAttribute implements Serializable {
|
||||||
private final String name;
|
private final String name;
|
||||||
private final String typeIdentifier;
|
private final String typeIdentifier;
|
||||||
private boolean required = false;
|
private boolean required = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user