com.capitalone.dashboard.model.Comment 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 Comment {
private String user;
private String userType;
private String userLDAPDN;
private long createdAt;
private long updatedAt;
private String body;
private String status;
public String getUser() {
return user;
}
public void setUser(String user) { this.user = user; }
public String getUserType() { return userType; }
public void setUserType(String userType) { this.userType = userType; }
public String getUserLDAPDN() { return userLDAPDN; }
public void setUserLDAPDN(String userLDAPDN) {
this.userLDAPDN = userLDAPDN;
}
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;
}
public String getBody() {
return body;
}
public void setBody(String body) {
this.body = body;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy