Example usage for com.liferay.portal.kernel.servlet.taglib.util OutputData OutputData

List of usage examples for com.liferay.portal.kernel.servlet.taglib.util OutputData OutputData

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.servlet.taglib.util OutputData OutputData.

Prototype

OutputData

Source Link

Usage

From source file:com.slemarchand.pagecomposer.hook.events.ThemeParameterServicePreAction.java

License:Open Source License

private static OutputData _getOutputData(ServletRequest servletRequest) {
    OutputData outputData = (OutputData) servletRequest.getAttribute(WebKeys.OUTPUT_DATA);

    if (outputData == null) {
        outputData = new OutputData();

        servletRequest.setAttribute(WebKeys.OUTPUT_DATA, outputData);
    }/*w  w  w  . j  a  v a2s . c o m*/

    return outputData;
}