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.ewv.model.response;

import java.util.ArrayList;
import java.util.List;

import gov.va.med.ewv.util.PdfReference;

/**
* This is the Response object that is used to return back a List of PDF References
* as the Response Body to use in the "api/v1/pdfReference/getAllPdfReferences"
* RESTFul Web Service Call.
*
* @author
DNS
*
*/
public class EwvPdfReferencesResponse {

/**
* Stores the list of PDF References.
*/
private List<PdfReference> pdfReferencesList = new ArrayList<PdfReference>();

/**
* Constructor.
*/
public EwvPdfReferencesResponse() { }

/**
* Gets the list of PDF References.
*
* @return list of PDF References
*/
public List<PdfReference> getPdfReferencesList() {
return pdfReferencesList;
}

/**
* Sets the List of PDF References.
*
* @param pdfReferencesList - value to use to set the "pdfReferencesList" data
*/
public void setPdfReferencesList(List<PdfReference> pdfReferencesList) {
if (pdfReferencesList == null) {
this.pdfReferencesList = new ArrayList<PdfReference>();
} else {
this.pdfReferencesList = pdfReferencesList;
}
}
}