NIHVIVO-3539 remove WebappDaoFactory.getProperties()

This commit is contained in:
brianjlowe 2012-03-21 20:32:58 +00:00
parent a351309c67
commit da2c958492
3 changed files with 0 additions and 16 deletions

View file

@ -12,12 +12,6 @@ public interface WebappDaoFactory {
* Free any resources associated with this WebappDaoFactory
*/
public void close();
/**
* Retrieves a map containing arbitrary key-value pairs describing this
* WebappDaoFactory
*/
public Map<String,String> getProperties();
/**
* Checks a URI String for two things: well-formedness and uniqueness in the

View file

@ -76,10 +76,6 @@ public class WebappDaoFactoryFiltering implements WebappDaoFactory {
/* ******************* filtering *********************** */
public Map<String,String> getProperties() {
return innerWebappDaoFactory.getProperties();
}
public String checkURI(String uriStr) {
return innerWebappDaoFactory.checkURI(uriStr);
}