com.capitalone.dashboard.model.Review Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core package shared by API layer and Microservices
package com.capitalone.dashboard.model;
public class Review {
private String body;
private String state;
private String author;
private String authorType;
private String authorLDAPDN;
private long createdAt;
private long updatedAt;
public String getBody() {
return body;
}
public void setBody(String body) {
this.body = body;
}
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public String getAuthorType() { return authorType; }
public void setAuthorType(String authorType) { this.authorType = authorType; }
public String getAuthorLDAPDN() {
return authorLDAPDN;
}
public void setAuthorLDAPDN(String authorLDAPDN) {
this.authorLDAPDN = authorLDAPDN;
}
public long getCreatedAt() {
return createdAt;
}
public void setCreatedAt(long createdAt) {
this.createdAt = createdAt;
}
public long getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(long updatedAt) {
this.updatedAt = updatedAt;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy