Back to project page Campaign-Manager-Code-Sample.
The source code is released under:
Apache License
If you think the Android project Campaign-Manager-Code-Sample 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.microsoft.campaignmanager.datasource; // w ww. j a va 2 s .com import java.util.List; import org.json.JSONException; import org.json.JSONObject; import com.microsoft.office365.OfficeEntity; public class SPUrl extends OfficeEntity { public static List<SPUrl> listFromJson(JSONObject json) throws JSONException { return OfficeEntity.listFromJson(json, SPUrl.class); } public SPUrl() { } public String getDescription() { return (String) getData("description"); } public String getUrl() { return (String) getData("url"); } }