io.castle.client.model.ReviewContext 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;
public class ReviewContext {
private String ip;
private ReviewUserAgent userAgent;
private ReviewLocation location;
public String getIp() {
return ip;
}
public void setIp(String ip) {
this.ip = ip;
}
public ReviewUserAgent getUserAgent() {
return userAgent;
}
public void setUserAgent(ReviewUserAgent userAgent) {
this.userAgent = userAgent;
}
public ReviewLocation getLocation() {
return location;
}
public void setLocation(ReviewLocation location) {
this.location = location;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy