Back to project page uppidy-android-sdk.
The source code is released under:
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCT...
If you think the Android project uppidy-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 com.uppidy.android.sdk.api; //from w w w .j a v a2 s .c o m import java.util.List; import java.util.Map; /** * Reference to a contact * * Part of the Uppidy Web Services API * * @author arudnev@uppidy.com */ public class ApiContact extends ApiEntity { private String name; private Map<String, List<String>> addressByType; public String getName() { return name; } public void setName(String name) { this.name = name; } public Map<String, List<String>> getAddressByType() { return addressByType; } public void setAddressByType(Map<String, List<String>> addressByType) { this.addressByType = addressByType; } }