Uses of Class
org.dspace.orcid.OrcidQueue
-
Packages that use OrcidQueue Package Description org.dspace.orcid org.dspace.orcid.dao org.dspace.orcid.dao.impl org.dspace.orcid.service org.dspace.orcid.service.impl -
-
Uses of OrcidQueue in org.dspace.orcid
Fields in org.dspace.orcid with type parameters of type OrcidQueue Modifier and Type Field Description static javax.persistence.metamodel.SingularAttribute<OrcidQueue,Integer>OrcidQueue_. attemptsstatic javax.persistence.metamodel.SingularAttribute<OrcidQueue,String>OrcidQueue_. descriptionstatic javax.persistence.metamodel.SingularAttribute<OrcidQueue,Item>OrcidQueue_. entitystatic javax.persistence.metamodel.SingularAttribute<OrcidQueue,Integer>OrcidQueue_. idstatic javax.persistence.metamodel.SingularAttribute<OrcidQueue,String>OrcidQueue_. metadatastatic javax.persistence.metamodel.SingularAttribute<OrcidQueue,OrcidOperation>OrcidQueue_. operationstatic javax.persistence.metamodel.SingularAttribute<OrcidQueue,Item>OrcidQueue_. profileItemstatic javax.persistence.metamodel.SingularAttribute<OrcidQueue,String>OrcidQueue_. putCodestatic javax.persistence.metamodel.SingularAttribute<OrcidQueue,String>OrcidQueue_. recordType -
Uses of OrcidQueue in org.dspace.orcid.dao
Methods in org.dspace.orcid.dao that return types with arguments of type OrcidQueue Modifier and Type Method Description List<OrcidQueue>OrcidQueueDAO. findByAttemptsLessThan(Context context, int attempts)Get all the OrcidQueue records with attempts less than the given attempts.List<OrcidQueue>OrcidQueueDAO. findByEntityAndRecordType(Context context, Item entity, String type)Find all the OrcidQueue records with the given entity and record type.List<OrcidQueue>OrcidQueueDAO. findByProfileItemAndEntity(Context context, Item profileItem, Item entity)Returns all the orcid queue records with the given profileItem and entity items.List<OrcidQueue>OrcidQueueDAO. findByProfileItemAndRecordType(Context context, Item profileItem, String type)Find all the OrcidQueue records with the given profileItem and record type.List<OrcidQueue>OrcidQueueDAO. findByProfileItemId(Context context, UUID profileItemId, Integer limit, Integer offset)Get the orcid queue records by the profileItem id.List<OrcidQueue>OrcidQueueDAO. findByProfileItemOrEntity(Context context, Item item)Get the OrcidQueue records where the given item is the profileItem OR the entity -
Uses of OrcidQueue in org.dspace.orcid.dao.impl
Methods in org.dspace.orcid.dao.impl that return types with arguments of type OrcidQueue Modifier and Type Method Description List<OrcidQueue>OrcidQueueDAOImpl. findByAttemptsLessThan(Context context, int attempts)List<OrcidQueue>OrcidQueueDAOImpl. findByEntityAndRecordType(Context context, Item entity, String type)List<OrcidQueue>OrcidQueueDAOImpl. findByProfileItemAndEntity(Context context, Item profileItem, Item entity)List<OrcidQueue>OrcidQueueDAOImpl. findByProfileItemAndRecordType(Context context, Item profileItem, String type)List<OrcidQueue>OrcidQueueDAOImpl. findByProfileItemId(Context context, UUID profileItemId, Integer limit, Integer offset)List<OrcidQueue>OrcidQueueDAOImpl. findByProfileItemOrEntity(Context context, Item item) -
Uses of OrcidQueue in org.dspace.orcid.service
Methods in org.dspace.orcid.service that return OrcidQueue Modifier and Type Method Description OrcidQueueOrcidQueueService. create(Context context, Item profileItem, Item entity)Create an OrcidQueue record with the given profileItem and entity.OrcidQueueOrcidQueueService. createEntityDeletionRecord(Context context, Item profileItem, String description, String type, String putCode)Create an OrcidQueue record with the given profileItem to delete a record on ORCID related to the given entity type with the given putCode.OrcidQueueOrcidQueueService. createEntityInsertionRecord(Context context, Item profileItem, Item entity)Create an OrcidQueue record with the given profileItem and entity to push new data to ORCID.OrcidQueueOrcidQueueService. createEntityUpdateRecord(Context context, Item profileItem, Item entity, String putCode)Create an OrcidQueue record with the given profileItem to update a record on ORCID with the given putCode.OrcidQueueOrcidQueueService. createProfileDeletionRecord(Context context, Item profile, String description, String recordType, String metadata, String putCode)Create an OrcidQueue record with the profile to remove data from ORCID.OrcidQueueOrcidQueueService. createProfileInsertionRecord(Context context, Item profile, String description, String recordType, String metadata)Create an OrcidQueue record with the profile to add data to ORCID.OrcidQueueOrcidQueueService. find(Context context, int id)Get an OrcidQueue from the database.Methods in org.dspace.orcid.service that return types with arguments of type OrcidQueue Modifier and Type Method Description List<OrcidQueue>OrcidQueueService. findAll(Context context)Find all the ORCID queue records.List<OrcidQueue>OrcidQueueService. findByAttemptsLessThan(Context context, int attempts)Get all the OrcidQueue records with attempts less than the given attempts.List<OrcidQueue>OrcidQueueService. findByProfileItemAndEntity(Context context, Item profileItem, Item entity)Get the orcid queue records by the profileItem and entity.List<OrcidQueue>OrcidQueueService. findByProfileItemId(Context context, UUID profileItemId)Get the orcid queue records by the profileItem id.List<OrcidQueue>OrcidQueueService. findByProfileItemId(Context context, UUID profileItemId, Integer limit, Integer offset)Get the orcid queue records by the profileItem id.List<OrcidQueue>OrcidQueueService. findByProfileItemOrEntity(Context context, Item item)Get the OrcidQueue records where the given item is the profileItem OR the entityMethods in org.dspace.orcid.service with parameters of type OrcidQueue Modifier and Type Method Description voidOrcidQueueService. delete(Context context, OrcidQueue orcidQueue)Delete an OrcidQueueOrcidHistoryOrcidHistoryService. synchronizeWithOrcid(Context context, OrcidQueue orcidQueue, boolean forceAddition)Synchronize the entity related to the given orcidQueue record with ORCID.voidOrcidQueueService. update(Context context, OrcidQueue orcidQueue)Update the OrcidQueue -
Uses of OrcidQueue in org.dspace.orcid.service.impl
Methods in org.dspace.orcid.service.impl that return OrcidQueue Modifier and Type Method Description OrcidQueueOrcidQueueServiceImpl. create(Context context, Item profileItem, Item entity)OrcidQueueOrcidQueueServiceImpl. createEntityDeletionRecord(Context context, Item profileItem, String description, String type, String putCode)OrcidQueueOrcidQueueServiceImpl. createEntityInsertionRecord(Context context, Item profileItem, Item entity)OrcidQueueOrcidQueueServiceImpl. createEntityUpdateRecord(Context context, Item profileItem, Item entity, String putCode)OrcidQueueOrcidQueueServiceImpl. createProfileDeletionRecord(Context context, Item profile, String description, String recordType, String metadata, String putCode)OrcidQueueOrcidQueueServiceImpl. createProfileInsertionRecord(Context context, Item profile, String description, String recordType, String metadata)OrcidQueueOrcidQueueServiceImpl. find(Context context, int id)Methods in org.dspace.orcid.service.impl that return types with arguments of type OrcidQueue Modifier and Type Method Description List<OrcidQueue>OrcidQueueServiceImpl. findAll(Context context)List<OrcidQueue>OrcidQueueServiceImpl. findByAttemptsLessThan(Context context, int attempts)List<OrcidQueue>OrcidQueueServiceImpl. findByProfileItemAndEntity(Context context, Item profileItem, Item entity)List<OrcidQueue>OrcidQueueServiceImpl. findByProfileItemId(Context context, UUID profileItemId)List<OrcidQueue>OrcidQueueServiceImpl. findByProfileItemId(Context context, UUID profileItemId, Integer limit, Integer offset)List<OrcidQueue>OrcidQueueServiceImpl. findByProfileItemOrEntity(Context context, Item item)Methods in org.dspace.orcid.service.impl with parameters of type OrcidQueue Modifier and Type Method Description voidOrcidQueueServiceImpl. delete(Context context, OrcidQueue orcidQueue)OrcidHistoryOrcidHistoryServiceImpl. synchronizeWithOrcid(Context context, OrcidQueue orcidQueue, boolean forceAddition)voidOrcidQueueServiceImpl. update(Context context, OrcidQueue orcidQueue)
-