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 gov.va.med.ewv.util.AdjustmentType;
import gov.va.med.ewv.util.EwvUtils;
public class ServiceLineOhiAdjustment extends Adjustment implements Serializable
{
private static final long serialVersionUID = 1L;
private String descriptionLong;
private String descriptionShort;
private String reasonCode ;
private String quantity;
private String coAmount;
private String crAmount;
private String oaAmount;
private String piAmount;
private String prAmount;
private String adjCodeGroupDescription;
public String getAdjCodeGroupDescription() {
return adjCodeGroupDescription;
}
public void setAdjCodeGroupDescription(String adjCodeGroupDescription) {
this.adjCodeGroupDescription = adjCodeGroupDescription;
}
private AdjustmentType adjustmentType = null;
public ServiceLineOhiAdjustment(String descriptionLong,
String descriptionShort,
String reasonCode,
String quantity,
String coAmount,
String crAmount,
String oaAmount,
String piAmount,
String prAmount)
{
this.descriptionLong = descriptionLong;
this.descriptionShort = descriptionShort;
this.reasonCode = reasonCode;
this.quantity = quantity;
this.coAmount = EwvUtils.formatAsCurrency(coAmount);
this.crAmount = EwvUtils.formatAsCurrency(crAmount);
this.oaAmount = EwvUtils.formatAsCurrency(oaAmount);
this.piAmount = EwvUtils.formatAsCurrency(piAmount);
this.prAmount = EwvUtils.formatAsCurrency(prAmount);
}
// /* (non-Javadoc)
// * @see gov.va.med.hac.edi.ewv2.beans.billinginvoice.ohiserviceline.X#getPrimaryPayerId()
// */
//
// /* (non-Javadoc)
// * @see gov.va.med.hac.edi.ewv2.beans.billinginvoice.ohiserviceline.X#setPrimaryPayerId(java.lang.String)
// */
//
/* (non-Javadoc)
* @see gov.va.med.hac.edi.ewv2.beans.billinginvoice.ohiserviceline.X#getDescriptionLong()
*/
public String getDescriptionLong()
{
return descriptionLong;
}
/* (non-Javadoc)
* @see gov.va.med.hac.edi.ewv2.beans.billinginvoice.ohiserviceline.X#setDescriptionLong(java.lang.String)
*/
public void setDescriptionLong(String descriptionLong)
{
this.descriptionLong = descriptionLong;
}
/* (non-Javadoc)
* @see gov.va.med.hac.edi.ewv2.beans.billinginvoice.ohiserviceline.X#getDescriptionShort()
*/
public String getDescriptionShort()
{
return descriptionShort;
}
/* (non-Javadoc)
* @see gov.va.med.hac.edi.ewv2.beans.billinginvoice.ohiserviceline.X#setDescriptionShort(java.lang.String)
*/
public void setDescriptionShort(String descriptionShort)
{
this.descriptionShort = descriptionShort;
}
/* (non-Javadoc)
* @see gov.va.med.hac.edi.ewv2.beans.billinginvoice.ohiserviceline.X#getReasonCode()
*/
public String getReasonCode()
{
return reasonCode;
}
/* (non-Javadoc)
* @see gov.va.med.hac.edi.ewv2.beans.billinginvoice.ohiserviceline.X#setReasonCode(java.lang.String)
*/
public void setReasonCode(String reasonCode)
{
this.reasonCode = reasonCode;
}
/* (non-Javadoc)
* @see gov.va.med.hac.edi.ewv2.beans.billinginvoice.ohiserviceline.X#getQuantity()
*/
public String getQuantity()
{
return quantity;
}
/* (non-Javadoc)
* @see gov.va.med.hac.edi.ewv2.beans.billinginvoice.ohiserviceline.X#setQuantity(java.lang.String)
*/
public void setQuantity(String quantity)
{
this.quantity = quantity;
}
/* (non-Javadoc)
* @see gov.va.med.hac.edi.ewv2.beans.billinginvoice.ohiserviceline.X#getAdjustmentType()
*/
public AdjustmentType getAdjustmentType()
{
return adjustmentType;
}
/* (non-Javadoc)
* @see gov.va.med.hac.edi.ewv2.beans.billinginvoice.ohiserviceline.X#setAdjustmentType(gov.va.med.hac.edi.ewv2.datatransfer.AdjustmentType)
*/
public void setAdjustmentType(AdjustmentType adjustmentType)
{
this.adjustmentType = adjustmentType;
}
public String getCoAmount() {
return coAmount;
}
public void setCoAmount(String coAmount) {
this.coAmount = coAmount;
}
public String getCrAmount() {
return crAmount;
}
public void setCrAmount(String crAmount) {
this.crAmount = crAmount;
}
public String getOaAmount() {
return oaAmount;
}
public void setOaAmount(String oaAmount) {
this.oaAmount = oaAmount;
}
public String getPiAmount() {
return piAmount;
}
public void setPiAmount(String piAmount) {
this.piAmount = piAmount;
}
public String getPrAmount() {
return prAmount;
}
public void setPrAmount(String prAmount) {
this.prAmount = prAmount;
}
}