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.codes;

import java.io.Serializable;

public class RemittanceCode implements Serializable
{
private static final long serialVersionUID = 6054774451311974389L;

private String code = null;
private String remarkLong = null;
private String remarkShort = null;

public RemittanceCode(String code, String remarkLong, String remarkShort)
{
super();
this.code = code;
this.remarkLong = remarkLong;
this.remarkShort = remarkShort;
}

public String getCode()
{
return code;
}
public void setCode(String code)
{
this.code = code;
}
public String getRemarkLong()
{
return remarkLong;
}
public void setRemarkLong(String remarkLong)
{
this.remarkLong = remarkLong;
}
public String getRemarkShort()
{
return remarkShort;
}
public void setRemarkShort(String remarkShort)
{
this.remarkShort = remarkShort;
}
public static long getSerialversionuid()
{
return serialVersionUID;
}




}