26 lines
682 B
Java
26 lines
682 B
Java
|
package com.kofax.kmc.kui.uicontrols.captureanimations;
|
||
|
|
||
|
import com.kofax.kmc.ken.engines.data.SelfieDetectionSettings;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class SelfieCaptureExperienceCriteriaHolder {
|
||
|
private boolean mx = true;
|
||
|
private SelfieDetectionSettings nq = new SelfieDetectionSettings();
|
||
|
|
||
|
public void setFocusEnabled(boolean z) {
|
||
|
this.mx = z;
|
||
|
}
|
||
|
|
||
|
public void setDetectionSettings(SelfieDetectionSettings selfieDetectionSettings) {
|
||
|
this.nq = selfieDetectionSettings;
|
||
|
}
|
||
|
|
||
|
public boolean isFocusEnabled() {
|
||
|
return this.mx;
|
||
|
}
|
||
|
|
||
|
public SelfieDetectionSettings getDetectionSettings() {
|
||
|
return this.nq;
|
||
|
}
|
||
|
}
|