what-the-bank/sources/com/kofax/kmc/kui/uicontrols/LicenseFoundEvent.java

32 lines
719 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.kofax.kmc.kui.uicontrols;
import com.kofax.kmc.kut.utilities.error.ErrorInfo;
import java.util.EventObject;
/* loaded from: classes3.dex */
public class LicenseFoundEvent extends EventObject {
private static final long serialVersionUID = 1;
private ErrorInfo mb;
private int mc;
private String md;
public LicenseFoundEvent(Object obj, ErrorInfo errorInfo, int i, String str) {
super(obj);
this.mb = errorInfo;
this.mc = i;
this.md = str;
}
public String getLicenseString() {
return this.md;
}
public ErrorInfo getErrorInfo() {
return this.mb;
}
public int getDaysRemaining() {
return this.mc;
}
}