blob: 34ae5ca84df009d7e64233d3dc8bb2733de8ef4e [file] [log] [blame]
/*
* $Id$
*
* 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.tiles.request.util;
import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.io.Writer;
import java.util.Locale;
import java.util.Map;
import org.apache.tiles.request.AbstractRequest;
import org.apache.tiles.request.ApplicationContext;
import org.apache.tiles.request.WebRequest;
import org.apache.tiles.request.scope.ContextResolver;
/**
* Delegate for ease of customization.
*
* @since Tiles 2.0
* @version $Rev$ $Date$
*/
public class WebRequestWrapper extends AbstractRequest implements
RequestWrapper {
/**
* The wrapper request context object.
*/
private WebRequest context;
/**
* Constructor.
*
* @param context The request context to wrap.
*/
public WebRequestWrapper(WebRequest context) {
this.context = context;
}
/** {@inheritDoc} */
public WebRequest getWrappedRequest() {
return context;
}
/** {@inheritDoc} */
public Map<String, String> getHeader() {
return context.getHeader();
}
/** {@inheritDoc} */
public Map<String, String[]> getHeaderValues() {
return context.getHeaderValues();
}
/** {@inheritDoc} */
public Map<String, String> getResponseHeaders() {
return context.getResponseHeaders();
}
/** {@inheritDoc} */
public Map<String, Object> getContext(String scope) {
ContextResolver resolver = ApplicationAccess.getContextResolver(context
.getApplicationContext());
return resolver.getContext(this, scope);
}
/** {@inheritDoc} */
public String[] getNativeScopes() {
return null;
}
/** {@inheritDoc} */
public String[] getAvailableScopes() {
ContextResolver resolver = ApplicationAccess.getContextResolver(context
.getApplicationContext());
return resolver.getAvailableScopes(this);
}
/** {@inheritDoc} */
public ApplicationContext getApplicationContext() {
return context.getApplicationContext();
}
/** {@inheritDoc} */
public void dispatch(String path) throws IOException {
context.dispatch(path);
}
/** {@inheritDoc} */
public void include(String path) throws IOException {
context.include(path);
}
/** {@inheritDoc} */
public OutputStream getOutputStream() throws IOException {
return context.getOutputStream();
}
/** {@inheritDoc} */
public Writer getWriter() throws IOException {
return context.getWriter();
}
/** {@inheritDoc} */
public PrintWriter getPrintWriter() throws IOException {
return context.getPrintWriter();
}
/** {@inheritDoc} */
public boolean isResponseCommitted() {
return context.isResponseCommitted();
}
/** {@inheritDoc} */
public void setContentType(String contentType) {
context.setContentType(contentType);
}
/** {@inheritDoc} */
public Map<String, String> getParam() {
return context.getParam();
}
/** {@inheritDoc} */
public Map<String, String[]> getParamValues() {
return context.getParamValues();
}
/** {@inheritDoc} */
public Locale getRequestLocale() {
return context.getRequestLocale();
}
/** {@inheritDoc} */
public boolean isUserInRole(String role) {
return context.isUserInRole(role);
}
}