*/
public static boolean consider( DataAccessFactory factory, URL url ) {
// is this specifically the kind of thing that can take a url?
if (factory instanceof FileDataStoreFactorySpi) {
FileDataStoreFactorySpi fileFactory = (FileDataStoreFactorySpi) factory;
return fileFactory.canProcess(url);
}
// Go through the params and see if a URL can even be used?
// (It should be a required parameter that accepts a URL
for( Param param : factory.getParametersInfo() ) {
if (param.required) {