001/* 002 * (C) Copyright 2006-2010 Nuxeo SA (http://nuxeo.com/) and others. 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 * 016 * Contributors: 017 * bstefanescu 018 */ 019package org.nuxeo.ecm.webengine.app; 020 021import javax.servlet.http.HttpServletRequest; 022import javax.servlet.http.HttpServletResponse; 023import javax.ws.rs.core.HttpHeaders; 024import javax.ws.rs.core.UriInfo; 025 026import org.nuxeo.ecm.webengine.model.impl.AbstractWebContext; 027 028import com.sun.jersey.api.core.HttpContext; 029import com.sun.jersey.server.impl.inject.ServerInjectableProviderContext; 030 031/** 032 * @author <a href="mailto:[email protected]">Bogdan Stefanescu</a> 033 */ 034public class DefaultContext extends AbstractWebContext { 035 036 // FIXME: these members must be removed - they are redundant and buggy 037 protected UriInfo info; 038 039 protected HttpHeaders headers; 040 041 protected ServerInjectableProviderContext sic; 042 043 protected HttpContext hc; 044 045 public DefaultContext(HttpServletRequest request, HttpServletResponse response) { 046 super(request, response); 047 } 048 049 @Override 050 public HttpHeaders getHttpHeaders() { 051 return hc.getRequest(); 052 } 053 054 @Override 055 public UriInfo getUriInfo() { 056 return hc.getUriInfo(); 057 } 058 059 @Override 060 public HttpContext getServerHttpContext() { 061 return hc; 062 } 063 064 @Override 065 public ServerInjectableProviderContext getServerInjectableProviderContext() { 066 return sic; 067 } 068 069 public void setJerseyContext(ServerInjectableProviderContext sic, HttpContext hc) { 070 this.sic = sic; 071 this.hc = hc; 072 } 073 074}