1 6 7 package javax.portlet; 8 9 10 21 public interface ActionRequest extends PortletRequest 22 { 23 24 25 44 public java.io.InputStream getPortletInputStream () throws java.io.IOException ; 45 46 47 48 64 65 public void setCharacterEncoding(String enc) 66 throws java.io.UnsupportedEncodingException ; 67 68 69 97 98 public java.io.BufferedReader getReader() 99 throws java.io.UnsupportedEncodingException , java.io.IOException ; 100 101 102 111 112 public java.lang.String getCharacterEncoding(); 113 114 115 116 124 125 public java.lang.String getContentType(); 126 127 128 138 139 public int getContentLength(); 140 141 142 143 144 } 145 | Popular Tags |