List of usage examples for com.liferay.portal.kernel.util CalendarUtil ICAL_EXTENSION
String ICAL_EXTENSION
To view the source code for com.liferay.portal.kernel.util CalendarUtil ICAL_EXTENSION.
Click Source Link
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*/ }