1 package com.atlassian.plugin.util.zip;
2
3 import java.io.File;
4 import java.io.IOException;
5 import java.io.FileNotFoundException;
6 import java.util.zip.ZipEntry;
7
8 public interface Unzipper
9 {
10 void unzip() throws IOException;
11
12 void conditionalUnzip() throws IOException;
13
14 File unzipFileInArchive(String fileName) throws IOException, FileNotFoundException;
15
16 ZipEntry[] entries() throws IOException;
17 }