io.castle.client.model.DeviceUserAgent 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 DeviceUserAgent {
private String raw;
private String browser;
private String version;
private String os;
private boolean mobile;
private String platform;
private String device;
private String family;
public String getRaw() {
return raw;
}
public void setRaw(String raw) {
this.raw = raw;
}
public String getBrowser() {
return browser;
}
public void setBrowser(String browser) {
this.browser = browser;
}
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public String getOs() {
return os;
}
public void setOs(String os) {
this.os = os;
}
public boolean isMobile() {
return mobile;
}
public void setMobile(boolean mobile) {
this.mobile = mobile;
}
public String getPlatform() {
return platform;
}
public void setPlatform(String platform) {
this.platform = platform;
}
public String getDevice() {
return device;
}
public void setDevice(String device) {
this.device = device;
}
public String getFamily() {
return family;
}
public void setFamily(String family) {
this.family = family;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy