51 lines
1.8 KiB
Java
51 lines
1.8 KiB
Java
|
package com.kofax.kmc.kut.utilities;
|
||
|
|
||
|
import com.kofax.kmc.kut.utilities.Licensing;
|
||
|
import com.kofax.kmc.kut.utilities.error.ErrorInfo;
|
||
|
import com.kofax.mobile.sdk.aa.f;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class LicensingVolume {
|
||
|
public static ErrorInfo setMobileSDKLicenseServer(String str, Licensing.LicenseServerType licenseServerType) {
|
||
|
return f.setMobileSDKLicenseServer(str, licenseServerType);
|
||
|
}
|
||
|
|
||
|
public static void acquireVolumeLicenses(Licensing.LicenseType licenseType, int i) {
|
||
|
f.acquireVolumeLicenses(licenseType, i);
|
||
|
}
|
||
|
|
||
|
public static int getRemainingLicenseCount(Licensing.LicenseType licenseType) {
|
||
|
return f.getRemainingLicenseCount(licenseType);
|
||
|
}
|
||
|
|
||
|
public static void decrementRemainingLicenseCount(Licensing.LicenseType licenseType) {
|
||
|
f.decrementRemainingLicenseCount(licenseType);
|
||
|
}
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public static class LicenseResults {
|
||
|
public ErrorInfo errorInfo;
|
||
|
public String result;
|
||
|
|
||
|
public LicenseResults(ErrorInfo errorInfo) {
|
||
|
this.errorInfo = errorInfo;
|
||
|
}
|
||
|
|
||
|
public LicenseResults() {
|
||
|
this.errorInfo = ErrorInfo.KMC_SUCCESS;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public static void addVolumeLicenseEventListener(Licensing.VolumeLicenseEventListener volumeLicenseEventListener) {
|
||
|
f.addVolumeLicenseEventListener(volumeLicenseEventListener);
|
||
|
}
|
||
|
|
||
|
public static void removeVolumeLicenseEventListener(Licensing.VolumeLicenseEventListener volumeLicenseEventListener) {
|
||
|
f.removeVolumeLicenseEventListener(volumeLicenseEventListener);
|
||
|
}
|
||
|
|
||
|
public static void setCertificateValidatorListener(CertificateValidatorListener certificateValidatorListener) {
|
||
|
f.setCertificateValidatorListener(certificateValidatorListener);
|
||
|
}
|
||
|
}
|