001
014
015 package com.liferay.portlet.portletconfiguration.util;
016
017 import javax.portlet.ActionRequest;
018 import javax.portlet.PortletPreferences;
019 import javax.portlet.filter.ActionRequestWrapper;
020
021
024 public class ConfigurationActionRequest
025 extends ActionRequestWrapper implements ConfigurationPortletRequest {
026
027 public ConfigurationActionRequest(
028 ActionRequest actionRequest, PortletPreferences portletPreferences) {
029
030 super(actionRequest);
031
032 _portletPreferences = portletPreferences;
033 }
034
035 @Override
036 public PortletPreferences getPreferences() {
037 return _portletPreferences;
038 }
039
040 private PortletPreferences _portletPreferences;
041
042 }