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 * Free any resources associated with this WebappDaoFactory
*/ */
public void close(); 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 * 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 *********************** */ /* ******************* filtering *********************** */
public Map<String,String> getProperties() {
return innerWebappDaoFactory.getProperties();
}
public String checkURI(String uriStr) { public String checkURI(String uriStr) {
return innerWebappDaoFactory.checkURI(uriStr); return innerWebappDaoFactory.checkURI(uriStr);
} }

View file

@ -144,12 +144,6 @@ return this.objectPropertyStatementDao; }
// Un-implemented methods // Un-implemented methods
// ---------------------------------------------------------------------- // ----------------------------------------------------------------------
@Override
public Map<String, String> getProperties() {
throw new RuntimeException(
"WebappDaoFactory.getProperties() not implemented.");
}
@Override @Override
public String checkURI(String uriStr) { public String checkURI(String uriStr) {
throw new RuntimeException( throw new RuntimeException(