Example usage for com.liferay.portal.kernel.theme ThemeDisplay ThemeDisplay

List of usage examples for com.liferay.portal.kernel.theme ThemeDisplay ThemeDisplay

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.theme ThemeDisplay ThemeDisplay.

Prototype

public ThemeDisplay() 

Source Link

Usage

From source file:net.indaba.lostandfound.service.impl.LFImageLocalServiceImpl.java

License:Open Source License

private boolean updateFirebase(LFImage image, ServiceContext serviceContext) {
    ThemeDisplay themeDisplay = new ThemeDisplay();
    if (serviceContext != null) {
        themeDisplay = (ThemeDisplay) serviceContext.getRequest().getAttribute(WebKeys.THEME_DISPLAY);
    }/* w ww .jav  a2 s. c  o m*/
    return (getFbService().isSyncEnabled() && themeDisplay != null);
}