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