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

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

Introduction

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

Prototype

public String getURLEditGuest() 

Source Link

Usage

From source file:com.liferay.portlet.configuration.icon.edit.guest.internal.EditGuestPortletConfigurationIcon.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.getURLEditGuest();
}