public interface PostalAddress extends ExtensibleObject
PostalAddress
.Modifier and Type | Method and Description |
---|---|
java.lang.String |
getCity()
Returns the city.
|
java.lang.String |
getCountry()
Returns the Country.
|
java.lang.String |
getPostalCode()
Returns the Postal code..
|
java.lang.String |
getStateOrProvince()
Returns the State or Province.
|
java.lang.String |
getStreet()
Returns the Street.
|
java.lang.String |
getStreetNumber()
Returns the Street Number.
|
java.lang.String |
getType()
Returns the type of address (for example, "headquarters") as a String.
|
void |
setCity(java.lang.String city)
Sets the city.
|
void |
setCountry(java.lang.String country)
Sets the Country.
|
void |
setPostalCode(java.lang.String postalCode)
Sets the PostalCode.
|
void |
setStateOrProvince(java.lang.String stateOrProvince)
Sets the State or Province.
|
void |
setStreet(java.lang.String street)
Sets the Street.
|
void |
setStreetNumber(java.lang.String streetNumber)
Sets the street number.
|
void |
setType(java.lang.String type)
Sets the type of address (for example, "headquarters") as a String.
|
getSlots, setSlots
java.lang.String getCity() throws CSAppFrameworkException
CSAppFrameworkException
- if an internal error occurs on getting the city.void setCity(java.lang.String city) throws CSAppFrameworkException
city
- the city name.CSAppFrameworkException
- if an internal error occurs on setting the city.java.lang.String getCountry() throws CSAppFrameworkException
CSAppFrameworkException
- if an internal error occurs on getting the country.void setCountry(java.lang.String country) throws CSAppFrameworkException
country
- the country name.CSAppFrameworkException
- if an internal error occurs on setting the country.java.lang.String getPostalCode() throws CSAppFrameworkException
CSAppFrameworkException
- if an internal error occurs on getting the postal code.void setPostalCode(java.lang.String postalCode) throws CSAppFrameworkException
postalCode
- the postal code.CSAppFrameworkException
- if an internal error occurs on setting the postal code.java.lang.String getStateOrProvince() throws CSAppFrameworkException
CSAppFrameworkException
- if an internal error occurs on getting the State or Province.void setStateOrProvince(java.lang.String stateOrProvince) throws CSAppFrameworkException
stateOrProvince
- the State or Province.CSAppFrameworkException
- if an internal error occurs on setting the State or Province.java.lang.String getStreet() throws CSAppFrameworkException
CSAppFrameworkException
- if an internal error occurs on getting the Street.void setStreet(java.lang.String street) throws CSAppFrameworkException
street
- the street.CSAppFrameworkException
- if an internal error occurs on setting the Street.java.lang.String getStreetNumber() throws CSAppFrameworkException
CSAppFrameworkException
- if an internal error occurs on getting the street number.void setStreetNumber(java.lang.String streetNumber) throws CSAppFrameworkException
streetNumber
- the street number.CSAppFrameworkException
- if an internal error occurs on setting the street number.java.lang.String getType() throws CSAppFrameworkException
CSAppFrameworkException
- if an internal error occurs on getting the type.void setType(java.lang.String type) throws CSAppFrameworkException
type
- the type of address (for example, "headquarters") as a String.CSAppFrameworkException
- if an internal error occurs on setting the type.