Merge branch 'DS-3743' into DS-3740

This commit is contained in:
Luigi Andrea Pascarelli
2017-11-07 19:05:37 +01:00

View File

@@ -29,6 +29,9 @@ public class WorkspaceItemRest extends BaseObjectRest<Integer> {
private Map<String, SectionData> sections;
@JsonIgnore
private CollectionRest collection;
@JsonIgnore
private ItemRest item;
@@ -92,4 +95,12 @@ public class WorkspaceItemRest extends BaseObjectRest<Integer> {
public void setSections(Map<String, SectionData> sections) {
this.sections = sections;
}
public CollectionRest getCollection() {
return collection;
}
public void setCollection(CollectionRest collection) {
this.collection = collection;
}
}