blob: 5c2c5e5c8f88bf7a3cb4d434852ec6f29c2b6147 [file] [log] [blame]
/*
* Copyright 1999-2005 The Apache Software Foundation.
*
* 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 org.apache.cocoon.environment.internal;
import org.apache.avalon.framework.logger.Logger;
import org.apache.cocoon.components.source.impl.SitemapSourceInfo;
import org.apache.cocoon.environment.Environment;
import org.apache.cocoon.environment.wrapper.EnvironmentWrapper;
/**
* Local extension of EnvironmentWrapper to propagate otherwise blocked
* methods to the actual environment.
*
* @version $Id$
* @since 2.2
*/
public final class ForwardEnvironmentWrapper extends EnvironmentWrapper {
public ForwardEnvironmentWrapper(Environment env,
SitemapSourceInfo info,
Logger logger) {
super(env, info, logger, false);
}
/**
* @see org.apache.cocoon.environment.Environment#setStatus(int)
*/
public void setStatus(int statusCode) {
environment.setStatus(statusCode);
}
/**
* @see org.apache.cocoon.environment.Environment#setContentLength(int)
*/
public void setContentLength(int length) {
environment.setContentLength(length);
}
/**
* @see org.apache.cocoon.environment.Environment#setContentType(java.lang.String)
*/
public void setContentType(String contentType) {
environment.setContentType(contentType);
}
/**
* @see org.apache.cocoon.environment.Environment#getContentType()
*/
public String getContentType() {
return environment.getContentType();
}
/**
* @see org.apache.cocoon.environment.Environment#isResponseModified(long)
*/
public boolean isResponseModified(long lastModified) {
return environment.isResponseModified(lastModified);
}
/**
* @see org.apache.cocoon.environment.Environment#setResponseIsNotModified()
*/
public void setResponseIsNotModified() {
environment.setResponseIsNotModified();
}
/* (non-Javadoc)
* @see org.apache.cocoon.environment.Environment#redirect(java.lang.String, boolean, boolean)
public void redirect(String newURL, boolean global, boolean permanent)
throws IOException {
this.environment.redirect(newURL, global, permanent);
}
*/
}