org.apache.cxf.jaxrs.impl.AbstractResponseContextImpl Maven / Gradle / Ivy
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.cxf.jaxrs.impl;
import java.lang.annotation.Annotation;
import java.net.URI;
import java.util.Date;
import java.util.Locale;
import java.util.Map;
import java.util.Set;
import javax.ws.rs.core.EntityTag;
import javax.ws.rs.core.HttpHeaders;
import javax.ws.rs.core.Link;
import javax.ws.rs.core.Link.Builder;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.MultivaluedMap;
import javax.ws.rs.core.NewCookie;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.StatusType;
import org.apache.cxf.jaxrs.utils.InjectionUtils;
import org.apache.cxf.message.Message;
public abstract class AbstractResponseContextImpl {
protected Message m;
protected Response r;
public AbstractResponseContextImpl(Response r, Message m) {
this.m = m;
this.r = r;
}
public Set getAllowedMethods() {
return r.getAllowedMethods();
}
public Map getCookies() {
return r.getCookies();
}
public Date getDate() {
return r.getDate();
}
public Object getEntity() {
return InjectionUtils.getEntity(r.getEntity());
}
public EntityTag getEntityTag() {
return r.getEntityTag();
}
public String getHeaderString(String name) {
return r.getHeaderString(name);
}
public Locale getLanguage() {
return r.getLanguage();
}
public Date getLastModified() {
return r.getLastModified();
}
public int getLength() {
return r.getLength();
}
public Link getLink(String rel) {
return r.getLink(rel);
}
public Builder getLinkBuilder(String rel) {
return r.getLinkBuilder(rel);
}
public Set getLinks() {
return r.getLinks();
}
public URI getLocation() {
return r.getLocation();
}
public MediaType getMediaType() {
return r.getMediaType();
}
public int getStatus() {
return r.getStatus();
}
public StatusType getStatusInfo() {
return r.getStatusInfo();
}
public MultivaluedMap getStringHeaders() {
return r.getStringHeaders();
}
public boolean hasEntity() {
return r.hasEntity();
}
public boolean hasLink(String rel) {
return r.hasLink(rel);
}
public void setEntity(Object entity, Annotation[] anns, MediaType mt) {
((ResponseImpl)r).setEntity(entity, anns);
if (mt != null) {
r.getMetadata().putSingle(HttpHeaders.CONTENT_TYPE, mt);
m.put(Message.CONTENT_TYPE, mt.toString());
}
}
protected Annotation[] getResponseEntityAnnotations() {
return ((ResponseImpl)r).getEntityAnnotations();
}
public void setStatus(int status) {
m.getExchange().put(Message.RESPONSE_CODE, status);
m.put(Message.RESPONSE_CODE, status);
((ResponseImpl)r).setStatus(status);
}
public void setStatusInfo(StatusType status) {
setStatus(status.getStatusCode());
}
}