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.bean;
import java.util.Arrays;
import org.springframework.web.multipart.MultipartFile;
import com.fasterxml.jackson.annotation.JsonInclude;
/**
* Contains the appropriate information to identify which PDF Reference
* in the database will be marked as archived.
*
* @author
DNS
*
*/
public class ArchivedPdfReference {
/**
* Refers to the Reference File Name that has the PDF file. It's the
* absolute path file name of the PDF file.
*/
private String href;
/**
* Refers to the Reference Name of the PDF Reference file. It's a short title
* description of the PDF file.
*/
private String alt;
/**
* The Unique Identifier of the PDF Reference stored in the database.
*/
private String guid;
/**
* Flag used to indicate if a PDF Reference stored in the database
* has been archived or not. Will contain the following two values:
* 1) "true" - PDF Reference is in the Archived state
* 2) "false" - PDF Reference is NOT in the Archived state
*/
private String archive;
/**
* Gets the Reference File Name of the PDF Reference file.
*
* @return - the Reference File Name of the PDF Reference file
*/
public String getHref() {
return href;
}
/**
* Sets the Reference File Name of the PDF Reference file.
*
* @param href - the Reference File Name to set for the PDF Reference file
*/
public void setHref(String href) {
this.href = href;
}
/**
* Gets the Reference Name of the PDF Reference file.
*
* @return - the Reference Name of the PDF Reference file
*/
public String getAlt() {
return alt;
}
/**
* Sets the Reference Name of the PDF Reference file.
*
* @param alt - the Reference Name to set for the PDF Reference file
*/
public void setAlt(String alt) {
this.alt = alt;
}
/**
* Gets the Archive state of the PDF Reference.
*
* @return - the Archive state of the PDF Reference
*/
public String getArchive() {
return archive;
}
/**
* Sets the Archive state of the PDF Reference.
*
* @param archive - the Archive state to set for the PDF Reference
*/
public void setArchive(String archive) {
this.archive = archive;
}
/**
* Gets the Unique GUID Identifier for the PDF Reference stored in the database.
*
* @return - the Unique GUID Identifier for the PDF Reference stored in the database
*/
public String getGuid() {
return guid;
}
/**
* Sets the Unique GUID Identifier for the PDF Reference stored in the database.
*
* @param guid - the Unique GUID Identifier to set for the PDF Reference stored in the database
*/
public void setGuid(String guid) {
this.guid = guid;
}
}