32 lines
846 B
Java
32 lines
846 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;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class AppStatsExportResults {
|
|
private AppStatsExportListener.ExportStatus pC;
|
|
private ErrorInfo pD;
|
|
|
|
public AppStatsExportResults(ErrorInfo errorInfo, AppStatsExportListener.ExportStatus exportStatus) {
|
|
this.pD = errorInfo;
|
|
this.pC = exportStatus;
|
|
}
|
|
|
|
public void setState(AppStatsExportListener.ExportStatus exportStatus) {
|
|
this.pC = exportStatus;
|
|
}
|
|
|
|
public void setError(ErrorInfo errorInfo) {
|
|
this.pD = errorInfo;
|
|
}
|
|
|
|
public ErrorInfo isError() {
|
|
return this.pD;
|
|
}
|
|
|
|
public AppStatsExportListener.ExportStatus getState() {
|
|
return this.pC;
|
|
}
|
|
}
|