1 6 7 package javax.portlet; 8 9 10 21 public interface RenderResponse extends PortletResponse 22 { 23 24 34 public static final String EXPIRATION_CACHE = "portlet.expiration-cache"; 35 36 48 49 public String getContentType (); 50 51 52 66 public PortletURL createRenderURL (); 67 68 69 83 public PortletURL createActionURL (); 84 85 86 87 94 95 public String getNamespace (); 96 97 98 99 106 107 public void setTitle(String title); 108 109 110 111 112 129 130 public void setContentType(String type); 131 132 133 145 146 public String getCharacterEncoding(); 147 148 149 174 175 public java.io.PrintWriter getWriter() throws java.io.IOException ; 176 177 178 183 184 public java.util.Locale getLocale(); 185 186 187 209 210 public void setBufferSize(int size); 211 212 213 224 225 public int getBufferSize(); 226 227 228 229 240 241 public void flushBuffer() throws java.io.IOException ; 242 243 244 257 258 public void resetBuffer(); 259 260 261 273 274 public boolean isCommitted(); 275 276 277 290 291 public void reset(); 292 293 294 319 320 public java.io.OutputStream getPortletOutputStream() throws java.io.IOException ; 321 322 } 323 324 325 | Popular Tags |