io.higgs.http.server.transformers.JarFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-s3 Show documentation
Show all versions of http-s3 Show documentation
Higgs HTTP S3 (Single Site Server)
package io.higgs.http.server.transformers;
import java.io.InputStream;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
/**
* @author Courtney Robinson
*/
public class JarFile {
/**
* The ZIP/JAR file
*/
ZipFile zip;
/**
* The file that this instance represents
*/
ZipEntry entry;
/**
* An input stream opened to the file
*/
InputStream inputStream;
public JarFile(ZipFile zip, ZipEntry entry, InputStream inputStream) {
this.zip = zip;
this.entry = entry;
this.inputStream = inputStream;
}
public ZipFile getZip() {
return zip;
}
public ZipEntry getEntry() {
return entry;
}
public InputStream getInputStream() {
return inputStream;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy