io.castle.client.model.CastleOS 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 CastleOS {
private String name;
private String version;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
@Override
public String toString() {
return "CastleOS{" +
"name='" + name + '\'' +
", version='" + version + '\'' +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy