1 /*
2 * ========================================================================
3 *
4 * Licensed to the Apache Software Foundation (ASF) under one or more
5 * contributor license agreements. See the NOTICE file distributed with
6 * this work for additional information regarding copyright ownership.
7 * The ASF licenses this file to You under the Apache License, Version 2.0
8 * (the "License"); you may not use this file except in compliance with
9 * the License. You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 *
19 * ========================================================================
20 */
21 package org.apache.cactus.server;
22
23 import java.io.IOException;
24
25 import javax.servlet.ServletException;
26 import javax.servlet.jsp.PageContext;
27 import javax.servlet.jsp.el.ExpressionEvaluator;
28 import javax.servlet.jsp.el.VariableResolver;
29
30 import org.apache.cactus.ServletURL;
31
32 /**
33 * Provide implementation of
34 * {@link javax.servlet.jsp.PageContext} for the Servlet 2.4
35 * API specifications.
36 *
37 * @see AbstractPageContextWrapper23
38 * @version $Id: PageContextWrapper.java 238993 2004-05-22 16:39:34Z vmassol $
39 */
40 public class PageContextWrapper extends AbstractPageContextWrapper23
41 {
42 /**
43 * {@inheritDoc}
44 * @see AbstractPageContextWrapper23#AbstractPageContextWrapper23(PageContext, ServletURL)
45 */
46 public PageContextWrapper(PageContext theOriginalPageContext,
47 ServletURL theURL)
48 {
49 super(theOriginalPageContext, theURL);
50 }
51
52 // Unmodified methods --------------------------------------------------
53
54 /**
55 * {@inheritDoc}
56 * @see PageContext#include(java.lang.String, boolean)
57 */
58 public void include(String theRelativeUrlPath, boolean isToBeFlushed)
59 throws ServletException, IOException
60 {
61 // TODO: Support simulation URL
62 this.originalPageContext.include(theRelativeUrlPath, isToBeFlushed);
63 }
64
65 /**
66 * {@inheritDoc}
67 * @see javax.servlet.jsp.JspContext#getExpressionEvaluator()
68 */
69 public ExpressionEvaluator getExpressionEvaluator()
70 {
71 return this.originalPageContext.getExpressionEvaluator();
72 }
73
74 /**
75 * {@inheritDoc}
76 * @see javax.servlet.jsp.JspContext#getVariableResolver()
77 */
78 public VariableResolver getVariableResolver()
79 {
80 return this.originalPageContext.getVariableResolver();
81 }
82 }