001package org.nuxeo.osgi.util.jar;
002
003import java.io.IOException;
004import java.util.jar.JarFile;
005
006public interface JarFileCloser {
007
008    void close(JarFile file) throws IOException;
009
010    public static final JarFileCloser NOOP = new JarFileCloser() {
011
012        @Override
013        public void close(JarFile file) throws IOException {;
014        }
015    };
016
017}