📄 portletresponse.java
字号:
/** * Copyright 2003 IBM Corporation and Sun Microsystems, Inc. * All rights reserved. * Use is subject to license terms. */package javax.portlet;/** * The <CODE>PortletResponse</CODE> defines the base interface to assist a * portlet in creating and sending a response to the client. * The portlet container uses two specialized versions of this interface * when invoking a portlet, <CODE>ActionResponse</CODE> and * <CODE>RenderResponse</CODE>. The portlet container creates these * objects and passes them as arguments to the portlet's <CODE>processAction</CODE> * and <CODE>render</CODE> methods. * * @see ActionResponse * @see RenderResponse */public interface PortletResponse { /** * Adds a String property to an existing key to be returned to the portal. * <p/> * This method allows response properties to have multiple values. * <p/> * Properties can be used by portlets to provide vendor specific * information to the portal. * * @param key the key of the property to be returned to the portal * @param value the value of the property to be returned to the portal * @throws java.lang.IllegalArgumentException * if key is <code>null</code>. */ public void addProperty(String key, String value); /** * Sets a String property to be returned to the portal. * <p/> * Properties can be used by portlets to provide vendor specific * information to the portal. * <p/> * This method resets all properties previously added with the same key. * * @param key the key of the property to be returned to the portal * @param value the value of the property to be returned to the portal * @throws java.lang.IllegalArgumentException * if key is <code>null</code>. */ public void setProperty(String key, String value); /** * Returns the encoded URL of the resource, like servlets, * JSPs, images and other static files, at the given path. * <p/> * Some portal/portlet-container implementation may require * those URLs to contain implementation specific data encoded * in it. Because of that, portlets should use this method to * create such URLs. * <p/> * The <code>encodeURL</code> method may include the session ID * and other portal/portlet-container specific information into the URL. * If encoding is not needed, it returns the URL unchanged. * * @param path the URI path to the resource. This must be either * an absolute URL (e.g. * <code>http://my.co/myportal/mywebap/myfolder/myresource.gif</code>) * or a full path URI (e.g. <code>/myportal/mywebap/myfolder/myresource.gif</code>). * @return the encoded resource URL as string * @throws java.lang.IllegalArgumentException * if path doesn't have a leading slash or is not an absolute URL */ public String encodeURL(String path);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -