Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
1 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
/**
*
*/
package gov.va.med.ars.model.response;
import java.util.List;
/**
* @author
DNS
*
*/
public class PdiRelatedInfoResponse {
List<String> attachmentPath;
String attachmentId;
String reportCode;
String reportDefinition;
/**
*
*/
public PdiRelatedInfoResponse() {
super();
// TODO Auto-generated constructor stub
}
/**
* @param attachmentPath
* @param attachmentId
* @param reportCode
* @param reportDefinition
*/
public PdiRelatedInfoResponse(List<String> attachmentPath, String attachmentId, String reportCode,
String reportDefinition) {
super();
this.attachmentPath = attachmentPath;
this.attachmentId = attachmentId;
this.reportCode = reportCode;
this.reportDefinition = reportDefinition;
}
/**
* @return the attachmentPath
*/
public List<String> getAttachmentPath() {
return attachmentPath;
}
/**
* @param attachmentPath the attachmentPath to set
*/
public void setAttachmentPath(List<String> attachmentPath) {
this.attachmentPath = attachmentPath;
}
/**
* @return the attachmentId
*/
public String getAttachmentId() {
return attachmentId;
}
/**
* @param attachmentId the attachmentId to set
*/
public void setAttachmentId(String attachmentId) {
this.attachmentId = attachmentId;
}
/**
* @return the reportCode
*/
public String getReportCode() {
return reportCode;
}
/**
* @param reportCode the reportCode to set
*/
public void setReportCode(String reportCode) {
this.reportCode = reportCode;
}
/**
* @return the reportDefinition
*/
public String getReportDefinition() {
return reportDefinition;
}
/**
* @param reportDefinition the reportDefinition to set
*/
public void setReportDefinition(String reportDefinition) {
this.reportDefinition = reportDefinition;
}
}