Example usage for com.liferay.portal.kernel.util PropsKeys CALENDAR_EMAIL_FROM_ADDRESS

List of usage examples for com.liferay.portal.kernel.util PropsKeys CALENDAR_EMAIL_FROM_ADDRESS

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.util PropsKeys CALENDAR_EMAIL_FROM_ADDRESS.

Prototype

String CALENDAR_EMAIL_FROM_ADDRESS

To view the source code for com.liferay.portal.kernel.util PropsKeys CALENDAR_EMAIL_FROM_ADDRESS.

Click Source Link

Usage

From source file:com.vportal.portlet.vcalendar.util.CalUtil.java

License:Open Source License

public static String getEmailFromAddress(PortletPreferences preferences) {
    String emailFromAddress = PropsUtil.get(PropsKeys.CALENDAR_EMAIL_FROM_ADDRESS);

    return preferences.getValue("email-from-address", emailFromAddress);
}