Skip to content

Instantly share code, notes, and snippets.

@terrywbrady
Last active March 20, 2017 16:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save terrywbrady/3ad113963ee88078d25d0623573805be to your computer and use it in GitHub Desktop.
Save terrywbrady/3ad113963ee88078d25d0623573805be to your computer and use it in GitHub Desktop.
Community/Collection Hierarchy in DSpace 7 REST
/*
* Only items, collections, communities, and sites have handles, so handle should move out to a separate object.
* Every navigable item has a breadcrumb trail.
*/
NavigableObjectRest extends DSpaceObjectRest {
private String handle;
//Is this embedded - too slow
//Is this retrieved through a separate endpoint - cumbersome
//Is this embedded but populated only on request - how do we represent that in our framework
private List<NavigableObjectRest> breadcrumbList;
}
/*
* Site and Community objects have descendant hierarchies
*/
HierarchicalObjectRest extends NavigableObjectRest {
//Is this embedded - too slow
//Is this retrieved through a separate endpoint - cumbersome
//Is this embedded but populated only on request - how do we represent that in our framework
private List<NavigableObjectRest> descendandHierarchyList;
}
@terrywbrady
Copy link
Author

I created a Jira ticket to track this as well. https://jira.duraspace.org/browse/DS-3533

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment