Interface ResourceResponse
-
- All Superinterfaces:
MimeResponse,PortletResponse
- All Known Implementing Classes:
ResourceResponseWrapper
public interface ResourceResponse extends MimeResponse
TheResourceResponsedefines an object to assist a portlet for rendering a resource.The difference between the
RenderResponseis that for theResourceResponsethe output of this response is delivered directly to the client without any additional markup added by the portal. It is therefore allowed for the portlet to return binary content in this response.A portlet can set HTTP headers for the response via the setProperty or addProperty call in the
ResourceResponse. To be successfully transmitted back to the client, headers must be set before the response is committed. Headers set after the response is committed will be ignored by the portlet container.The portlet container creates a
ResourceResponseobject and passes it as argument to the portlet'sserveResourcemethod.- Since:
- 2.0
- See Also:
ResourceServingPortlet,MimeResponse
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface jakarta.portlet.MimeResponse
MimeResponse.Copy
-
-
Field Summary
Fields Modifier and Type Field Description static StringHTTP_STATUS_CODEConstant for setting the HTTP status code via thesetPropertymethod.-
Fields inherited from interface jakarta.portlet.MimeResponse
CACHE_SCOPE, ETAG, EXPIRATION_CACHE, MARKUP_HEAD_ELEMENT, NAMESPACED_RESPONSE, PRIVATE_SCOPE, PUBLIC_SCOPE, USE_CACHED_CONTENT
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T extends PortletURL & ActionURL>
TcreateActionURL()Creates an action URL targeting the portlet.ActionURLcreateActionURL(MimeResponse.Copy option)Creates an action URL targeting the portlet.<T extends PortletURL & RenderURL>
TcreateRenderURL()Creates a render URL targeting the portlet.RenderURLcreateRenderURL(MimeResponse.Copy option)Creates a render URL targeting the portlet.ResourceURLcreateResourceURL()Creates a resource URL targeting the portlet.intgetStatus()Gets the current HTTP status code for the response.voidsetCharacterEncoding(String charset)Sets the character encoding (MIME charset) of the response being sent to the client, for example, to UTF-8.voidsetContentLength(int len)Sets the length of the content body in the response.voidsetContentLengthLong(long len)Sets the length of the content body in the response.voidsetLocale(Locale loc)Sets the locale of the response, setting the headers (including the Content-Type's charset) as appropriate.voidsetStatus(int sc)Sets the HTTP status code for this request.-
Methods inherited from interface jakarta.portlet.MimeResponse
flushBuffer, getBufferSize, getCacheControl, getCharacterEncoding, getContentType, getLocale, getPortletOutputStream, getWriter, isCommitted, reset, resetBuffer, setBufferSize, setContentType
-
Methods inherited from interface jakarta.portlet.PortletResponse
addProperty, addProperty, addProperty, createElement, encodeURL, getNamespace, getProperty, getPropertyNames, getPropertyValues, setProperty
-
-
-
-
Field Detail
-
HTTP_STATUS_CODE
static final String HTTP_STATUS_CODE
Constant for setting the HTTP status code via thesetPropertymethod. Changing the HTTP status code after the response has been committed has no effect.- See Also:
- Constant Field Values
-
-
Method Detail
-
setLocale
void setLocale(Locale loc)
Sets the locale of the response, setting the headers (including the Content-Type's charset) as appropriate. This method should be called before a call to getWriter(). By default, the response locale is the default locale provided by the portlet container.This method has no effect if it is called after the response has been committed.
- Parameters:
loc- the new locale of the response
-
setCharacterEncoding
void setCharacterEncoding(String charset)
Sets the character encoding (MIME charset) of the response being sent to the client, for example, to UTF-8. If the character encoding has already been set by either the portlet container,setContentType(java.lang.String)orsetLocale(java.util.Locale), this method overrides it. CallingsetContentType(java.lang.String)with the String oftext/htmland calling this method with the String ofUTF-8is equivalent with callingsetContentTypewith the String oftext/html; charset=UTF-8.This method can be called repeatedly to change the character encoding. This method has no effect if it is called after getWriter has been called or after the response has been committed.
- Parameters:
charset- a String specifying only the character set defined by IANA Character Sets (http://www.iana.org/assignments/character-sets)
-
setContentLength
void setContentLength(int len)
Sets the length of the content body in the response.This method has no effect if it is called after the response has been committed.
- Parameters:
len- an integer specifying the length of the content being returned; sets the Content-Length header
-
setStatus
void setStatus(int sc)
Sets the HTTP status code for this request.The status code should be a valid value as defined in IETF rfc2616 "Hypertext Transfer Protocol -- HTTP/1.1" . The status code constants "SC_*" defined in
HttpServletResponsemay be used.This method has no effect if it is called after the response has been committed.
- Parameters:
sc- an integer specifying the status code for this request- Since:
- 3.0
- See Also:
HttpServletResponse,HttpServletResponse.setStatus(int)
-
getStatus
int getStatus()
Gets the current HTTP status code for the response.- Returns:
- The HTTP status code
- Since:
- 3.0
- See Also:
HttpServletResponse,HttpServletResponse.getStatus()
-
setContentLengthLong
void setContentLengthLong(long len)
Sets the length of the content body in the response.This method has no effect if it is called after the response has been committed.
- Parameters:
len- alongspecifying the length of the content being returned; sets the Content-Length header- Since:
- 3.0
-
createRenderURL
<T extends PortletURL & RenderURL> T createRenderURL()
Description copied from interface:MimeResponseCreates a render URL targeting the portlet. Render URLs cause idempotent requests that move the portlet to a new view state, for example, to view a different page of data.If a request is triggered by the URL, it results in a render request.
The returned render URL will not contain any private render parameters from the current request.
The created URL will per default not contain any parameters of the current render request.
The returned URL can be further extended by adding portlet-specific render parameters, portlet mode, and window state. If no portlet mode, window state or security modifier is set on the URL, the values from the current render or resource request are preserved.
Public render parameters do not need to be explicitly added to the returned render URL, unless the public render parameter value is to be changed. Any public render parameters associated with the portlet will automatically be available during render request processing resulting from activation of the URL.
If a public render parameter value is set or removed on a render URL, then the public render parameter will be set to the new value or removed when the URL is activated.
The effect of this method is the same as calling
MimeResponse.createRenderURL(Copy)with the parameter set to PUBLIC.- Specified by:
createRenderURLin interfaceMimeResponse- Type Parameters:
T- the type of the URL, which must be a subtype of bothPortletURLandRenderURL- Returns:
- a portlet render URL
- Throws:
IllegalStateException- if the cacheability level of the resource URL triggering thisserveResourcecall is notPAGEand thus does not allow for creating render URLs.
-
createRenderURL
RenderURL createRenderURL(MimeResponse.Copy option)
Description copied from interface:MimeResponseCreates a render URL targeting the portlet. Render URLs cause idempotent requests that move the portlet to a new view state, for example, to view a different page of data.If a request is triggered by the URL, it results in a render request.
The new render URL will contain render parameters from the current request as specified by the
optionparameter.- NONE
- All public and private parameters are removed from the URL.
- ALL
- The public and private parameters governing the current request are added to the URL.
- PUBLIC
- Only public parameters governing the current request are added to the URL.
If a public render parameter value is set or removed on a render URL, then the public render parameter will be set to the new value or removed when the URL is activated.
- Specified by:
createRenderURLin interfaceMimeResponse- Parameters:
option- Specifies how current parameters are to be copied to the URL- Returns:
- a portlet render URL
- Throws:
IllegalStateException- if the cacheability level of the resource URL triggering thisserveResourcecall is notPAGEand thus does not allow for creating render URLs.- Since:
- 3.0
- See Also:
MimeResponse.Copy
-
createActionURL
<T extends PortletURL & ActionURL> T createActionURL()
Description copied from interface:MimeResponseCreates an action URL targeting the portlet. Action URLs are used to create forms or links that, when triggered, update the render state in a non-idempotent manner.If a request is triggered by the URL, it results in an action request.
The returned action URL will not contain any private render parameters per default not contain any parameters from the current request.
The returned URL can be further extended by adding portlet-specific action parameters, portlet mode, and window state. If no additional portlet mode, window state or security modifier is set on the URL, the values from the current render or resource request are preserved.
Public render parameters do not need to be explicitly added to the returned action URL, unless the public render parameter value is to be changed. Any public render parameters associated with the portlet will automatically be available during action request processing resulting from activation of the URL.
If a public render parameter value is set or removed on an action URL, then the public render parameter will be set to the new value or removed when the URL is activated.
The effect of this method is the same as calling
MimeResponse.createRenderURL(Copy)with the parameter set to PUBLIC.- Specified by:
createActionURLin interfaceMimeResponse- Type Parameters:
T- the type of the URL, which must be a subtype of bothPortletURLandActionURL- Returns:
- a portlet action URL
- Throws:
IllegalStateException- if the cacheability level of the resource URL triggering thisserveResourcecall is notPAGEand thus does not allow for creating action URLs.
-
createActionURL
ActionURL createActionURL(MimeResponse.Copy option)
Description copied from interface:MimeResponseCreates an action URL targeting the portlet. Action URLs are used to create forms or links that, when triggered, update the render state in a non-idempotent manner.If a request is triggered by the URL, it results in an action request.
The new action URL will contain render parameters from the current request as specified by the
optionparameter.- NONE
- All public and private parameters are removed from the URL.
- ALL
- The public and private parameters governing the current request are added to the URL.
- PUBLIC
- Only public parameters governing the current request are added to the URL.
The returned URL can be further extended by adding action parameters, portlet mode, and window state. If no additional portlet mode, window state or security modifier is set on the URL, the values from the current render or resource request are preserved.
If a public render parameter value is set or removed on an action URL, then the public render parameter will be set to the new value or removed when the URL is activated.
- Specified by:
createActionURLin interfaceMimeResponse- Parameters:
option- Specifies how current parameters are to be copied to the URL- Returns:
- a portlet action URL
- Throws:
IllegalStateException- if the cacheability level of the resource URL triggering thisserveResourcecall is notPAGEand thus does not allow for creating action URLs.- Since:
- 3.0
- See Also:
MimeResponse.Copy
-
createResourceURL
ResourceURL createResourceURL()
Description copied from interface:MimeResponseCreates a resource URL targeting the portlet. Resource URLs are used to trigger requests for content that applies to the current portlet view state.If a request is triggered by the
ResourceURL, it results in a serve resource request of theResourceServingPortletinterface.The security settings can be changed for the URL. If the security settings are not explicitly set, the values governing the current request are preserved. The current render parameters, portlet mode, and window state are preserved depending on the cacheability setting for the returned resource URL.
If cacheability is set to
PORTLETorPAGE, the values of the render parameters, portlet mode, and window state are preserved. Otherwise, they will not be preserved.If allowed by the cacheability setting, public and private render parameters are added to the URL with their current values. The render parameter values cannot be changed on the URL.
The URL can be further extended by adding portlet-specific resource parameters.
The URL will contain the current cacheability setting of the parent resource by default. If no parent resource is available,
PAGEis the default.If a request is triggered by the PortletURL, it results in a serve resource request of theResourceServingPortletinterface.The returned URL can be further extended by adding portlet-specific parameters .
The created URL will by default contain the current cacheability setting of the parent resource. If no parent resource is available,
PAGEis the default.- Specified by:
createResourceURLin interfaceMimeResponse- Returns:
- a portlet resource URL
- Throws:
IllegalStateException- if the cacheability level of the resource URL triggering thisserveResourcecall, or one of the parent calls, have defined a stricter cachability level.
-
-