Uses of Class
org.dspace.harvest.HarvestedCollection
Packages that use HarvestedCollection
Package
Description
-
Uses of HarvestedCollection in org.dspace.harvest
Fields in org.dspace.harvest with type parameters of type HarvestedCollectionModifier and TypeFieldDescriptionstatic jakarta.persistence.metamodel.EntityType<HarvestedCollection>HarvestedCollection_.class_static jakarta.persistence.metamodel.SingularAttribute<HarvestedCollection,Collection> HarvestedCollection_.collectionstatic jakarta.persistence.metamodel.SingularAttribute<HarvestedCollection,String> HarvestedCollection_.harvestMessagestatic jakarta.persistence.metamodel.SingularAttribute<HarvestedCollection,Instant> HarvestedCollection_.harvestStartTimestatic jakarta.persistence.metamodel.SingularAttribute<HarvestedCollection,Integer> HarvestedCollection_.harvestStatusstatic jakarta.persistence.metamodel.SingularAttribute<HarvestedCollection,Integer> HarvestedCollection_.harvestTypestatic jakarta.persistence.metamodel.SingularAttribute<HarvestedCollection,Integer> HarvestedCollection_.idstatic jakarta.persistence.metamodel.SingularAttribute<HarvestedCollection,Instant> HarvestedCollection_.lastHarvestedstatic jakarta.persistence.metamodel.SingularAttribute<HarvestedCollection,String> HarvestedCollection_.metadataConfigIdstatic jakarta.persistence.metamodel.SingularAttribute<HarvestedCollection,String> HarvestedCollection_.oaiSetIdstatic jakarta.persistence.metamodel.SingularAttribute<HarvestedCollection,String> HarvestedCollection_.oaiSourceMethods in org.dspace.harvest that return HarvestedCollectionModifier and TypeMethodDescriptionHarvestedCollectionServiceImpl.create(Context context, Collection collection) HarvestedCollectionServiceImpl.find(Context context, Collection collection) HarvestedCollectionServiceImpl.findNewestHarvest(Context context) HarvestedCollectionServiceImpl.findOldestHarvest(Context context) Methods in org.dspace.harvest that return types with arguments of type HarvestedCollectionModifier and TypeMethodDescriptionHarvestedCollectionServiceImpl.findByStatus(Context context, int status) Methods in org.dspace.harvest with parameters of type HarvestedCollectionModifier and TypeMethodDescriptionvoidHarvestScheduler.addThread(Context context, HarvestedCollection harvestedCollection) Adds a thread to the ready stack.voidHarvestedCollectionServiceImpl.delete(Context context, HarvestedCollection harvestedCollection) booleanHarvestedCollectionServiceImpl.isHarvestable(HarvestedCollection harvestedCollection) booleanHarvestedCollectionServiceImpl.isReady(HarvestedCollection harvestedCollection) voidHarvestedCollectionServiceImpl.update(Context context, HarvestedCollection harvestedCollection) Constructors in org.dspace.harvest with parameters of type HarvestedCollection -
Uses of HarvestedCollection in org.dspace.harvest.dao
Methods in org.dspace.harvest.dao that return HarvestedCollectionModifier and TypeMethodDescriptionHarvestedCollectionDAO.findByCollection(Context context, Collection collection) HarvestedCollectionDAO.findByStatusAndMinimalTypeOrderByLastHarvestedAsc(Context context, int status, int type, int limit) HarvestedCollectionDAO.findByStatusAndMinimalTypeOrderByLastHarvestedDesc(Context context, int status, int type, int limit) Methods in org.dspace.harvest.dao that return types with arguments of type HarvestedCollectionModifier and TypeMethodDescriptionHarvestedCollectionDAO.findByLastHarvestedAndHarvestTypeAndHarvestStatusesAndHarvestTime(Context context, Instant startTime, int minimalType, int[] statuses, int expirationStatus, Instant expirationTime) HarvestedCollectionDAO.findByStatus(Context context, int status) -
Uses of HarvestedCollection in org.dspace.harvest.dao.impl
Methods in org.dspace.harvest.dao.impl that return HarvestedCollectionModifier and TypeMethodDescriptionHarvestedCollectionDAOImpl.findByCollection(Context context, Collection collection) HarvestedCollectionDAOImpl.findByStatusAndMinimalTypeOrderByLastHarvestedAsc(Context context, int status, int type, int limit) HarvestedCollectionDAOImpl.findByStatusAndMinimalTypeOrderByLastHarvestedDesc(Context context, int status, int type, int limit) Methods in org.dspace.harvest.dao.impl that return types with arguments of type HarvestedCollectionModifier and TypeMethodDescriptionHarvestedCollectionDAOImpl.findByLastHarvestedAndHarvestTypeAndHarvestStatusesAndHarvestTime(Context context, Instant startTime, int minimalType, int[] statuses, int expirationStatus, Instant expirationTime) HarvestedCollectionDAOImpl.findByStatus(Context context, int status) -
Uses of HarvestedCollection in org.dspace.harvest.service
Methods in org.dspace.harvest.service that return HarvestedCollectionModifier and TypeMethodDescriptionHarvestedCollectionService.create(Context context, Collection collection) Create a new harvest instance row for a specified collection.HarvestedCollectionService.find(Context context, Collection collection) Find the harvest settings corresponding to this collectionHarvestedCollectionService.findNewestHarvest(Context context) Find the collection that was harvested most recently.HarvestedCollectionService.findOldestHarvest(Context context) Find the collection that was harvested the longest time ago.Methods in org.dspace.harvest.service that return types with arguments of type HarvestedCollectionModifier and TypeMethodDescriptionFind all collections that are set up for harvestingHarvestedCollectionService.findByStatus(Context context, int status) Find all collections with the specified status flag.Find all collections that are ready for harvestingMethods in org.dspace.harvest.service with parameters of type HarvestedCollectionModifier and TypeMethodDescriptionvoidHarvestedCollectionService.delete(Context context, HarvestedCollection harvestedCollection) booleanHarvestedCollectionService.isHarvestable(HarvestedCollection harvestedCollection) Returns whether this harvest instance is actually harvestable, i.e. whether its settings options are set up correctly.booleanHarvestedCollectionService.isReady(HarvestedCollection harvestedCollection) Returns whether the specified collection is ready for immediate harvest.voidHarvestedCollectionService.update(Context context, HarvestedCollection harvestedCollection)