1 15 package org.apache.tapestry.web; 16 17 import java.util.List ; 18 import java.util.Locale ; 19 20 import org.apache.tapestry.describe.Describable; 21 22 29 public interface WebRequest extends AttributeHolder, Describable 30 { 31 39 40 public List getParameterNames(); 41 42 53 54 public String getParameterValue(String parameterName); 55 56 67 68 public String [] getParameterValues(String parameterName); 69 70 75 76 public String getContextPath(); 77 78 88 public WebSession getSession(boolean create); 89 90 94 public String getScheme(); 95 96 103 104 public String getServerName(); 105 106 109 110 public int getServerPort(); 111 112 118 119 public String getRequestURI(); 120 121 125 126 public void forward(String URL); 127 128 135 public String getActivationPath(); 136 137 141 public Locale getLocale(); 142 143 150 151 public String getHeader(String name); 152 } | Popular Tags |