Example usage for com.liferay.portal.kernel.portlet LiferayPortletConfig getPortletContext

List of usage examples for com.liferay.portal.kernel.portlet LiferayPortletConfig getPortletContext

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.portlet LiferayPortletConfig getPortletContext.

Prototype

@Override
    public PortletContext getPortletContext();

Source Link

Usage

From source file:com.liferay.alloy.mvc.jsonwebservice.AlloyControllerInvokerManager.java

License:Open Source License

public AlloyControllerInvokerManager(LiferayPortletConfig liferayPortletConfig) {

    PortletContext portletContext = liferayPortletConfig.getPortletContext();

    _contextName = portletContext.getPortletContextName();
    _contextPath = StringPool.SLASH + portletContext.getPortletContextName();
}