Package org.pac4j.oauth.profile.paypal
Class PayPalAddress
- java.lang.Object
-
- org.pac4j.oauth.profile.paypal.PayPalAddress
-
- All Implemented Interfaces:
Serializable
public class PayPalAddress extends Object implements Serializable
This class represents a PayPal address.- Since:
- 1.4.2
- Author:
- Jerome Leleu
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PayPalAddress()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCountry()StringgetLocality()StringgetPostalCode()StringgetStreetAddress()voidsetCountry(String country)voidsetLocality(String locality)voidsetPostalCode(String postalCode)voidsetStreetAddress(String streetAddress)
-
-
-
Method Detail
-
getStreetAddress
public String getStreetAddress()
-
setStreetAddress
public void setStreetAddress(String streetAddress)
-
getLocality
public String getLocality()
-
setLocality
public void setLocality(String locality)
-
getPostalCode
public String getPostalCode()
-
setPostalCode
public void setPostalCode(String postalCode)
-
getCountry
public String getCountry()
-
setCountry
public void setCountry(String country)
-
-