1 22 package org.jboss.net.protocol; 23 24 import java.io.IOException ; 25 import java.net.URL ; 26 import java.util.Collection ; 27 28 32 public interface URLLister { 33 43 Collection listMembers(URL baseUrl, String patterns, boolean scanNonDottedSubDirs) throws IOException ; 44 45 53 Collection listMembers(URL baseUrl, String patterns) throws IOException ; 54 55 64 Collection listMembers(URL baseUrl, URLFilter filter, boolean scanNonDottedSubDirs) throws IOException ; 65 66 74 Collection listMembers(URL baseUrl, URLFilter filter) throws IOException ; 75 76 79 public interface URLFilter { 80 86 boolean accept(URL baseURL, String memberName); 87 } 88 } 89 | Popular Tags |