59 lines
1.9 KiB
Java
59 lines
1.9 KiB
Java
package com.kofax.mobile.sdk.capture.creditcard;
|
|
|
|
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 CreditCardParameters implements IParameters {
|
|
|
|
@InterfaceC13390fZB(a = CreditCardWorkflowActivity.CREDIT_CARD_PARAMETERS)
|
|
@InterfaceC13391fZD
|
|
ExtractionParameters ZO;
|
|
|
|
@InterfaceC13390fZB(a = CreditCardWorkflowActivity.CREDIT_CARD_PARAMETERS)
|
|
@InterfaceC13391fZD
|
|
LookAndFeelParameters ZP;
|
|
|
|
@InterfaceC13390fZB(a = CreditCardWorkflowActivity.CREDIT_CARD_PARAMETERS)
|
|
@InterfaceC13391fZD
|
|
ProcessingParameters ZQ;
|
|
public CardStyle cardStyle = CardStyle.EMBOSSED;
|
|
public long extraTimeForExpiry = 1000;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public enum CardStyle {
|
|
EMBOSSED,
|
|
FLAT
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
@InterfaceC13391fZD
|
|
public CreditCardParameters() {
|
|
}
|
|
|
|
public CreditCardParameters(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;
|
|
}
|
|
}
|