Package org.xwiki.bridge.event
Class WikiProvisionedEvent
- java.lang.Object
-
- org.xwiki.observation.event.AbstractFilterableEvent
-
- org.xwiki.bridge.event.AbstractWikiEvent
-
- org.xwiki.bridge.event.WikiProvisionedEvent
-
- All Implemented Interfaces:
Serializable
,WikiEvent
,org.xwiki.observation.event.EndEvent
,org.xwiki.observation.event.EndFoldEvent
,org.xwiki.observation.event.Event
,org.xwiki.observation.event.FilterableEvent
public class WikiProvisionedEvent extends AbstractWikiEvent implements org.xwiki.observation.event.EndFoldEvent
An event triggered just after a provisioning job is finished.The event also send the following parameters:
- source: the wiki identifier as
String
- data: the current {com.xpn.xwiki.XWikiContext} instance
- Since:
- 5.3RC1
- Version:
- $Id: 5ec691ede0cfe5924b7e66a20385f4c8c89aafaa $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WikiProvisionedEvent()
Matches allWikiProvisionedEvent
events.WikiProvisionedEvent(String wikiId)
Constructor initializing the event filter with aFixedNameEventFilter
, meaning that this event will match only events affecting the same wiki.WikiProvisionedEvent(org.xwiki.observation.event.filter.EventFilter eventFilter)
Constructor using a customEventFilter
.
-
Method Summary
-
Methods inherited from class org.xwiki.bridge.event.AbstractWikiEvent
getWikiId
-
Methods inherited from class org.xwiki.observation.event.AbstractFilterableEvent
equals, getEventFilter, hashCode, matches
-
-
-
-
Constructor Detail
-
WikiProvisionedEvent
public WikiProvisionedEvent()
Matches allWikiProvisionedEvent
events.
-
WikiProvisionedEvent
public WikiProvisionedEvent(String wikiId)
Constructor initializing the event filter with aFixedNameEventFilter
, meaning that this event will match only events affecting the same wiki.- Parameters:
wikiId
- the wiki identifier
-
WikiProvisionedEvent
public WikiProvisionedEvent(org.xwiki.observation.event.filter.EventFilter eventFilter)
Constructor using a customEventFilter
.- Parameters:
eventFilter
- the filter to use for matching events
-
-