io.castle.client.model.RiskPolicyResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of castle-java Show documentation
Show all versions of castle-java Show documentation
Castle adds real-time monitoring of your authentication stack, instantly notifying you and your users
on potential account hijacks.
package io.castle.client.model;
/**
* Information about risk policy used for the action.
*
* See the documentation for the semantics of each case.
* It can be null.
*
* @see Adaptive authentication
*/
public class RiskPolicyResult {
/**
* id of the risk policy
*/
private String id;
/**
* id of the risk policy revision
*/
private String revisionId;
/**
* name of the risk policy
*/
private String name;
/**
* type of the risk policy
*/
private RiskPolicyType type;
public String getId() {
return id;
}
public String getRevisionId() {
return revisionId;
}
public String getName() {
return name;
}
public RiskPolicyType getType() {
return type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy