com.daon.identityx.rest.model.support.CaptureDataResponse 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;
/**
* A object holding information about a capture data message received by IdentityX REST services.
*
* A capture data message is provided by an IdentityX client while performing either an ADoS
* authenticator registration or an ADoS authenticator authentication.
*
*/
public class CaptureDataResponse {
private String fidoResponse;
private int sequence;
private String authenticatorAttestationId;
/**
* @return The FIDO response message which holds the IdentityX server's response to the capture
* data message.
*/
public String getFidoResponse() {
return fidoResponse;
}
public void setFidoResponse(String fidoResponse) {
this.fidoResponse = fidoResponse;
}
/**
* @return The sequence number for the data received by IdentityX. This number is assigned by
* IdentityX according to the number of pieces of data already received with the current
* request from an authenticator with the same AAID.
*/
public int getSequence() {
return sequence;
}
public void setSequence(int sequence) {
this.sequence = sequence;
}
/**
* @return The AAID of the authenticator that provided the capture data message to IdentityX.
*/
public String getAuthenticatorAttestationId() {
return authenticatorAttestationId;
}
public void setAuthenticatorAttestationId(String authenticatorAttestationId) {
this.authenticatorAttestationId = authenticatorAttestationId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy