LicenseManager
getCurrent()
License currentLicense = licenseManager.getCurrent();getTrialLicense(String email)
try {
UnactivatedTrialLicense trial = licenseManager.getTrialLicense("[email protected]");
License license = licenseManager.activateLicense(trial.createIdentity());
}
catch(LicenseSpringException e)
{
log.error("Something went wrong",e);
return;
}activateLicenseKey(ActivationLicense identity)
deactivateLicense(LicenseIdentity identity)
getInstallationFile(LicenseIdentity identity)
getVersions(LicenseIdentity identity)
trackVariables(LicenseIdentity identity, Map<String, String> variables)
getProduct()
getAirGapActivationCode
activateAirGapResponse
verifyAirGapConfirmationCode
Was this helpful?