Back to project page jotform-api-android.
The source code is released under:
GNU General Public License
If you think the Android project jotform-api-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.jotform.jotformapisample.model; /* www .jav a 2 s . c o m*/ public class CommonInfo { private String mApiKey; public String getApiKey() { return mApiKey; } public void setApiKey( String apiKey ) { mApiKey = apiKey; } }