Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
package gov.va.med.pbm.ampl.model;
import java.io.Serializable;
/**
* This class consists of properties representing a comment.
*
* @author Pavani Mukthipudi
* @since 1.0
*/
public class Comment implements Serializable {
private static final long serialVersionUID = 7695518317969001030L;
private String text;
private Signature signature;
private String classification;
/**
* The getter for the comment text.
*
* @return the comment text
*/
public String getText() {
return text;
}
/**
* The setter for the comment text.
*
* @param text the comment text
*
*/
public void setText(String text) {
this.text = text;
}
/**
* The getter for the comment signature.
*
* @return the comment signature
*/
public Signature getSignature() {
return signature;
}
/**
* The setter for the comment signature.
*
* @param signature the comment signature
*
*/
public void setSignature(Signature signature) {
this.signature = signature;
}
/**
* The getter for the comment classification.
*
* @return the classification
*/
public String getClassification() {
return classification;
}
/**
* The setter for the comment classification.
*
* @param classification the classification to set
*/
public void setClassification(String classification) {
this.classification = classification;
}
/**
* The toString() method returns the string representation of the object.
*/
@Override
public String toString() {
return "Comment [text=" + text + ", signature=" + signature + ", classification=" + classification + "]";
}
}