![JAR search and dependency download from the Maven repository](/logo.png)
org.codehaus.mojo.truezip.util.TrueZip Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of truezip-maven-plugin Show documentation
Show all versions of truezip-maven-plugin Show documentation
Use this plugin create new or manipulate existing archives
package org.codehaus.mojo.truezip.util;
import java.io.IOException;
import java.util.List;
import org.apache.maven.plugin.logging.Log;
import de.schlichtherle.truezip.file.TFile;
import de.schlichtherle.truezip.fs.FsSyncException;
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( TFile source, TFile dest )
throws IOException;
void moveFile( TFile source, TFile dest )
throws IOException;
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;
void sync()
throws FsSyncException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy