Develop and Download Open Source Software

Browse CVS Repository

Diff of /pal/libraries/facesdevfilter/src/main/java/jp/sf/pal/facesdevfilter/http/HttpServletPortletRequestWrapper.java

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.3 by shinsuke, Sat Dec 9 22:30:18 2006 UTC revision 1.4 by shinsuke, Sat Mar 17 13:37:16 2007 UTC
# Line 56  public class HttpServletPortletRequestWr Line 56  public class HttpServletPortletRequestWr
56          this.response = response;          this.response = response;
57      }      }
58    
59        /*
60         * (non-Javadoc)
61         *
62         * @see javax.servlet.http.HttpServletRequestWrapper#getRemoteUser()
63         */
64        public String getRemoteUser() {
65            String remoteUser = (String) getSession().getAttribute(
66                    FacesDevConstants.REMOTE_USER);
67            if (remoteUser != null) {
68                return remoteUser;
69            }
70            return super.getRemoteUser();
71        }
72    
73      // PortletRequest      // PortletRequest
74      public PortalContext getPortalContext() {      public PortalContext getPortalContext() {
75          return new PortalContextImpl();          return new PortalContextImpl();

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26