Example usage for com.liferay.portal.kernel.theme PortletDisplay getURLClose

List of usage examples for com.liferay.portal.kernel.theme PortletDisplay getURLClose

Introduction

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

Prototype

public String getURLClose() 

Source Link

Usage

From source file:com.liferay.portlet.configuration.icon.close.internal.ClosePortletConfigurationIcon.java

License:Open Source License

@Override
public String getURL(PortletRequest portletRequest, PortletResponse portletResponse) {

    ThemeDisplay themeDisplay = (ThemeDisplay) portletRequest.getAttribute(WebKeys.THEME_DISPLAY);

    PortletDisplay portletDisplay = themeDisplay.getPortletDisplay();

    return portletDisplay.getURLClose();
}