io.castle.client.model.CastleUserDeviceContext 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 CastleUserDeviceContext {
private String ip;
private DeviceUserAgent userAgent;
private String type;
public String getIp() {
return ip;
}
public void setIp(String ip) {
this.ip = ip;
}
public DeviceUserAgent getUserAgent() {
return userAgent;
}
public void setUserAgent(DeviceUserAgent userAgent) {
this.userAgent = userAgent;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy