io.castle.client.model.CastleHeaders 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;
import java.util.List;
public class CastleHeaders {
private List headers;
public List getHeaders() {
return headers;
}
public void setHeaders(List headers) {
this.headers = headers;
}
@Override
public String toString() {
return "CastleHeaders{" +
"headers=" + headers +
'}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy