67 lines
2.1 KiB
Java
67 lines
2.1 KiB
Java
|
package com.kofax.mobile.sdk.capture.check;
|
||
|
|
||
|
import android.content.Context;
|
||
|
import com.kofax.kmc.ken.engines.data.CheckSide;
|
||
|
import com.kofax.mobile.sdk._internal.dagger.Injector;
|
||
|
import com.kofax.mobile.sdk.capture.model.Check;
|
||
|
import com.kofax.mobile.sdk.capture.parameter.ExtractionParameters;
|
||
|
import com.kofax.mobile.sdk.capture.parameter.IParameters;
|
||
|
import com.kofax.mobile.sdk.capture.parameter.LookAndFeelParameters;
|
||
|
import com.kofax.mobile.sdk.capture.parameter.ProcessingParameters;
|
||
|
import o.InterfaceC13390fZB;
|
||
|
import o.InterfaceC13391fZD;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class CheckParameters implements IParameters {
|
||
|
|
||
|
@InterfaceC13390fZB(a = CheckWorkflowActivity.CHECK_PARAMETERS)
|
||
|
@InterfaceC13391fZD
|
||
|
ExtractionParameters ZO;
|
||
|
|
||
|
@InterfaceC13390fZB(a = CheckWorkflowActivity.CHECK_PARAMETERS)
|
||
|
@InterfaceC13391fZD
|
||
|
LookAndFeelParameters ZP;
|
||
|
|
||
|
@InterfaceC13390fZB(a = CheckWorkflowActivity.CHECK_PARAMETERS)
|
||
|
@InterfaceC13391fZD
|
||
|
ProcessingParameters ZQ;
|
||
|
public Check reverseSideCheck;
|
||
|
public CheckSide side = CheckSide.FRONT;
|
||
|
public CheckCountry country = CheckCountry.NOT_SPECIFIED;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public enum CheckCountry {
|
||
|
NOT_SPECIFIED,
|
||
|
UNITED_STATES,
|
||
|
CANADA,
|
||
|
SINGAPORE,
|
||
|
HONG_KONG,
|
||
|
AUSTRALIA,
|
||
|
UNITED_KINGDOM
|
||
|
}
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
@InterfaceC13391fZD
|
||
|
public CheckParameters() {
|
||
|
}
|
||
|
|
||
|
public CheckParameters(Context context) {
|
||
|
Injector.getInjector(context.getApplicationContext()).injectMembers(this);
|
||
|
}
|
||
|
|
||
|
@Override // com.kofax.mobile.sdk.capture.parameter.IParameters
|
||
|
public ProcessingParameters getProcessingParameters() {
|
||
|
return this.ZQ;
|
||
|
}
|
||
|
|
||
|
@Override // com.kofax.mobile.sdk.capture.parameter.IParameters
|
||
|
public LookAndFeelParameters getLookAndFeelParameters() {
|
||
|
return this.ZP;
|
||
|
}
|
||
|
|
||
|
@Override // com.kofax.mobile.sdk.capture.parameter.IParameters
|
||
|
public ExtractionParameters getExtractionParameters() {
|
||
|
return this.ZO;
|
||
|
}
|
||
|
}
|