Class UserAddress
- java.lang.Object
-
- org.apache.cxf.jaxrs.json.basic.JsonMapObject
-
- org.apache.cxf.rs.security.oidc.common.UserAddress
-
- All Implemented Interfaces:
Serializable
public class UserAddress extends JsonMapObject
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UserAddress()UserAddress(Map<String,Object> claims)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCountry()StringgetFormatted()StringgetLocality()StringgetPostalCode()StringgetRegion()StringgetStreet()voidsetCountry(String name)voidsetFormatted(String name)voidsetLocality(String name)voidsetPostalCode(String name)voidsetRegion(String name)voidsetStreet(String name)-
Methods inherited from class org.apache.cxf.jaxrs.json.basic.JsonMapObject
asMap, containsProperty, equals, getBooleanProperty, getIntegerProperty, getJsonMapProperty, getListMapProperty, getListStringProperty, getLongProperty, getMapProperty, getProperty, getStringProperty, getUpdateCount, hashCode, removeProperty, setProperty, size
-
-
-
-
Field Detail
-
STREET
public static final String STREET
- See Also:
- Constant Field Values
-
POSTCODE
public static final String POSTCODE
- See Also:
- Constant Field Values
-
LOCALITY
public static final String LOCALITY
- See Also:
- Constant Field Values
-
COUNTRY
public static final String COUNTRY
- See Also:
- Constant Field Values
-
REGION
public static final String REGION
- See Also:
- Constant Field Values
-
FORMATTED
public static final String FORMATTED
- See Also:
- Constant Field Values
-
-
Method Detail
-
setStreet
public void setStreet(String name)
-
getStreet
public String getStreet()
-
setPostalCode
public void setPostalCode(String name)
-
getPostalCode
public String getPostalCode()
-
setLocality
public void setLocality(String name)
-
getLocality
public String getLocality()
-
setCountry
public void setCountry(String name)
-
getCountry
public String getCountry()
-
setRegion
public void setRegion(String name)
-
getRegion
public String getRegion()
-
setFormatted
public void setFormatted(String name)
-
getFormatted
public String getFormatted()
-
-