Example usage for com.liferay.portal.kernel.model Company getPortalURL

List of usage examples for com.liferay.portal.kernel.model Company getPortalURL

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.model Company getPortalURL.

Prototype

public String getPortalURL(long groupId) throws com.liferay.portal.kernel.exception.PortalException;

Source Link

Usage

From source file:com.liferay.calendar.notification.impl.NotificationTemplateContextFactory.java

License:Open Source License

private static String _getPortalURL(long companyId, long groupId) throws PortalException {

    Company company = CompanyLocalServiceUtil.getCompany(companyId);

    return company.getPortalURL(groupId);
}