/* * 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.eventstream; import org.xwiki.component.annotation.Role; import org.xwiki.stability.Unstable; /** * Provide a description for a specific implementation of RecordableEvent so that users can knows what the event is * about. * * @version $Id: ac55f58a3e6a4474c9472f5ddd34473af7e93464 $ * @since 9.2RC1 */ @Role @Unstable public interface RecordableEventDescriptor { /** * @return the name of the event described by the descriptor, as it is stored in the event stream. */ String getEventType(); /** * @return the name of the application that provide this event */ String getApplicationName(); /** * @return the translation key of the description of the event type */ String getDescription(); /** * @return the icon corresponding to the application */ String getApplicationIcon(); }