io.castle.client.model.CastleLocation 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 CastleLocation {
private String city;
private String country;
private Long latitude;
private Long longitude;
private Long speed;
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
public Long getLatitude() {
return latitude;
}
public void setLatitude(Long latitude) {
this.latitude = latitude;
}
public Long getLongitude() {
return longitude;
}
public void setLongitude(Long longitude) {
this.longitude = longitude;
}
public Long getSpeed() {
return speed;
}
public void setSpeed(Long speed) {
this.speed = speed;
}
@Override
public String toString() {
return "CastleLocation{" +
"city='" + city + '\'' +
", country='" + country + '\'' +
", latitude=" + latitude +
", longitude=" + longitude +
", speed=" + speed +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy