1 5 6 package org.exoplatform.services.portletcontainer.impl.portletAPIImp.pool; 7 8 9 import javax.portlet.*; 10 import org.exoplatform.services.portletcontainer.impl.portletAPIImp.helpers.*; 11 12 18 19 public class PortletObjectsWrapper { 20 21 private ActionRequest actionRequest; 22 private ActionResponse actionResponse; 23 private RenderRequest renderRequest; 24 private RenderResponse renderResponse; 25 private CustomRequestWrapper customRequestWrapper; 26 private CustomResponseWrapper customResponseWrapper; 27 private PortletSession portletSession; 28 private SharedSessionWrapper sharedSessionWrapper; 29 30 public ActionRequest getActionRequest() { 31 return actionRequest; 32 } 33 34 public void setActionRequest(ActionRequest actionRequest) { 35 this.actionRequest = actionRequest; 36 } 37 38 public ActionResponse getActionResponse() { 39 return actionResponse; 40 } 41 42 public void setActionResponse(ActionResponse actionResponse) { 43 this.actionResponse = actionResponse; 44 } 45 46 public RenderRequest getRenderRequest() { 47 return renderRequest; 48 } 49 50 public void setRenderRequest(RenderRequest renderRequest) { 51 this.renderRequest = renderRequest; 52 } 53 54 public RenderResponse getRenderResponse() { 55 return renderResponse; 56 } 57 58 public void setRenderResponse(RenderResponse renderResponse) { 59 this.renderResponse = renderResponse; 60 } 61 62 public CustomRequestWrapper getCustomRequestWrapper() { 63 return customRequestWrapper; 64 } 65 66 public void setCustomRequestWrapper(CustomRequestWrapper customRequestWrapper) { 67 this.customRequestWrapper = customRequestWrapper; 68 } 69 70 public CustomResponseWrapper getCustomResponseWrapper() { 71 return customResponseWrapper; 72 } 73 74 public void setCustomResponseWrapper(CustomResponseWrapper customResponseWrapper) { 75 this.customResponseWrapper = customResponseWrapper; 76 } 77 78 public PortletSession getPortletSession() { 79 return portletSession; 80 } 81 82 public void setPortletSession(PortletSession portletSession) { 83 this.portletSession = portletSession; 84 } 85 86 public SharedSessionWrapper getSharedSessionWrapper() { 87 return sharedSessionWrapper; 88 } 89 90 public void setSharedSessionWrapper(SharedSessionWrapper sharedSessionWrapper) { 91 this.sharedSessionWrapper = sharedSessionWrapper; 92 } 93 94 } | Popular Tags |