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

com.daon.identityx.rest.model.support.RegistrationChallengeAuthDataItem 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.support;

import java.util.Date;

public class RegistrationChallengeAuthDataItem {

	private Integer responseCode;
	private String responseMessage;
	private Date created;
	private FaceData[] face;
	private VoiceData[] voice;
	private String fidoRegistrationResponse;
	private ValidationResult validationResult;
	private QualityAssessmentResult qualityAssessmentResult;
	private MatchResult matchResult;

	public Integer getResponseCode() {
		return responseCode;
	}

	public void setResponseCode(Integer responseCode) {
		this.responseCode = responseCode;
	}

	public String getResponseMessage() {
		return responseMessage;
	}

	public void setResponseMessage(String responseMessage) {
		this.responseMessage = responseMessage;
	}

	public Date getCreated() {
		return created;
	}

	public void setCreated(Date created) {
		this.created = created;
	}

	public FaceData[] getFace() {
		return face;
	}

	public void setFace(FaceData[] face) {
		this.face = face;
	}

	public VoiceData[] getVoice() {
		return voice;
	}

	public void setVoice(VoiceData[] voice) {
		this.voice = voice;
	}

	public String getFidoRegistrationResponse() {
		return fidoRegistrationResponse;
	}

	public void setFidoRegistrationResponse(String fidoRegistrationResponse) {
		this.fidoRegistrationResponse = fidoRegistrationResponse;
	}

	public ValidationResult getValidationResult() {
		return validationResult;
	}

	public void setValidationResult(ValidationResult validationResult) {
		this.validationResult = validationResult;
	}

	public QualityAssessmentResult getQualityAssessmentResult() {
		return qualityAssessmentResult;
	}

	public void setQualityAssessmentResult(QualityAssessmentResult qualityAssessmentResult) {
		this.qualityAssessmentResult = qualityAssessmentResult;
	}

	public MatchResult getMatchResult() {
		return matchResult;
	}

	public void setMatchResult(MatchResult matchResult) {
		this.matchResult = matchResult;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy