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.response;
import java.util.List;
/**
* @author
DNS
*
*/
public class LoincCodeListResponse {
List<CodeAndModifierResponse> claimList;
List<CodeAndModifierResponse> lineList;
/**
*
*/
public LoincCodeListResponse() {
super();
// TODO Auto-generated constructor stub
}
/**
* @param claimList
* @param lineList
*/
public LoincCodeListResponse(List<CodeAndModifierResponse> claimList, List<CodeAndModifierResponse> lineList) {
super();
this.claimList = claimList;
this.lineList = lineList;
}
/**
* @return the claimList
*/
public List<CodeAndModifierResponse> getClaimList() {
return claimList;
}
/**
* @param claimList
* the claimList to set
*/
public void setClaimList(List<CodeAndModifierResponse> claimList) {
this.claimList = claimList;
}
/**
* @return the lineList
*/
public List<CodeAndModifierResponse> getLineList() {
return lineList;
}
/**
* @param lineList
* the lineList to set
*/
public void setLineList(List<CodeAndModifierResponse> lineList) {
this.lineList = lineList;
}
}