1 54 55 package org.apache.jetspeed.portlet; 56 57 import java.util.Locale ; 58 import java.util.Map ; 59 import java.util.Enumeration ; 60 61 69 70 public interface PortletRequest 71 { 72 77 78 public Portlet.Mode getMode (); 79 80 86 87 public String getMethod (); 88 89 99 100 public Locale getLocale (); 101 102 108 109 public Client getClient (); 110 111 128 129 public String getParameter (String name); 130 131 139 140 public Map getParameterMap (); 141 142 148 149 public Enumeration getParameterNames (); 150 151 167 168 public String [] getParameterValues (String name); 169 170 188 189 public void setAttribute (String name, Object value); 190 191 197 198 public void removeAttribute (String name); 199 200 209 210 public Object getAttribute (String name); 211 212 219 220 public Enumeration getAttributeNames (); 221 222 229 230 public boolean isSecure (); 231 232 237 238 public PortletWindow getWindow (); 239 240 250 251 public PortletData getData (); 252 253 259 260 public PortletSession getSession (); 261 262 278 279 public PortletSession getSession (boolean create); 280 } 281 | Popular Tags |