Package io.jans.scim.model.scim2.user
Class Address
- java.lang.Object
-
- io.jans.scim.model.scim2.user.Address
-
public class Address extends Object
Represents a physical mailing address for a user. See section 4.1.2 of RFC 7643.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Address.Type
-
Constructor Summary
Constructors Constructor Description Address()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCountry()
String
getFormatted()
String
getLocality()
String
getPostalCode()
Boolean
getPrimary()
String
getRegion()
String
getStreetAddress()
String
getType()
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(Address.Type type)
void
setType(String 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 String getType()
-
setType
public void setType(String type)
-
setType
public void setType(Address.Type type)
-
getPrimary
public Boolean getPrimary()
-
setPrimary
public void setPrimary(Boolean primary)
-
-