01: /* $Id: PortletContainerEventRequest.java,v 1.1 2005/04/08 06:12:20 vs152012 Exp $
02: * Copyright 2004-2005 Sun Microsystems, Inc. All rights reserved.
03: * Use is subject to license terms.
04: */
05: package com.sun.portal.portletcontainercommon;
06:
07: import com.sun.portal.container.ExecuteEventRequest;
08:
09: public class PortletContainerEventRequest extends
10: PortletContainerRequest {
11:
12: private ExecuteEventRequest req;
13:
14: public PortletContainerEventRequest(ExecuteEventRequest req) {
15: super (req);
16: this .req = req;
17: }
18:
19: /**
20: * Returns the character encoding of the current request.
21: *
22: * @return the character encoding of the current request.
23: **/
24: public String getCharacterEncoding() {
25: return req.getCharacterEncoding();
26: }
27:
28: }
|