Back to project page xing-android-sdk.
The source code is released under:
Apache License
If you think the Android project xing-android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package de.hdodenhof.xingapi.models; /*from w ww.j a v a 2 s . co m*/ public class Address { private String street; private String zipCode; private String city; private String province; private String country; private String email; private String fax; private String phone; private String mobilePhone; public String getStreet() { return street; } public String getZipCode() { return zipCode; } public String getCity() { return city; } public String getProvince() { return province; } public String getCountry() { return country; } public String getEmail() { return email; } public String getFax() { return fax; } public String getPhone() { return phone; } public String getMobilePhone() { return mobilePhone; } }