updating object property statement template model to enable all data to be retrieved
This commit is contained in:
parent
7f220abf6f
commit
f1c9ac23de
1 changed files with 5 additions and 0 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Reference in a new issue