Back to project page Mamytas.
The source code is released under:
GNU General Public License
If you think the Android project Mamytas 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 mn.aug.restfulandroid.rest.resource; // ww w. ja v a 2 s . c o m import android.net.Uri; import com.fasterxml.jackson.annotation.JsonCreator; import java.util.List; /** * Facade representing the Tasks data * * @author hashbrown * */ public class Lists implements Resource { public static final String AUTHORITY="WUNDERLIST"; public static final String PATH="LISTS"; public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/" + PATH); private List<Listw> lists; @JsonCreator public Lists(List<Listw> lists) { this.lists=lists; } public List<Listw> getLists() { return lists; } }