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.request;

import java.util.StringJoiner;
/**
* @author
DNS
*
*/
public class ExportAsPDF {
String vhaName;
String attachIdLx;
/**
*
*/
public ExportAsPDF() {
super();
// TODO Auto-generated constructor stub
}
/**
* @param vhaName
* @param attachIdLx
*/
public ExportAsPDF(String vhaName, String attachIdLx) {
super();
this.vhaName = vhaName;
this.attachIdLx = attachIdLx;
}

/**
* @return the vhaName
*/
public String getVhaName() {
return vhaName;
}

/**
* @param vhaName
* the vhaName to set
*/
public void setVhaName(String vhaName) {
this.vhaName = vhaName;
}

/**
* @return the attachIdLx
*/
public String getAttachIdLx() {
return attachIdLx;
}

/**
* @param attachIdLx
* the attachIdLx to set
*/
public void setAttachIdLx(String attachIdLx) {
this.attachIdLx = attachIdLx;
}

/*
* (non-Javadoc)
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringJoiner join = new StringJoiner(", ", "ExportAsPDF [", "]");
join.add("vhaName=" + vhaName);
join.add("attachIdLx=" + attachIdLx);
return join.toString();
}
}