Back to project page LicenseModuleChecker-Client-Android.
The source code is released under:
<?xml version="1.0" encoding="UTF-8"?> <module external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" type="JAVA_MODULE" version="4"> <comp...
If you think the Android project LicenseModuleChecker-Client-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.asynhkm.productchecker.schema; //ww w . ja v a2 s . c om /** * Created by Hesk on 30/12/2014. */ public class DataProductVersion { private String clientID, siteURL, licensePerson, product, createdAt, checked, expire, key, licenseHash; private ReturnResult rr; private boolean brandingRemoval, demoDisplay, useExpiration, licenseStatusLive; public String getLicenseKey() { return key; } public String getExpiration() { return expire; } public boolean isDemo() { return demoDisplay; } public boolean isbrandingRemoved() { return brandingRemoval; } public void setRR(ReturnResult rlr) { rr = rlr; } public boolean isError() { return rr != null; } public String getErrorMsg() { return rr.getMsg(); } }