Package org.silverpeas.core.calendar
Class ICalendarImportResult
- java.lang.Object
-
- org.silverpeas.core.calendar.ICalendarImportResult
-
public class ICalendarImportResult extends Object
Result of an import processing of calendar events into Silverpeas.- Author:
- mmoquillon
-
-
Constructor Summary
Constructors Constructor Description ICalendarImportResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
added()
Gets the number ofPlannableOnCalendar
objects added in the calendar after an import a calendar content.int
deleted()
Gets the number ofPlannableOnCalendar
objects deleted in the calendar after an import a calendar content.boolean
isEmpty()
Is there any result about the import process?int
updated()
Gets the number ofPlannableOnCalendar
objects updated in the calendar after an import a calendar content.
-
-
-
Method Detail
-
added
public int added()
Gets the number ofPlannableOnCalendar
objects added in the calendar after an import a calendar content.- Returns:
- the number of added calendar components.
-
updated
public int updated()
Gets the number ofPlannableOnCalendar
objects updated in the calendar after an import a calendar content.- Returns:
- the number of updated calendar components.
-
deleted
public int deleted()
Gets the number ofPlannableOnCalendar
objects deleted in the calendar after an import a calendar content.- Returns:
- the number of deleted calendar components.
-
isEmpty
public boolean isEmpty()
Is there any result about the import process?- Returns:
- false if the result is empty, that is to say there is no
PlannableOnCalendar
objects added, updated or deleted in the concerned calendar.
-
-