Class CalendarLifeCycleEvent
- java.lang.Object
-
- org.silverpeas.core.notification.system.AbstractResourceEvent<Calendar>
-
- org.silverpeas.core.calendar.notification.CalendarLifeCycleEvent
-
- All Implemented Interfaces:
Serializable
,ResourceEvent<Calendar>
public class CalendarLifeCycleEvent extends AbstractResourceEvent<Calendar>
A lifecycle event ofCalendar
instances. Such an event is triggered when a change occurred in the lifecycle of a calendar and it is sent by the system notification bus.- Author:
- silveryocha
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.silverpeas.core.notification.system.ResourceEvent
ResourceEvent.Type
-
-
Constructor Summary
Constructors Constructor Description CalendarLifeCycleEvent(ResourceEvent.Type type, @NotNull Calendar... calendar)
Constructs a new lifecycle event with the specified type and that implies the specifiedCalendar
instances, each of them representing a different state in the lifecycle of the calendar.
-
Method Summary
-
Methods inherited from class org.silverpeas.core.notification.system.AbstractResourceEvent
equals, getParameters, getParameterValue, getTransition, getType, hashCode, putParameter
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.silverpeas.core.notification.system.ResourceEvent
isOnCreation, isOnDeletion, isOnRecovery, isOnRemoving, isOnUpdate
-
-
-
-
Constructor Detail
-
CalendarLifeCycleEvent
public CalendarLifeCycleEvent(ResourceEvent.Type type, @NotNull @NotNull Calendar... calendar)
Constructs a new lifecycle event with the specified type and that implies the specifiedCalendar
instances, each of them representing a different state in the lifecycle of the calendar.- Parameters:
type
- the type of the lifecycle event (the type of the transition occurring in the calendar's lifecycle).calendar
- the states of a calendar concerned by a state transition in its lifecycle.
-
-