corrected 'items' and 'parentCommunityList' in return.

This commit is contained in:
Anja Le Blanc
2013-10-28 14:08:09 +00:00
parent a591a52081
commit 4d46c3a505

View File

@@ -137,7 +137,19 @@ public class Collection extends DSpaceObject {
this.parentCommunity = parentCommunity; this.parentCommunity = parentCommunity;
} }
public List<Community> getParentCommunityList() { public List<Item> getItems() {
return items;
}
public void setItems(List<Item> items) {
this.items = items;
}
public void setParentCommunityList(List<Community> parentCommunityList) {
this.parentCommunityList = parentCommunityList;
}
public List<Community> getParentCommunityList() {
return parentCommunityList; return parentCommunityList;
} }