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

org.apache.maven.doxia.sink.SinkFactory Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package org.apache.maven.doxia.sink;

/*
 * 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 java.io.IOException;
import java.io.OutputStream;

/**
 * A factory that creates a Sink object.
 *
 * @author Kenney Westerhof
 * @version $Id: SinkFactory.java 736010 2009-01-20 13:06:57Z vsiveton $
 * @since 1.0-alpha-9
 */
public interface SinkFactory
{
    /** The Plexus SinkFactory Role. */
    String ROLE = SinkFactory.class.getName();

    /**
     * Create a Sink into a file.
     *
     * @param outputDir the not-null output dir.
     * @param outputName the not-null output name.
     * @return a Sink instance with a file as output.
     * @throws java.io.IOException if any
     */
    Sink createSink( File outputDir, String outputName )
        throws IOException;

    /**
     * Create a Sink into a file using a specified encoding.
     *
     * @param outputDir the not-null output dir.
     * @param outputName the not-null output name.
     * @param encoding the output encoding.
     * @return a Sink instance with a file as output and using specified encoding.
     * @throws java.io.IOException if any
     * @see #createSink(File, String)
     * @since 1.1
     */
    Sink createSink( File outputDir, String outputName, String encoding )
        throws IOException;

    /**
     * Create a Sink into an OutputStream.
     *
     * @param out not null OutputStream to write the result.
     * @return a Sink instance.
     * @throws java.io.IOException if any
     * @since 1.1
     */
    Sink createSink( OutputStream out )
        throws IOException;

    /**
     * Create a Sink into an OutputStream using a specified encoding.
     *
     * @param out not null OutputStream to write the result.
     * @param encoding the output encoding.
     * @return a Sink instance using specified encoding.
     * @throws java.io.IOException if any
     * @since 1.1
     */
    Sink createSink( OutputStream out, String encoding )
        throws IOException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy