org.apache.maven.doxia.linkcheck.LinkCheck Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of doxia-linkcheck Show documentation
Show all versions of doxia-linkcheck Show documentation
Doxia linkcheck is a tool to check the validity of links
The newest version!
package org.apache.maven.doxia.linkcheck;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import java.io.File;
import org.apache.maven.doxia.linkcheck.model.LinkcheckModel;
/**
* Tool to check links from html files in a given directory.
*
* @author Vincent Siveton
* @version $Id: LinkCheck.java 709894 2008-11-02 16:42:06Z hboutemy $
*/
public interface LinkCheck
{
/** Plexus Role */
String ROLE = LinkCheck.class.getName();
/**
* Set the base directory for the files to be linkchecked.
*
* @param base the base directory
*/
void setBasedir( File base );
/**
* Sets the base URL. This is prepended to links that start with '/'.
*
* @param url the base URL.
*/
void setBaseURL( String url );
/**
* Sets the excluded HTTP errors, i.e. 404
, a int[] with excluded errors.
*
* @param excl The excludes to set
* @see {@link HttpStatus} for all possible values.
*/
void setExcludedHttpStatusErrors( int[] excl );
/**
* Sets the excluded HTTP warnings, i.e. 301
, a int[] with excluded errors.
*
* @param excl The excludes to set
* @see {@link HttpStatus} for all possible values.
*/
void setExcludedHttpStatusWarnings( int[] excl );
/**
* Sets the excluded links, a String[] with excluded locations.
* Could contains a link, i.e. http://maven.apache.org/
,
* or pattern links i.e. http://maven.apache.org/**/*.html
*
* @param excl The excludes to set
*/
void setExcludedLinks( String[] excl );
/**
* Sets the excluded pages, a String[] with excluded locations.
*
* @param excl The excludes to set
*/
void setExcludedPages( String[] excl );
/**
* Sets the http parameters bean.
*
* @param http parameters bean.
*/
void setHttp( HttpBean http );
/**
* Sets the cache File.
*
* @param cacheFile The cacheFile to set. Set this to null to ignore storing the cache.
*/
void setLinkCheckCache( File cacheFile );
/**
* Set the online mode.
*
* @param onLine online mode.
*/
void setOnline( boolean onLine );
/**
* Set the output file for the results.
* If this is null, no output will be written.
*
* @param file the output file.
*/
void setReportOutput( File file );
/**
* Sets the outputEncoding.
*
* @param encoding The outputEncoding to set.
*/
void setReportOutputEncoding( String encoding );
/**
* Execute the link check. The basedir should be set before.
*
* @return the analysis in a LinkCheck
model.
* @throws LinkCheckException if any
* @see #setBasedir(File)
*/
LinkcheckModel execute()
throws LinkCheckException;
/**
* Set the encoding to use when processing files.
*
* @param encoding a valid encoding
* @see Supported encodings
*/
void setEncoding( String encoding );
}