Example usage for com.liferay.portal.ccpp PortalProfileFactory getCCPPProfile

List of usage examples for com.liferay.portal.ccpp PortalProfileFactory getCCPPProfile

Introduction

In this page you can find the example usage for com.liferay.portal.ccpp PortalProfileFactory getCCPPProfile.

Prototype

public static Profile getCCPPProfile(HttpServletRequest httpServletRequest) 

Source Link

Usage

From source file:com.liferay.portlet.PortletRequestImpl.java

License:Open Source License

public Profile getCCPPProfile() {
    if (_profile == null) {
        _profile = PortalProfileFactory.getCCPPProfile(_request);
    }

    return _profile;
}