io.castle.client.model.CastlePage 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 CastlePage {
private String path;
private String referrer;
private String search;
private String title;
private String url;
public String getPath() {
return path;
}
public void setPath(String path) {
this.path = path;
}
public String getReferrer() {
return referrer;
}
public void setReferrer(String referrer) {
this.referrer = referrer;
}
public String getSearch() {
return search;
}
public void setSearch(String search) {
this.search = search;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
@Override
public String toString() {
return "CastlePage{" +
"path='" + path + '\'' +
", referrer='" + referrer + '\'' +
", search='" + search + '\'' +
", title='" + title + '\'' +
", url='" + url + '\'' +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy