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.ars.model.response;
import com.fasterxml.jackson.annotation.JsonInclude;
public class RfaiAttachmentResponse {
@JsonInclude(JsonInclude.Include.NON_NULL)
private String statusCode;
@JsonInclude(JsonInclude.Include.NON_NULL)
private String loincCodes;
@JsonInclude(JsonInclude.Include.NON_NULL)
private String loincModCodes1;
@JsonInclude(JsonInclude.Include.NON_NULL)
private String loincModCodes2;
@JsonInclude(JsonInclude.Include.NON_NULL)
private String claimLevel;
@JsonInclude(JsonInclude.Include.NON_NULL)
private String attachments;
@JsonInclude(JsonInclude.Include.NON_NULL)
private Long serviceLine;
public RfaiAttachmentResponse() {
}
@Override
public String toString() {
return "RfaiAttachmentResponse [statusCode=" + statusCode + ", loincCodes=" + loincCodes + ", loincModCodes="
+ loincModCodes1 + ", loincModCodes2=" + loincModCodes2 + ", claimLevel=" + claimLevel
+ ", attachments=" + attachments + "]";
}
public RfaiAttachmentResponse(String statusCode, String loincCodes, String loincModCodes1, String loincModCodes2,
String claimLevel, String attachments) {
super();
this.statusCode = statusCode;
this.loincCodes = loincCodes;
this.loincModCodes1 = loincModCodes1;
this.loincModCodes2 = loincModCodes2;
this.claimLevel = claimLevel;
this.attachments = attachments;
}
public String getStatusCode() {
return statusCode;
}
public void setStatusCode(String statusCode) {
this.statusCode = statusCode;
}
public String getLoincCodes() {
return loincCodes;
}
public void setLoincCodes(String loincCodes) {
this.loincCodes = loincCodes;
}
public String getLoincModCodes1() {
return loincModCodes1;
}
public void setLoincModCodes1(String loincModCodes) {
this.loincModCodes1 = loincModCodes;
}
public String getLoincModCodes2() {
return loincModCodes2;
}
public void setLoincModCodes2(String loincModCodes2) {
this.loincModCodes2 = loincModCodes2;
}
public String getClaimLevel() {
return claimLevel;
}
public void setClaimLevel(String claimLevel) {
this.claimLevel = claimLevel;
}
public String getAttachments() {
return attachments;
}
public void setAttachments(String attachments) {
this.attachments = attachments;
}
public Long getServiceLine() {
return serviceLine;
}
public void setServiceLine(Long serviceLine) {
this.serviceLine = serviceLine;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((attachments == null) ? 0 : attachments.hashCode());
result = prime * result + ((claimLevel == null) ? 0 : claimLevel.hashCode());
result = prime * result + ((loincCodes == null) ? 0 : loincCodes.hashCode());
result = prime * result + ((loincModCodes1 == null) ? 0 : loincModCodes1.hashCode());
result = prime * result + ((loincModCodes2 == null) ? 0 : loincModCodes2.hashCode());
result = prime * result + ((serviceLine == null) ? 0 : serviceLine.hashCode());
result = prime * result + ((statusCode == null) ? 0 : statusCode.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
RfaiAttachmentResponse other = (RfaiAttachmentResponse) obj;
if (attachments == null) {
if (other.attachments != null)
return false;
} else if (!attachments.equals(other.attachments))
return false;
if (claimLevel == null) {
if (other.claimLevel != null)
return false;
} else if (!claimLevel.equals(other.claimLevel))
return false;
if (loincCodes == null) {
if (other.loincCodes != null)
return false;
} else if (!loincCodes.equals(other.loincCodes))
return false;
if (loincModCodes1 == null) {
if (other.loincModCodes1 != null)
return false;
} else if (!loincModCodes1.equals(other.loincModCodes1))
return false;
if (loincModCodes2 == null) {
if (other.loincModCodes2 != null)
return false;
} else if (!loincModCodes2.equals(other.loincModCodes2))
return false;
if (serviceLine == null) {
if (other.serviceLine != null)
return false;
} else if (!serviceLine.equals(other.serviceLine))
return false;
if (statusCode == null) {
if (other.statusCode != null)
return false;
} else if (!statusCode.equals(other.statusCode))
return false;
return true;
}
}