/* * 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.EndEvent; /** * An event triggered whenever a client request (action) is processed, like <tt>/upload/</tt> or <tt>/view/</tt>. A * specific event corresponds to only one {@link #actionName action type}. * <p> * The event also send the following parameters: * </p> * <ul> * <li>source: the current {com.xpn.xwiki.doc.XWikiDocument} instance</li> * <li>data: the current {com.xpn.xwiki.XWikiContext} instance</li> * </ul> * * @version $Id: f471d57811e9920b9a7ea1e16d95dce1011943ce $ * @since 3.2M3 */ // TODO: use the enumerated Action class when it's implemented public class ActionExecutedEvent extends AbstractActionExecutionEvent implements EndEvent { /** * Match any {@link ActionExecutedEvent}. */ public ActionExecutedEvent() { } /** * Constructor initializing the action name of the event. * * @param actionName the name of the executed action */ public ActionExecutedEvent(String actionName) { super(actionName); } }