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

org.codehaus.mojo.truezip.util.TrueZip Maven / Gradle / Ivy

There is a newer version: 1.2
Show newest version
package org.codehaus.mojo.truezip.util;

import java.io.IOException;
import java.util.List;

import org.apache.maven.plugin.logging.Log;

import de.schlichtherle.io.File;

public interface TrueZip
{
    String ROLE = TrueZip.class.getName();

    List list( TrueZipFileSet fileSet, boolean verbose, Log logger );

    List list( TrueZipFileSet fileSet );

    void copy( TrueZipFileSet oneFileSet, boolean verbose, Log logger )
        throws IOException;

    void copy( TrueZipFileSet oneFileSet )
        throws IOException;

    void copyFile( File source, File dest )
        throws IOException;

    void moveFile( File source, File dest );

    void move( TrueZipFileSet oneFileSet, boolean verbose, Log logger )
        throws IOException;

    void move( TrueZipFileSet oneFileSet )
        throws IOException;

    void remove( TrueZipFileSet oneFileSet, boolean verbose, Log logger )
        throws IOException;

    void remove( TrueZipFileSet oneFileSet )
        throws IOException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy