updates for issues VIVO-507 and VIVO-589

This commit is contained in:
tworrall 2013-12-02 10:57:42 -05:00
parent 8ec28b71de
commit cabd58dd0a
2 changed files with 3 additions and 1 deletions

View file

@ -1467,7 +1467,7 @@ local:awardOrHonorReceiptsConfig a :ObjectPropertyDisplayConfig ;
:listViewConfigFile "listViewConfig-default.xml"^^xsd:string ; :listViewConfigFile "listViewConfig-default.xml"^^xsd:string ;
:displayName "receipts" ; :displayName "receipts" ;
vitro:displayRankAnnot 3; vitro:displayRankAnnot 3;
vitro:hiddenFromDisplayBelowRoleLevelAnnot role:nobody ; vitro:hiddenFromDisplayBelowRoleLevelAnnot role:public ;
vitro:prohibitedFromUpdateBelowRoleLevelAnnot role:nobody ; vitro:prohibitedFromUpdateBelowRoleLevelAnnot role:nobody ;
:propertyGroup <http://vivoweb.org/ontology#vitroPropertyGroupoverview> . :propertyGroup <http://vivoweb.org/ontology#vitroPropertyGroupoverview> .

View file

@ -103,6 +103,7 @@ public class ModelUtils {
List<String> properties = new ArrayList<String>(); List<String> properties = new ArrayList<String>();
properties.add(processPropertyURI); properties.add(processPropertyURI);
properties.add(nonProcessPropertyURI); properties.add(nonProcessPropertyURI);
properties.add(grantPropertyURI);
return properties; return properties;
} }
@ -110,6 +111,7 @@ public class ModelUtils {
List<String> properties = new ArrayList<String>(); List<String> properties = new ArrayList<String>();
properties.add(processPropertyInverseURI); properties.add(processPropertyInverseURI);
properties.add(nonProcessPropertyInverseURI); properties.add(nonProcessPropertyInverseURI);
properties.add(grantPropertyInverseURI);
return properties; return properties;
} }
} }