org.zeroturnaround.zip.transform.ZipEntryTransformerEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zt-zip Show documentation
Show all versions of zt-zip Show documentation
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.
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