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

Packages that use JobPriority
dk.netarkivet.harvester.datamodel   
dk.netarkivet.harvester.harvesting.distribute   
 

Uses of JobPriority in dk.netarkivet.harvester.datamodel
 

Methods in dk.netarkivet.harvester.datamodel that return JobPriority
static JobPriority JobPriority.fromOrdinal(int status)
          Helper method that gives a proper object from e.g.
 JobPriority Job.getPriority()
          Get the priority of this job.
static JobPriority JobPriority.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static JobPriority[] JobPriority.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in dk.netarkivet.harvester.datamodel with parameters of type JobPriority
abstract  java.util.Iterator<java.lang.Long> JobDAO.getAllJobIds(JobStatus status, JobPriority priority)
          Return a list of all job_id's representing jobs with the given status and priority.
 java.util.Iterator<java.lang.Long> JobDBDAO.getAllJobIds(JobStatus status, JobPriority priority)
           
 

Constructors in dk.netarkivet.harvester.datamodel with parameters of type JobPriority
Job(java.lang.Long harvestID, DomainConfiguration cfg, JobPriority priority, long forceMaxObjectsPerDomain, long forceMaxBytesPerDomain, long forceMaxJobRunningTime, int harvestNum)
          Package private constructor for common initialisation.
Job(java.lang.Long harvestID, java.util.Map<java.lang.String,java.lang.String> configurations, JobPriority priority, long forceMaxObjectsPerDomain, long forceMaxBytesPerDomain, long forceMaxJobRunningTime, JobStatus status, java.lang.String orderXMLname, org.dom4j.Document orderXMLdoc, java.lang.String seedlist, int harvestNum)
          Create a new Job object from basic information storable in the DAO.
 

Uses of JobPriority in dk.netarkivet.harvester.harvesting.distribute
 

Methods in dk.netarkivet.harvester.harvesting.distribute that return JobPriority
 JobPriority PersistentJobData.getJobPriority()
          Return the job priority.
 JobPriority HarvesterStatusMessage.getJobProprity()
           
 

Methods in dk.netarkivet.harvester.harvesting.distribute with parameters of type JobPriority
static ChannelID JobChannelUtil.getChannel(JobPriority jobPriority)
          Finds channels based on the priority of jobs.
 

Constructors in dk.netarkivet.harvester.harvesting.distribute with parameters of type JobPriority
HarvesterStatusMessage(java.lang.String applicationInstanceId, JobPriority jobPriority, boolean isAvailable)
          Builds a new message.