Uses of Class
dk.netarkivet.harvester.datamodel.HarvestDefinition

Packages that use HarvestDefinition
dk.netarkivet.harvester.datamodel   
 

Uses of HarvestDefinition in dk.netarkivet.harvester.datamodel
 

Subclasses of HarvestDefinition in dk.netarkivet.harvester.datamodel
 class FullHarvest
          This class contains the specific properties and operations of snapshot harvest definitions.
 class PartialHarvest
          This class contains the specific properties and operations of harvest definitions which are not snapshot harvest definitions.
 

Methods in dk.netarkivet.harvester.datamodel that return HarvestDefinition
 HarvestDefinition HarvestDefinitionDBDAO.getHarvestDefinition(java.lang.String name)
          Get the harvest definition that has the given name, if any.
abstract  HarvestDefinition HarvestDefinitionDAO.getHarvestDefinition(java.lang.String name)
          Get the harvest definition that has the given name, or null, if no harvestdefinition exist with this name.
 HarvestDefinition FullHarvest.getPreviousHarvestDefinition()
          Get the previous HarvestDefinition which is used to base this.
 HarvestDefinition HarvestDefinitionDBDAO.read(java.lang.Long harvestDefinitionID)
          Read the stored harvest definition for the given ID.
abstract  HarvestDefinition HarvestDefinitionDAO.read(java.lang.Long harvestDefinitionID)
          Read the stored harvest definition for the given ID.
 

Methods in dk.netarkivet.harvester.datamodel that return types with arguments of type HarvestDefinition
 java.util.Iterator<HarvestDefinition> HarvestDefinitionDBDAO.getAllHarvestDefinitions()
          Get a list of all existing harvest definitions ordered by name.
abstract  java.util.Iterator<HarvestDefinition> HarvestDefinitionDAO.getAllHarvestDefinitions()
          Get a list of all existing harvest definitions.
 java.util.Iterator<HarvestDefinition> HarvestDefinitionDAO.iterator()
          Get an iterator of all harvest definitions.
 

Methods in dk.netarkivet.harvester.datamodel with parameters of type HarvestDefinition
 java.lang.Long HarvestDefinitionDBDAO.create(HarvestDefinition harvestDefinition)
          Create a harvest definition in Database.
abstract  java.lang.Long HarvestDefinitionDAO.create(HarvestDefinition harvestDefinition)
          Create a harvest definition in persistent storage.
 java.util.Iterator<HarvestInfo> DomainDAO.getHarvestInfoBasedOnPreviousHarvestDefinition(HarvestDefinition previousHarvestDefinition)
          Find all info about results of a harvest definition.
 void HarvestDefinitionDBDAO.update(HarvestDefinition hd)
          Update an existing harvest definition with new info.
abstract  void HarvestDefinitionDAO.update(HarvestDefinition harvestDefinition)
          Update an existing harvest definition with new info in persistent storage.