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.oneconsult.seoc.api.util;
import com.fasterxml.jackson.annotation.JsonProperty;
import gov.va.oneconsult.seoc.api.json.SeocCreateResponse;
import gov.va.oneconsult.seoc.api.json.SeocGenericResponse;
public class OuterWrapper
{
@JsonProperty("SeocCreateResponse")
SeocCreateResponse seocCreateResponse;
@JsonProperty("SeocGenericResponse")
SeocGenericResponse seocGenericResponse;
public SeocCreateResponse getCreateResponse()
{
return seocCreateResponse;
}
public void setCreateResponse(SeocCreateResponse response)
{
this.seocCreateResponse = response;
}
public SeocGenericResponse getGenericResponse()
{
return seocGenericResponse;
}
public void setGenericResponse(SeocGenericResponse seocGenericResponse)
{
this.seocGenericResponse = seocGenericResponse;
}
}