33 lines
945 B
Java
33 lines
945 B
Java
package com.kofax.kmc.kut.utilities.appstats;
|
|
|
|
import com.kofax.kmc.kut.utilities.appstats.AppStatsExportListener;
|
|
import com.kofax.kmc.kut.utilities.error.ErrorInfo;
|
|
import java.util.EventObject;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class AppStatsExportEvent extends EventObject {
|
|
private static final long serialVersionUID = 7736630429273660485L;
|
|
private ErrorInfo errorInfo;
|
|
private int pA;
|
|
private AppStatsExportListener.ExportStatus pz;
|
|
|
|
public AppStatsExportEvent(Object obj, AppStatsExportListener.ExportStatus exportStatus, int i, ErrorInfo errorInfo) {
|
|
super(obj);
|
|
this.pz = exportStatus;
|
|
this.pA = i;
|
|
this.errorInfo = errorInfo;
|
|
}
|
|
|
|
public int getPercentComplete() {
|
|
return this.pA;
|
|
}
|
|
|
|
public AppStatsExportListener.ExportStatus getExportStatus() {
|
|
return this.pz;
|
|
}
|
|
|
|
public ErrorInfo getErrorInfo() {
|
|
return this.errorInfo;
|
|
}
|
|
}
|