Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
package gov.va.med.ewv.model.response;
import java.io.Serializable;
import java.util.List;
import gov.va.med.ewv.util.DTOBase;
public class ClaimOhiAdjustmentsBean extends DTOBase implements Serializable
{
private static final long serialVersionUID = -3364557281280364105L;
private String ohiPayerId;
private List<Adjustment> allClaimAdjustments;
public ClaimOhiAdjustmentsBean(String ohiPayerId, List<Adjustment> adjustmentsList)
{
this.ohiPayerId = ohiPayerId;
this.allClaimAdjustments = adjustmentsList;
}
public String getOhiPayerId()
{
return ohiPayerId;
}
public void setOhiPayerId(String ohiPayerId)
{
this.ohiPayerId = ohiPayerId;
}
public List<Adjustment> getAllClaimAdjustments()
{
return allClaimAdjustments;
}
}