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

org.zeroturnaround.zip.transform.ZipEntryTransformerEntry Maven / Gradle / Ivy

Go to download

The project is intended to have a small, easy and fast library to process ZIP archives. Either create, modify or explode them. On disk or in memory.

There is a newer version: 1.17
Show newest version
package org.zeroturnaround.zip.transform;

/**
 * A transformer assigned to a certain ZIP entry.
 * 
 * @author Rein Raudjärv
 */
public class ZipEntryTransformerEntry {

  private final String path;
  
  private final ZipEntryTransformer transformer;

  public ZipEntryTransformerEntry(String path, ZipEntryTransformer transformer) {
    this.path = path;
    this.transformer = transformer;
  }
  
  public String getPath() {
    return path;
  }
  
  public ZipEntryTransformer getTransformer() {
    return transformer;
  }

  public String toString() {
    return path + "=" + transformer;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy