/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.xwiki.bridge.event; import org.xwiki.observation.event.EndFoldEvent; import org.xwiki.observation.event.filter.EventFilter; /** * An event triggered when a provisioning job has failed to perform its task. * <p> * The event also send the following parameters: * </p> * <ul> * <li>source: the wiki identifier as {@link String}</li> * <li>data: the current {com.xpn.xwiki.XWikiContext} instance</li> * </ul> * * @version $Id: 071de073f6aa2efa3f7fc7d5f43403e25d7a8117 $ * @since 5.3RC1 */ public class WikiProvisioningFailedEvent extends AbstractWikiEvent implements EndFoldEvent { /** * The version identifier for this Serializable class. Increment only if the <i>serialized</i> form of the class * changes. */ private static final long serialVersionUID = 1L; /** * Matches all {@link WikiProvisioningFailedEvent} events. */ public WikiProvisioningFailedEvent() { } /** * Constructor initializing the event filter with a {@link org.xwiki.observation.event.filter.FixedNameEventFilter}, * meaning that this event will match only events affecting the same wiki. * * @param wikiId the wiki identifier */ public WikiProvisioningFailedEvent(String wikiId) { super(wikiId); } /** * Constructor using a custom {@link org.xwiki.observation.event.filter.EventFilter}. * * @param eventFilter the filter to use for matching events */ public WikiProvisioningFailedEvent(EventFilter eventFilter) { super(eventFilter); } }