io.castle.client.model.CastleScreen 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 CastleScreen {
private int width;
private int height;
private int density;
public int getWidth() {
return width;
}
public void setWidth(int width) {
this.width = width;
}
public int getHeight() {
return height;
}
public void setHeight(int height) {
this.height = height;
}
public int getDensity() {
return density;
}
public void setDensity(int density) {
this.density = density;
}
@Override
public String toString() {
return "CastleScreen{" +
"width=" + width +
", height=" + height +
", density=" + density +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy