001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.util.bridges.jsf.myfaces;
016    
017    import javax.faces.context.ResponseWriter;
018    
019    import javax.portlet.PortletContext;
020    import javax.portlet.PortletRequest;
021    import javax.portlet.PortletResponse;
022    
023    import org.apache.myfaces.context.ReleaseableExternalContext;
024    import org.apache.myfaces.context.servlet.ServletFacesContextImpl;
025    
026    /**
027     * @author Brian Myunghun Kim
028     */
029    public class MyFacesContextImpl extends ServletFacesContextImpl {
030    
031            public MyFacesContextImpl(PortletContext portletContext,
032                                                              PortletRequest portletRequest,
033                                                              PortletResponse portletResponse) {
034    
035                    super(portletContext, portletRequest, portletResponse);
036            }
037    
038            public void setResponseWriter(ResponseWriter responseWriter) {
039                    if (responseWriter == null) {
040                            throw new NullPointerException("responseWriter");
041                    }
042    
043                    _responseWriter = responseWriter;
044            }
045    
046            public ResponseWriter getResponseWriter() {
047                    return _responseWriter;
048            }
049    
050            public void release() {
051                    super.release();
052    
053                    _responseWriter = null;
054            }
055    
056            public void setExternalContext(ReleaseableExternalContext extContext) {
057                    _responseWriter = null;
058    
059                    super.setExternalContext(extContext);
060            }
061    
062            private ResponseWriter _responseWriter = null;
063    
064    }