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 com.fasterxml.jackson.annotation.JsonInclude;
/**
* @author
DNS
*
*/
public class DecryptionRequest {
String getNtname;
@JsonInclude(JsonInclude.Include.NON_NULL)
String attachmentId;
/**
*
*/
public DecryptionRequest() {
super();
// TODO Auto-generated constructor stub
}
/**
* @param getNtname
*/
public DecryptionRequest(String getNtname) {
super();
this.getNtname = getNtname;
}
/**
* @param getNtname
* @param attachmentId
*/
public DecryptionRequest(String getNtname, String attachmentId) {
super();
this.getNtname = getNtname;
this.attachmentId = attachmentId;
}
/**
* @return the getNtname
*/
public String getGetNtname() {
return getNtname;
}
/**
* @param getNtname
* the getNtname to set
*/
public void setGetNtname(String getNtname) {
this.getNtname = getNtname;
}
/**
* @return the attachmentId
*/
public String getAttachmentId() {
return attachmentId;
}
/**
* @param attachmentId
* the attachmentId to set
*/
public void setAttachmentId(String attachmentId) {
this.attachmentId = attachmentId;
}
}