All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xwiki.rendering.transformation.linkchecker.InvalidURLEvent Maven / Gradle / Ivy

/*
 * 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.rendering.transformation.linkchecker;

import org.xwiki.observation.event.AbstractFilterableEvent;
import org.xwiki.observation.event.filter.EventFilter;

/**
 * An invalid URL has been found (invalid meaning it cannot be reached).
 *
 * @version $Id: 1cf1887836a522c74c8d116c5b1b6ba61708b791 $
 * @since 3.3M1
 */
public class InvalidURLEvent extends AbstractFilterableEvent
{
    /**
     * The version identifier for this Serializable class. Increment only if the serialized form of the class
     * changes.
     */
    private static final long serialVersionUID = 1L;

    /**
     * Constructor initializing the event filter with an
     * {@link org.xwiki.observation.event.filter.AlwaysMatchingEventFilter}, meaning that this event will match any
     * other annotation add event.
     */
    public InvalidURLEvent()
    {
        super();
    }

    /**
     * Constructor initializing the event filter with a {@link org.xwiki.observation.event.filter.FixedNameEventFilter},
     * meaning that this event will match only events of the same type affecting the same passed name.
     *
     * @param url the failing URL
     */
    public InvalidURLEvent(String url)
    {
        super(url);
    }

    /**
     * Constructor using a custom {@link org.xwiki.observation.event.filter.EventFilter}.
     *
     * @param eventFilter the filter to use for matching events
     */
    public InvalidURLEvent(EventFilter eventFilter)
    {
        super(eventFilter);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy