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

io.castle.client.model.RiskPolicyResult Maven / Gradle / Ivy

Go to download

Castle adds real-time monitoring of your authentication stack, instantly notifying you and your users on potential account hijacks.

There is a newer version: 2.4.1
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy