/* * 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.model.reference.DocumentReference; import org.xwiki.observation.event.filter.EventFilter; /** * An event triggered after a document is rolled back to a previous revision. * <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: c1b9e98c3a59ea0b2a7b4642d98a847ef1e67d6f $ * @since 5.0M2 */ public class DocumentRolledBackEvent extends AbstractDocumentEvent { /** * 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; /** * The revision the document was rolled back to. */ private String revision; /** * Matches all {@link DocumentRolledBackEvent} events. */ public DocumentRolledBackEvent() { super(); } /** * Matches {@link DocumentRolledBackEvent} events that target the specified document. * * @param documentReference the reference of the document to match */ public DocumentRolledBackEvent(DocumentReference documentReference) { this(documentReference, null); } /** * Matches {@link DocumentRolledBackEvent} events that target the specified document and revision. The revision is * matched only if it's not {@code null}. * * @param documentReference the reference of the document to match * @param revision the revision the document was rolled back to */ public DocumentRolledBackEvent(DocumentReference documentReference, String revision) { super(documentReference); this.revision = revision; } /** * Constructor using a custom {@link EventFilter}. * * @param eventFilter the filter to use for matching events */ public DocumentRolledBackEvent(EventFilter eventFilter) { super(eventFilter); } /** * @return the revision the document was rolled back to */ public String getRevision() { return revision; } @Override public boolean matches(Object otherEvent) { boolean matches = super.matches(otherEvent); if (matches) { DocumentRolledBackEvent documentRolledBackEvent = (DocumentRolledBackEvent) otherEvent; matches = revision == null || revision.equals(documentRolledBackEvent.getRevision()); } return matches; } }