io.castle.client.model.Review 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;
/**
* Model of the review object returned in the body of the response of a review call to the Castle Api.
*/
public class Review {
private String userId;
private ReviewContext context;
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public ReviewContext getContext() {
return context;
}
public void setContext(ReviewContext context) {
this.context = context;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy