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 javax.servlet.http.HttpSession;
/**
* @author
DNS
*
*/
public class EncryptUrl {
String hostname;
String attachmentId;
/**
*
*/
public EncryptUrl() {
super();
// TODO Auto-generated constructor stub
}
/**
* @param hostname
*/
public EncryptUrl(String hostname) {
super();
this.hostname = hostname;
}
/**
* @param hostname
* @param attachmentId
*/
public EncryptUrl(String hostname, String attachmentId) {
super();
this.hostname = hostname;
this.attachmentId = attachmentId;
}
/**
* @return the hostname
*/
public String getHostname() {
return hostname;
}
/**
* @param hostname
* the hostname to set
*/
public void setHostname(String hostname) {
this.hostname = hostname;
}
/**
* @return the attachmentId
*/
public String getAttachmentId() {
return attachmentId;
}
/**
* @param attachmentId
* the attachmentId to set
*/
public void setAttachmentId(String attachmentId) {
this.attachmentId = attachmentId;
}
}