Example usage for com.liferay.portal.kernel.util CalendarUtil ICAL_EXTENSION

List of usage examples for com.liferay.portal.kernel.util CalendarUtil ICAL_EXTENSION

Introduction

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

Prototype

String ICAL_EXTENSION

To view the source code for com.liferay.portal.kernel.util CalendarUtil ICAL_EXTENSION.

Click Source Link

Usage

From source file:com.liferay.portlet.calendar.action.ImportEventsAction.java

License:Open Source License

private void validate(String fileName) throws ImportEventsException {
    String fileNameExtension = FileUtil.getExtension(fileName);

    if (!fileNameExtension.equals(CalendarUtil.ICAL_EXTENSION)) {
        throw new ImportEventsException();
    }/*  w  ww .j  av a 2s  .  co  m*/
}