what-the-bank/sources/com/kofax/mobile/sdk/capture/bill/BillParameters.java

51 lines
1.6 KiB
Java

package com.kofax.mobile.sdk.capture.bill;
import android.content.Context;
import com.kofax.mobile.sdk._internal.dagger.Injector;
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 BillParameters implements IParameters {
@InterfaceC13390fZB(a = BillWorkflowActivity.BILL_PARAMETERS)
@InterfaceC13391fZD
ExtractionParameters ZO;
@InterfaceC13390fZB(a = BillWorkflowActivity.BILL_PARAMETERS)
@InterfaceC13391fZD
LookAndFeelParameters ZP;
@InterfaceC13390fZB(a = BillWorkflowActivity.BILL_PARAMETERS)
@InterfaceC13391fZD
ProcessingParameters ZQ;
/* JADX INFO: Access modifiers changed from: package-private */
@InterfaceC13391fZD
public BillParameters() {
}
public BillParameters(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;
}
}