Interface PropertyGroupDao
-
- All Known Implementing Classes:
PropertyGroupDaoFiltering,PropertyGroupDaoJena
public interface PropertyGroupDao
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PropertyGroupcreateDummyPropertyGroup(String name, int rank)voiddeletePropertyGroup(PropertyGroup group)PropertyGroupgetGroupByURI(String uri)List<PropertyGroup>getPublicGroups(boolean withProperties)StringinsertNewPropertyGroup(PropertyGroup group)intremoveUnpopulatedGroups(List<PropertyGroup> groups)voidupdatePropertyGroup(PropertyGroup group)
-
-
-
Method Detail
-
getGroupByURI
PropertyGroup getGroupByURI(String uri)
-
getPublicGroups
List<PropertyGroup> getPublicGroups(boolean withProperties)
-
removeUnpopulatedGroups
int removeUnpopulatedGroups(List<PropertyGroup> groups)
-
createDummyPropertyGroup
PropertyGroup createDummyPropertyGroup(String name, int rank)
-
insertNewPropertyGroup
String insertNewPropertyGroup(PropertyGroup group)
-
updatePropertyGroup
void updatePropertyGroup(PropertyGroup group)
-
deletePropertyGroup
void deletePropertyGroup(PropertyGroup group)
-
-