Class ConfluenceEvent
- java.lang.Object
-
- java.util.EventObject
-
- org.springframework.context.ApplicationEvent
-
- com.atlassian.event.Event
-
- com.atlassian.confluence.event.events.ConfluenceEvent
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AbstractRestoreEvent,AsyncExportFinishedEvent,AsyncImportFinishedEvent,AsyncImportStartedEvent,AsyncLikeEvent,AsyncPluginEvent,AsyncPluginFrameworkStartedEvent,AsyncPluginModuleDisableEvent,AsyncPluginModuleEnableEvent,ClusterAccessModeEvent,ClusterCacheFlushEvent,ClusterDisableJobEvent,ClusterEnableJobEvent,ClusterEventWrapper,ClusterIndexRequestEvent,ClusterIndexResponseEvent,ClusterIndexSnapshotCreatedEvent,ClusterIndexSnapshotRequestEvent,ClusterIndexSnapshotRequestReceivedEvent,ClusterMaintenanceBannerEvent,ClusterPanicEvent,ClusterReindexRequiredEvent,ClusterSharedHomeSanityCheckEvent,ClusterUpdateCronJobScheduleEvent,ClusterUpdateSimpleJobScheduleEvent,CollaborativeEditingModeChangeEvent,ConfigurationEvent,ConfigurationMigrationEvent,ConfluenceDirectoryEventListener.ClusterDirectoryEvent,ConfluenceLdapDirectoryClearingClusterEvent,ContentEvent,DashboardRecentlyUpdatedQueryEvent,DashboardRecentlyUpdatedViewEvent,DashboardViewEvent,DatabaseConfiguredEvent,DefaultIndexFlushRequester.RequestIndexFlushEvent,DirectoryUserRenamedEvent,EdgeIndexQueueFlushCompleteEvent,EvictQueryRegionsRequestEvent,ExportFinishedEvent,FeedTimeoutEvent,FollowEvent,ForgotPasswordUnknownUserEvent,GlobalPermissionsUpdateEvent,GlobalPermissionsViewEvent,GroupEvent,ImportFinishedEvent,IndexQueueFlushCompleteEvent,JmxConfigChangedEvent,LabelEvent,LabelListViewEvent,LabelManagerMetricsEvent,LookAndFeelEvent,MacroCountEvent,MacroMetadataChangedEvent,MailErrorQueueDeletedEvent,MailErrorQueueResentEvent,MailQueueFlushedEvent,NoConfluencePermissionEvent,NotificationEvent,OpenSearchIndexRecreatedEvent,PageMoveCompletedEvent,PauseAllJobsEvent,PauseJobEvent,PauseJobGroupEvent,PeopleDirectoryViewEvent,PermissionEvent,PluginFrameworkStartedEvent,PluginsClassLoaderAvailableEvent,ReindexEvent,ReIndexRequestEvent,RemovePageTemplateEvent,ResetHibernateIdRangeEvent,ResumeJobEvent,SearchEvent,SecurityEvent,SendUserInviteEvent,SetupCompleteEvent,SiteDarkFeatureDisabledEvent,SiteDarkFeatureEnabledEvent,SiteTitleChangeEvent,SpaceDirectoryViewEvent,SpaceEvent,SudoAuthFailEvent,SudoAuthSuccessEvent,SudoLogoutEvent,SupportRequestCreatedEvent,SynchronyRestartedEvent,TemplateEvent,TerminateBackupRestoreJobRequest,TranslationTransformStateChangedEvent,TriggerJobEvent,UpgradeFinishedEvent,UpgradeStartedEvent,UserEvent,UserMacroAddedEvent,UserMacroRemovedEvent,UserVerificationTokenCleanupEvent,ViewLicenseEvent,ViewMyDraftsEvent,ViewMyFavouritesEvent,ViewMyWatchesEvent,ViewNetworkEvent,XhtmlFragmentTimeoutEvent,XhtmlMacroTimeoutEvent,XStreamStateChangeEvent,XWorkStateChangeEvent,ZduFinalizationRequestEvent,ZduStartEvent
@Deprecated public abstract class ConfluenceEvent extends com.atlassian.event.Event implements Serializable
Deprecated.since 8.9 no replacement, events do not need to extend this any more, but they should still be Serializable- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor Description ConfluenceEvent(Object src)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description booleanequals(@Nullable Object obj)Deprecated.Equals for ConfluenceEvents is defined such that specific sub-events are only equal to events of the same type.inthashCode()Deprecated.Subclasses must override this to hash their own fields.-
Methods inherited from class java.util.EventObject
getSource, toString
-
-
-
-
Constructor Detail
-
ConfluenceEvent
public ConfluenceEvent(Object src)
Deprecated.
-
-
Method Detail
-
equals
public boolean equals(@Nullable Object obj)
Deprecated.Equals for ConfluenceEvents is defined such that specific sub-events are only equal to events of the same type. It is incorrect to try to make an instance of a subclass equal to an instance of any of its superclasses.Subclasses must override this to compare their own fields.
- Overrides:
equalsin classcom.atlassian.event.Event- Parameters:
obj- the object to compare.- Returns:
- true, if the given object has the same runtime class as this object's runtime class, and the event sources are equal.
- See Also:
Event.equals(Object)
-
hashCode
public int hashCode()
Deprecated.Subclasses must override this to hash their own fields.- Overrides:
hashCodein classcom.atlassian.event.Event- Returns:
- the hashcode
- See Also:
Event.hashCode()
-
-