Browse CVS Repository
Diff of /pal/libraries/facesdevfilter/src/main/java/jp/sf/pal/facesdevfilter/http/HttpServletPortletRequestWrapper.java
Parent Directory
| Revision Log
| Revision Graph
| Patch
| 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 |
|
|
|