Class CmsRedirectLoader
- All Implemented Interfaces:
I_CmsConfigurationParameterHandler,I_CmsFlexCacheEnabledLoader,I_CmsResourceLoader
-
Field Summary
FieldsFields inherited from interface org.opencms.configuration.I_CmsConfigurationParameterHandler
ADD_PARAMETER_METHOD, INIT_CONFIGURATION_METHODFields inherited from interface org.opencms.loader.I_CmsResourceLoader
PARAMETER_ELEMENT -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddConfigurationParameter(String paramName, String paramValue) Adds a configuration parameter to this parameter configurable class instance.voiddestroy()Destroys this ResourceLoder.byte[]dump(CmsObject cms, CmsResource resource, String element, Locale locale, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res) Dumps the processed content of the the requested file (and it's sub-elements) to a byte array.byte[]export(CmsObject cms, CmsResource resource, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res) Static exports the contents of the requested file and it's sub-elements.Returns the parameters of this configurable class instance, ornullif the class does not need any parameters.protected CmsFlexControllergetController(CmsObject cms, CmsResource resource, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res, boolean streaming, boolean top) Delivers a Flex controller, either by creating a new one, or by re-using an existing one.intReturns the id of the ResourceLoader.Returns a String describing the ResourceLoader.voidInitializes a configuration after all parameters have been added.booleanSignals if the loader implementation supports static export of resources.booleanSignals if the loader implementation requires processing during static export of resources.booleanSignals if the loader implementation is usable for creating templates.booleanSignals if a loader that supports templates must be invoked on the template URI or the resource URI.voidload(CmsObject cms, CmsResource resource, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res) Basic top-page processing method for a I_CmsResourceLoader, this method is called if the page is called as a sub-element on a page not already loaded with a I_CmsResourceLoader.voidservice(CmsObject cms, CmsResource resource, javax.servlet.ServletRequest req, javax.servlet.ServletResponse res) Does the job of including the requested resource, this method is called directly if the element is called as a sub-element from another I_CmsResourceLoader.voidsetFlexCache(CmsFlexCache cache) Will be called after the resource manager was initialized.
-
Field Details
-
LOADER_ID
The loader id.- See Also:
-
-
Constructor Details
-
CmsRedirectLoader
public CmsRedirectLoader()
-
-
Method Details
-
addConfigurationParameter
Description copied from interface:I_CmsConfigurationParameterHandlerAdds a configuration parameter to this parameter configurable class instance.- Specified by:
addConfigurationParameterin interfaceI_CmsConfigurationParameterHandler- Parameters:
paramName- the name of the parameterparamValue- the value for the parameter- See Also:
-
destroy
Description copied from interface:I_CmsResourceLoaderDestroys this ResourceLoder.- Specified by:
destroyin interfaceI_CmsResourceLoader- See Also:
-
dump
public byte[] dump(CmsObject cms, CmsResource resource, String element, Locale locale, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res) throws CmsException Description copied from interface:I_CmsResourceLoaderDumps the processed content of the the requested file (and it's sub-elements) to a byte array.Dumping the content is like calling "load" where the result is not written to the response stream, but to the returned byte array. Dumping is different from an export because the export might actually require that the content is handled or modified in a special way, or set special http headers.
Moreover, if the page type is template based, calling "dump" will not trigger the template but directly deliver the contents from the selected element.
- Specified by:
dumpin interfaceI_CmsResourceLoader- Parameters:
cms- used to access the OpenCms VFSresource- the requested resource in the VFSelement- the element in the file to displaylocale- the locale to displayreq- the servlet requestres- the servlet response- Returns:
- the content of the processed file
- Throws:
CmsException- in case of errors accessing OpenCms functions- See Also:
-
export
public byte[] export(CmsObject cms, CmsResource resource, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res) Description copied from interface:I_CmsResourceLoaderStatic exports the contents of the requested file and it's sub-elements.During static export, the resource content may be written to 2 streams: The export stream, and the http response output stream. Which stream is actually used depends whether the export is in "on demand" or "after publish" mode. In "on demand" mode, the resource needs to be written both to the response stream and to the file stream. In "after publish" mode, it's usually only written to the file stream, but sometimes it's required to write to the response stream as well.
- Specified by:
exportin interfaceI_CmsResourceLoader- Parameters:
cms- the initialized CmsObject which provides user permissionsresource- the requested OpenCms VFS resourcereq- the servlet requestres- the servlet response- Returns:
- the contents to export, or
nullif no export is required - See Also:
-
getConfiguration
Description copied from interface:I_CmsConfigurationParameterHandlerReturns the parameters of this configurable class instance, ornullif the class does not need any parameters.- Specified by:
getConfigurationin interfaceI_CmsConfigurationParameterHandler- Returns:
- the parameters of this configurable class instance,
or
nullif the class does not need any parameters - See Also:
-
getLoaderId
Description copied from interface:I_CmsResourceLoaderReturns the id of the ResourceLoader.- Specified by:
getLoaderIdin interfaceI_CmsResourceLoader- Returns:
- the id of the ResourceLoader
- See Also:
-
getResourceLoaderInfo
Description copied from interface:I_CmsResourceLoaderReturns a String describing the ResourceLoader.- Specified by:
getResourceLoaderInfoin interfaceI_CmsResourceLoader- Returns:
- a String describing the ResourceLoader
- See Also:
-
initConfiguration
Description copied from interface:I_CmsConfigurationParameterHandlerInitializes a configuration after all parameters have been added.- Specified by:
initConfigurationin interfaceI_CmsConfigurationParameterHandler- See Also:
-
isStaticExportEnabled
Description copied from interface:I_CmsResourceLoaderSignals if the loader implementation supports static export of resources.- Specified by:
isStaticExportEnabledin interfaceI_CmsResourceLoader- Returns:
- true if static export is supported, false otherwise
- See Also:
-
isStaticExportProcessable
Description copied from interface:I_CmsResourceLoaderSignals if the loader implementation requires processing during static export of resources.- Specified by:
isStaticExportProcessablein interfaceI_CmsResourceLoader- Returns:
- true if static export processing is required, false otherwise
- See Also:
-
isUsableForTemplates
Description copied from interface:I_CmsResourceLoaderSignals if the loader implementation is usable for creating templates.- Specified by:
isUsableForTemplatesin interfaceI_CmsResourceLoader- Returns:
- true if the loader implementation is usable for creating templates, false otherwise
- See Also:
-
isUsingUriWhenLoadingTemplate
Description copied from interface:I_CmsResourceLoaderSignals if a loader that supports templates must be invoked on the template URI or the resource URI.- Specified by:
isUsingUriWhenLoadingTemplatein interfaceI_CmsResourceLoader- Returns:
- true if the resource URI is to be used, false if the template URI is to be used
- See Also:
-
load
public void load(CmsObject cms, CmsResource resource, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res) throws CmsException Description copied from interface:I_CmsResourceLoaderBasic top-page processing method for a I_CmsResourceLoader, this method is called if the page is called as a sub-element on a page not already loaded with a I_CmsResourceLoader.- Specified by:
loadin interfaceI_CmsResourceLoader- Parameters:
cms- the initialized CmsObject which provides user permissionsresource- the requested OpenCms VFS resourcereq- the servlet requestres- the servlet response- Throws:
CmsException- in case of errors accessing OpenCms functions- See Also:
-
service
public void service(CmsObject cms, CmsResource resource, javax.servlet.ServletRequest req, javax.servlet.ServletResponse res) Description copied from interface:I_CmsResourceLoaderDoes the job of including the requested resource, this method is called directly if the element is called as a sub-element from another I_CmsResourceLoader.- Specified by:
servicein interfaceI_CmsResourceLoader- Parameters:
cms- used to access the OpenCms VFSresource- the requested resource in the VFSreq- the servlet requestres- the servlet response- See Also:
-
setFlexCache
Description copied from interface:I_CmsFlexCacheEnabledLoaderWill be called after the resource manager was initialized.- Specified by:
setFlexCachein interfaceI_CmsFlexCacheEnabledLoader- Parameters:
cache- the (optional) flex cache instance to use- See Also:
-
getController
protected CmsFlexController getController(CmsObject cms, CmsResource resource, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res, boolean streaming, boolean top) Delivers a Flex controller, either by creating a new one, or by re-using an existing one.- Parameters:
cms- the initial CmsObject to wrap in the controllerresource- the resource requestedreq- the current requestres- the current responsestreaming- indicates if the response is streamingtop- indicates if the response is the top response- Returns:
- a Flex controller
-