Package org.dspace.app.rest.repository
Class MetadataFieldRestRepository
- java.lang.Object
-
- org.dspace.app.rest.repository.AbstractDSpaceRestRepository
-
- org.dspace.app.rest.repository.DSpaceRestRepository<MetadataFieldRest,Integer>
-
- org.dspace.app.rest.repository.MetadataFieldRestRepository
-
- All Implemented Interfaces:
org.springframework.data.repository.CrudRepository<MetadataFieldRest,Integer>,org.springframework.data.repository.PagingAndSortingRepository<MetadataFieldRest,Integer>,org.springframework.data.repository.Repository<MetadataFieldRest,Integer>
@Component("core.metadatafield") public class MetadataFieldRestRepository extends DSpaceRestRepository<MetadataFieldRest,Integer>This is the repository responsible to manage MetadataField Rest object- 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 Constructor Description MetadataFieldRestRepository()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected MetadataFieldRestcreateAndReturn(Context context)Method to implement to support the creation of a new instance.protected voiddelete(Context context, Integer id)Method to implement to support delete of a single object instanceorg.springframework.data.domain.Page<MetadataFieldRest>findAll(Context context, org.springframework.data.domain.Pageable pageable)Method to implement to support scroll of entity instances from the collection resource endpointorg.springframework.data.domain.Page<MetadataFieldRest>findByFieldName(String schemaName, String elementName, String qualifierName, String query, String exactName, org.springframework.data.domain.Pageable pageable)Endpoint for the search in theMetadataFieldobjects by various different params representing the field name.org.springframework.data.domain.Page<MetadataFieldRest>findBySchema(String schemaName, org.springframework.data.domain.Pageable pageable)MetadataFieldRestfindOne(Context context, Integer id)Method to implement to support retrieval of a specific REST object instanceClass<MetadataFieldRest>getDomainClass()The REST model supported by the repositoryprotected MetadataFieldRestput(Context context, javax.servlet.http.HttpServletRequest request, String apiCategory, String model, Integer id, com.fasterxml.jackson.databind.JsonNode jsonNode)Implement this method in the subclass to support updating a REST object.-
Methods inherited from class org.dspace.app.rest.repository.DSpaceRestRepository
action, action, count, createAndReturn, createAndReturn, createAndReturn, createAndReturn, createAndReturn, delete, deleteAll, deleteAll, deleteById, existsById, findAll, findAll, findAll, findAllById, findById, patch, patch, put, put, put, save, save, saveAll, upload, upload, upload
-
Methods inherited from class org.dspace.app.rest.repository.AbstractDSpaceRestRepository
getRequestService, obtainContext
-
-
-
-
Method Detail
-
findOne
@PreAuthorize("permitAll()") public MetadataFieldRest findOne(Context context, Integer id)Description copied from class:DSpaceRestRepositoryMethod to implement to support retrieval of a specific REST object instance- Specified by:
findOnein classDSpaceRestRepository<MetadataFieldRest,Integer>- Parameters:
context- the dspace contextid- the rest object id- Returns:
- the REST object identified by its ID
-
findAll
public org.springframework.data.domain.Page<MetadataFieldRest> findAll(Context context, org.springframework.data.domain.Pageable pageable)
Description copied from class:DSpaceRestRepositoryMethod to implement to support scroll of entity instances from the collection resource endpoint- Specified by:
findAllin classDSpaceRestRepository<MetadataFieldRest,Integer>- Parameters:
context- the dspace contextpageable- object embedding the requested pagination info- Returns:
-
findBySchema
public org.springframework.data.domain.Page<MetadataFieldRest> findBySchema(String schemaName, org.springframework.data.domain.Pageable pageable)
-
findByFieldName
public org.springframework.data.domain.Page<MetadataFieldRest> findByFieldName(String schemaName, String elementName, String qualifierName, String query, String exactName, org.springframework.data.domain.Pageable pageable) throws SQLException
Endpoint for the search in theMetadataFieldobjects by various different params representing the field name. Query being a partial- Parameters:
schemaName- an exact match of the prefix of the metadata schema (e.g. "dc", "dcterms", "eperson")elementName- an exact match of the field's element (e.g. "contributor", "title")qualifierName- an exact match of the field's qualifier (e.g. "author", "alternative")query- part of the fully qualified field, should start with the start of the schema, element or qualifier (e.g. "dc.ti", "contributor", "auth", "contributor.ot")exactName- exactName, The exact fully qualified field, should use the syntax schema.element .qualifier or schema.element if no qualifier exists (e.g. "dc.title", "dc.contributor .author"). It will only return one value if there's an exact matchpageable- the pagination options- Returns:
- List of
MetadataFieldRestobjects representing allMetadataFieldobjects that match the given params - Throws:
SQLException
-
getDomainClass
public Class<MetadataFieldRest> getDomainClass()
Description copied from class:DSpaceRestRepositoryThe REST model supported by the repository- Specified by:
getDomainClassin classDSpaceRestRepository<MetadataFieldRest,Integer>
-
createAndReturn
@PreAuthorize("hasAuthority(\'ADMIN\')") protected MetadataFieldRest createAndReturn(Context context) throws AuthorizeException, SQLExceptionDescription copied from class:DSpaceRestRepositoryMethod to implement to support the creation of a new instance. Usually require to retrieve the http request from the thread bound attribute- Overrides:
createAndReturnin classDSpaceRestRepository<MetadataFieldRest,Integer>- Parameters:
context- the dspace context- Returns:
- the created REST object
- Throws:
AuthorizeExceptionSQLException
-
delete
@PreAuthorize("hasAuthority(\'ADMIN\')") protected void delete(Context context, Integer id) throws AuthorizeExceptionDescription copied from class:DSpaceRestRepositoryMethod to implement to support delete of a single object instance- Overrides:
deletein classDSpaceRestRepository<MetadataFieldRest,Integer>- Parameters:
context- the dspace contextid- the id of the rest object to delete- Throws:
AuthorizeException
-
put
@PreAuthorize("hasAuthority(\'ADMIN\')") protected MetadataFieldRest put(Context context, javax.servlet.http.HttpServletRequest request, String apiCategory, String model, Integer id, com.fasterxml.jackson.databind.JsonNode jsonNode) throws SQLException, AuthorizeExceptionDescription copied from class:DSpaceRestRepositoryImplement this method in the subclass to support updating a REST object.- Overrides:
putin classDSpaceRestRepository<MetadataFieldRest,Integer>- Parameters:
context- the dspace contextapiCategory- the API category e.g. "api"model- the DSpace model e.g. "metadatafield"id- the ID of the target REST objectjsonNode- the part of the request body representing the updated rest object- Returns:
- the updated REST object
- Throws:
SQLException- when the database returns an errorAuthorizeException- if the context user is not authorized to perform this operation
-
-