View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.myfaces.context;
20  
21  import javax.faces.FacesException;
22  import javax.faces.FactoryFinder;
23  import javax.faces.context.ExternalContext;
24  import javax.faces.context.ExternalContextFactory;
25  import javax.faces.context.FlashFactory;
26  import javax.servlet.ServletContext;
27  import javax.servlet.ServletRequest;
28  import javax.servlet.ServletResponse;
29  
30  import org.apache.myfaces.context.servlet.ServletExternalContextImpl;
31  
32  /**
33   * @author Leonardo Uribe (latest modification by $Author$)
34   * @version $Revision$ $Date$
35   * 
36   * @since 2.0
37   */
38  public class ExternalContextFactoryImpl extends ExternalContextFactory
39  {
40  
41      public static final String EXTERNAL_CONTEXT_KEY = 
42          "org.apache.myfaces.context.servlet.ServletExternalContextImpl";
43      
44      private final FlashFactory _flashFactory;
45      
46      public ExternalContextFactoryImpl()
47      {
48          _flashFactory = (FlashFactory) FactoryFinder.getFactory(
49                      FactoryFinder.FLASH_FACTORY);
50      }
51      
52      @Override
53      public ExternalContext getExternalContext(Object context, Object request,
54              Object response) throws FacesException
55      {
56          if (context == null)
57          {
58              throw new NullPointerException("context");
59          }
60          if (request == null)
61          {
62              throw new NullPointerException("request");
63          }
64          if (response == null)
65          {
66              throw new NullPointerException("response");
67          }
68  
69          if (context instanceof ServletContext)
70          {
71              ExternalContext externalContext = new ServletExternalContextImpl(
72                      (ServletContext) context, (ServletRequest) request, (ServletResponse) response,
73                      _flashFactory);
74              
75              externalContext.getRequestMap().put(EXTERNAL_CONTEXT_KEY, externalContext);
76              
77              return externalContext;
78          }
79          
80          throw new FacesException("Unsupported context type " + context.getClass().getName());
81      }
82  }