1 package com.sslexplorer.boot; 2 3 import java.io.IOException ; 4 import java.io.InputStream ; 5 import java.io.OutputStream ; 6 7 17 public interface RepositoryStore { 18 19 27 public InputStream getEntryInputStream(String name) throws IOException ; 28 29 37 public OutputStream getEntryOutputStream(String name) throws IOException ; 38 39 45 public void removeEntry(String name) throws IOException ; 46 47 53 public boolean hasEntry(String name); 54 55 60 public String [] listEntries(); 61 } 62 | Popular Tags |