Package org.dspace.app.rest.repository
Class QAEventRelatedLinkRepository
java.lang.Object
org.dspace.app.rest.repository.AbstractDSpaceRestRepository
org.dspace.app.rest.repository.QAEventRelatedLinkRepository
- All Implemented Interfaces:
LinkRestRepository
@Component("integration.qualityassuranceevents.related")
public class QAEventRelatedLinkRepository
extends AbstractDSpaceRestRepository
implements LinkRestRepository
Link repository for "related" subresource of a qa event.
- Author:
- Andrea Bollini (andrea.bollini at 4science.it)
-
Field Summary
Fields inherited from class org.dspace.app.rest.repository.AbstractDSpaceRestRepository
converter, requestService, utils -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetRelated(jakarta.servlet.http.HttpServletRequest request, String id, org.springframework.data.domain.Pageable pageable, Projection projection) Returns the item related to the qa event with the given id.Methods inherited from class org.dspace.app.rest.repository.AbstractDSpaceRestRepository
getRequestService, obtainContextMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.dspace.app.rest.repository.LinkRestRepository
isEmbeddableRelation
-
Constructor Details
-
QAEventRelatedLinkRepository
public QAEventRelatedLinkRepository()
-
-
Method Details
-
getRelated
@PreAuthorize("hasPermission(#id, \'QUALITYASSURANCEEVENT\', \'READ\')") public ItemRest getRelated(@Nullable jakarta.servlet.http.HttpServletRequest request, String id, @Nullable org.springframework.data.domain.Pageable pageable, Projection projection) Returns the item related to the qa event with the given id. This is another item that should be linked to the target item as part of the correction- Parameters:
request- the http servlet requestid- the qa event idpageable- the optional pageableprojection- the projection object- Returns:
- the item rest representation of the secondary item related to qa event
-