Class OpenIDAttribute
java.lang.Object
org.springframework.security.openid.OpenIDAttribute
- All Implemented Interfaces:
Serializable
Deprecated.
Represents an OpenID subject identity attribute.
Can be used for configuring the OpenID4JavaConsumer with the attributes which should be requested during a fetch request, or to hold values for an attribute which are returned during the authentication process.
- Since:
- 3.0
- See Also:
-
Constructor Summary
ConstructorDescriptionOpenIDAttribute
(String name, String type) Deprecated.OpenIDAttribute
(String name, String type, List<String> values) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionint
getCount()
Deprecated.The requested count for the attribute when it is used as part of an authentication request.getName()
Deprecated.The attribute namegetType()
Deprecated.The attribute type Identifier (a URI).Deprecated.The values obtained from an attribute exchange.boolean
Deprecated.The "required" flag for the attribute when used with an authentication request.void
setCount
(int count) Deprecated.void
setRequired
(boolean required) Deprecated.toString()
Deprecated.
-
Constructor Details
-
OpenIDAttribute
Deprecated. -
OpenIDAttribute
Deprecated.
-
-
Method Details
-
getName
Deprecated.The attribute name -
getType
Deprecated.The attribute type Identifier (a URI). -
isRequired
public boolean isRequired()Deprecated.The "required" flag for the attribute when used with an authentication request. Defaults to "false". -
setRequired
public void setRequired(boolean required) Deprecated. -
getCount
public int getCount()Deprecated.The requested count for the attribute when it is used as part of an authentication request. Defaults to 1. -
setCount
public void setCount(int count) Deprecated. -
getValues
Deprecated.The values obtained from an attribute exchange. -
toString
Deprecated.
-
spring-security-oauth2
.