Class SCIMUserAddressConf
- java.lang.Object
-
- org.apache.syncope.common.lib.scim.SCIMUserAddressConf
-
- All Implemented Interfaces:
Serializable
public class SCIMUserAddressConf extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SCIMUserAddressConf()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,String>
asMap()
String
getCountry()
String
getFormatted()
String
getLocality()
String
getPostalCode()
String
getRegion()
String
getStreetAddress()
AddressCanonicalType
getType()
boolean
isPrimary()
void
setCountry(String country)
void
setFormatted(String formatted)
void
setLocality(String locality)
void
setPostalCode(String postalCode)
void
setPrimary(boolean primary)
void
setRegion(String region)
void
setStreetAddress(String streetAddress)
void
setType(AddressCanonicalType type)
-
-
-
Method Detail
-
getFormatted
public String getFormatted()
-
setFormatted
public void setFormatted(String formatted)
-
getStreetAddress
public String getStreetAddress()
-
setStreetAddress
public void setStreetAddress(String streetAddress)
-
getLocality
public String getLocality()
-
setLocality
public void setLocality(String locality)
-
getRegion
public String getRegion()
-
setRegion
public void setRegion(String region)
-
getPostalCode
public String getPostalCode()
-
setPostalCode
public void setPostalCode(String postalCode)
-
getCountry
public String getCountry()
-
setCountry
public void setCountry(String country)
-
getType
public AddressCanonicalType getType()
-
setType
public void setType(AddressCanonicalType type)
-
isPrimary
public boolean isPrimary()
-
setPrimary
public void setPrimary(boolean primary)
-
-