io.swagger.oas.inflector.models.RequestContext Maven / Gradle / Ivy
/*
* Copyright 2017 SmartBear Software
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.swagger.oas.inflector.models;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.ws.rs.container.ContainerRequestContext;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.MultivaluedMap;
import java.util.List;
public class RequestContext {
ContainerRequestContext context;
MultivaluedMap headers;
MediaType mediaType;
List acceptableMediaTypes;
private String remoteAddr;
private final HttpServletRequest request;
private final HttpServletResponse response;
public RequestContext() {
this(null, null, null);
}
public RequestContext(ContainerRequestContext context) {
this(context, null, null);
}
public RequestContext(ContainerRequestContext context, HttpServletRequest request, HttpServletResponse response) {
this.context = context;
if(context != null) {
headers(context.getHeaders());
mediaType(context.getMediaType());
acceptableMediaTypes(context.getAcceptableMediaTypes());
}
this.request = request;
if (request != null) {
this.remoteAddr = request.getRemoteAddr();
}
this.response = response;
}
public RequestContext headers(MultivaluedMap headers) {
this.headers = headers;
return this;
}
public RequestContext mediaType(MediaType mediaType) {
this.mediaType = mediaType;
return this;
}
public RequestContext acceptableMediaTypes(List acceptableMediaTypes) {
this.acceptableMediaTypes = acceptableMediaTypes;
return this;
}
public MultivaluedMap getHeaders() {
return headers;
}
public void setHeaders(MultivaluedMap headers) {
this.headers = headers;
}
public MediaType getMediaType() {
return mediaType;
}
public void setMediaType(MediaType mediaType) {
this.mediaType = mediaType;
}
public List getAcceptableMediaTypes() {
return acceptableMediaTypes;
}
public void setAcceptableMediaTypes(List acceptableMediaTypes) {
this.acceptableMediaTypes = acceptableMediaTypes;
}
public ContainerRequestContext getContext() {
return context;
}
public void setContext(ContainerRequestContext context) {
this.context = context;
}
public String getRemoteAddr() {
return remoteAddr;
}
public void setRemoteAddr(String remoteAddr) {
this.remoteAddr = remoteAddr;
}
public HttpServletRequest getRequest() {
return request;
}
public HttpServletResponse getResponse() {
return response;
}
}