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.ArrayList;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonInclude;
/**
* @author
DNS
*
*/
public class GenericRequest {
@JsonInclude(JsonInclude.Include.NON_NULL)
List<CodeAndModifierRequest> loincList;
@JsonInclude(JsonInclude.Include.NON_NULL)
List<CodeAndModifierRequest> loincModList;
@JsonInclude(JsonInclude.Include.NON_NULL)
List<CodeAndModifierRequest> hccList;
/**
* @return the loincList
*/
public List<CodeAndModifierRequest> getLoincList() {
return loincList;
}
/**
* @param loincList the loincList to set
*/
public void setLoincList(List<CodeAndModifierRequest> loincList) {
if(loincList == null) {
this.loincList = new ArrayList<>();
} else {
this.loincList = loincList;
}
}
/**
* @return the loincModList
*/
public List<CodeAndModifierRequest> getLoincModList() {
return loincModList;
}
/**
* @param loincModList the loincModList to set
*/
public void setLoincModList(List<CodeAndModifierRequest> loincModList) {
if(loincModList == null) {
this.loincModList = new ArrayList<>();
} else {
this.loincModList = loincModList;
}
}
/**
* @return the hccList
*/
public List<CodeAndModifierRequest> getHccList() {
return hccList;
}
/**
* @param hccList the hccList to set
*/
public void setHccList(List<CodeAndModifierRequest> hccList) {
if(hccList == null) {
this.hccList = new ArrayList<>();
} else {
this.hccList = hccList;
}
}
}