All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.daon.identityx.rest.model.pojo.BiometricAccuracyDescriptor Maven / Gradle / Ivy

/*
* Copyright Daon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.daon.identityx.rest.model.pojo;

public class BiometricAccuracyDescriptor {

	private double far;
	private double frr;
	private double eer;
	private double faar;
	private int maxReferenceDataSets;
	private double selfAttestedFRR;
	private double selfAttestedFAR;
	private int maxTemplates;
	private int maxRetries;
	private int blockSlowdown;
	
	public double getSelfAttestedFRR() {
		return selfAttestedFRR;
	}
	public void setSelfAttestedFRR(double selfAttestedFRR) {
		this.selfAttestedFRR = selfAttestedFRR;
	}
	public double getSelfAttestedFAR() {
		return selfAttestedFAR;
	}
	public void setSelfAttestedFAR(double selfAttestedFAR) {
		this.selfAttestedFAR = selfAttestedFAR;
	}
	public int getMaxTemplates() {
		return maxTemplates;
	}
	public void setMaxTemplates(int maxTemplates) {
		this.maxTemplates = maxTemplates;
	}
	public int getMaxRetries() {
		return maxRetries;
	}
	public void setMaxRetries(int maxRetries) {
		this.maxRetries = maxRetries;
	}
	public int getBlockSlowdown() {
		return blockSlowdown;
	}
	public void setBlockSlowdown(int blockSlowdown) {
		this.blockSlowdown = blockSlowdown;
	}
	public double getFar() {
		return far;
	}
	public void setFar(double far) {
		this.far = far;
	}
	public double getFrr() {
		return frr;
	}
	public void setFrr(double frr) {
		this.frr = frr;
	}
	public double getEer() {
		return eer;
	}
	public void setEer(double eer) {
		this.eer = eer;
	}
	public double getFaar() {
		return faar;
	}
	public void setFaar(double faar) {
		this.faar = faar;
	}
	public int getMaxReferenceDataSets() {
		return maxReferenceDataSets;
	}
	public void setMaxReferenceDataSets(int maxReferenceDataSets) {
		this.maxReferenceDataSets = maxReferenceDataSets;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy