Back to project page mobile-connector-sdk-android.
The source code is released under:
Apache License
If you think the Android project mobile-connector-sdk-android 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.silverpop.engage.domain; //from w w w . j a v a 2 s. c o m import org.json.JSONObject; /** * Created by jeremydyer on 5/19/14. */ public interface JSONable { /** * Must return a JSON-compliant representation of this object, * in the form of a JSONObject. * * @return The JSONObject representation. * Implementations may throw other unchecked exceptions. */ JSONObject toJSONObject(); }