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

flux.UnzipFileAction Maven / Gradle / Ivy

package flux;

/**
 * Unzips a specified zip archive file.
 *
 * @author [email protected]
 */
public interface UnzipFileAction extends Action {

  /**
   * Sets the destination path where the files are extracted to.
   *
   * @param path The destination path where the files are extracted to.
   */
  public void setDestination(String path);

  /**
   * Sets the name of the zip file.
   *
   * @param filename The name of the zip file.
   */
  public void setZipFile(String filename);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy