NIHVIVO-3539 remove WebappDaoFactory.getProperties()
This commit is contained in:
parent
a351309c67
commit
da2c958492
3 changed files with 0 additions and 16 deletions
|
@ -13,12 +13,6 @@ public interface 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
|
||||||
* model. Ill-formed strings or those matching URIs already in use will
|
* model. Ill-formed strings or those matching URIs already in use will
|
||||||
|
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
|
@ -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(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue