com.daon.identityx.rest.model.pojo.AuthenticationAttempt 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;
import java.util.Date;
public class AuthenticationAttempt extends RestResource {
private String attemptId;
private Date created;
private String decision;
private String reason;
private Double score;
private String state;
private AuthenticationAttemptItem[] items;
private AttemptAttributes attributes;
///////////////////////////////////////////////////////////////////////////////////
public String getAttemptId() {
return attemptId;
}
public void setAttemptId(String attemptId) {
this.attemptId = attemptId;
}
public Date getCreated() {
return created;
}
public void setCreated(Date createdDate) {
this.created = createdDate;
}
public String getDecision() {
return decision;
}
public void setDecision(String decision) {
this.decision = decision;
}
public String getReason() {
return reason;
}
public void setReason(String reason) {
this.reason = reason;
}
public Double getScore() {
return score;
}
public void setScore(Double score) {
this.score = score;
}
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public AuthenticationAttemptItem[] getItems() {
return items;
}
public void setItems(AuthenticationAttemptItem[] items) {
this.items = items;
}
public AttemptAttributes getAttributes() {
return attributes;
}
public void setAttributes(AttemptAttributes attributes) {
this.attributes = attributes;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy