updating object property statement template model to enable all data to be retrieved

This commit is contained in:
hudajkhan 2014-08-27 15:46:09 -04:00
parent 7f220abf6f
commit f1c9ac23de

View file

@ -140,6 +140,11 @@ public class ObjectPropertyStatementTemplateModel extends PropertyStatementTempl
public String uri(String key) {
return cleanURIForDisplay(data.get(key));
}
//Adding this method to enable retrieval of the entire data map
public Map<String, String> getAllData() {
return data;
}
@Override
public String getDeleteUrl() {