package org.onap.vid.aai; import org.springframework.http.HttpMethod; import java.io.Serializable; public class AaiResponseWithRequestInfo implements Serializable { private AaiResponse aaiResponse; private String requestedUrl; private String rawData; private HttpMethod httpMethod; public AaiResponseWithRequestInfo(HttpMethod httpMethod, String requestedUrl, AaiResponse aaiResponse, String rawData) { this.aaiResponse = aaiResponse; this.requestedUrl = requestedUrl; this.rawData = rawData; this.httpMethod = httpMethod; } public void setRequestedUrl(String requestedUrl) { this.requestedUrl = requestedUrl; } public void setHttpMethod(HttpMethod httpMethod) { this.httpMethod = httpMethod; } public AaiResponse getAaiResponse() { return aaiResponse; } public String getRequestedUrl() { return requestedUrl; } public String getRawData() { return rawData; } public HttpMethod getHttpMethod() { return httpMethod; } }