1 6 7 package javax.portlet; 8 9 10 21 public interface ActionResponse extends PortletResponse 22 { 23 24 48 49 public void setWindowState (WindowState windowState) 50 throws WindowStateException; 51 52 53 82 83 public void setPortletMode (PortletMode portletMode) 84 throws PortletModeException; 85 86 87 117 118 public void sendRedirect(String location) 119 throws java.io.IOException ; 120 121 122 151 152 public void setRenderParameters(java.util.Map parameters); 153 154 155 176 177 public void setRenderParameter(String key, String value); 178 179 180 201 202 public void setRenderParameter(String key, String [] values); 203 204 205 } 206 207 208 | Popular Tags |