Class LinksetServiceImpl
- java.lang.Object
-
- org.dspace.app.rest.signposting.service.impl.LinksetServiceImpl
-
- All Implemented Interfaces:
LinksetService
@Service public class LinksetServiceImpl extends Object implements LinksetService
Default implementation ofLinksetService.
-
-
Field Summary
Fields Modifier and Type Field Description protected ItemServiceitemService
-
Constructor Summary
Constructors Constructor Description LinksetServiceImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<List<LinksetNode>>createLinksetNodesForMultipleLinksets(javax.servlet.http.HttpServletRequest request, Context context, Item item)Returns list of linkset nodes for multiple linksets.List<LinksetNode>createLinksetNodesForSingleLinkset(javax.servlet.http.HttpServletRequest request, Context context, DSpaceObject object)Returns list of linkset nodes for single linkset.
-
-
-
Field Detail
-
itemService
@Autowired protected ItemService itemService
-
-
Method Detail
-
createLinksetNodesForMultipleLinksets
public List<List<LinksetNode>> createLinksetNodesForMultipleLinksets(javax.servlet.http.HttpServletRequest request, Context context, Item item)
Description copied from interface:LinksetServiceReturns list of linkset nodes for multiple linksets.- Specified by:
createLinksetNodesForMultipleLinksetsin interfaceLinksetService- Parameters:
request- requestcontext- contextitem- item- Returns:
- two-dimensional list representing a list of lists where each list represents the linkset nodes.
-
createLinksetNodesForSingleLinkset
public List<LinksetNode> createLinksetNodesForSingleLinkset(javax.servlet.http.HttpServletRequest request, Context context, DSpaceObject object)
Description copied from interface:LinksetServiceReturns list of linkset nodes for single linkset.- Specified by:
createLinksetNodesForSingleLinksetin interfaceLinksetService- Parameters:
request- requestcontext- contextobject- dspace object- Returns:
- two-dimensional list representing a list of lists where each list represents the linkset nodes.
-
-