mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-18 07:23:08 +00:00
corrected 'items' and 'parentCommunityList' in return.
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user