Uses of Class
uws.job.ExecutionPhase

Packages that use ExecutionPhase
uws.job   
uws.job.manager   
 

Uses of ExecutionPhase in uws.job
 

Fields in uws.job declared as ExecutionPhase
protected  ExecutionPhase JobPhase.phase
          Current phase of the associated job.
 

Methods in uws.job that return ExecutionPhase
 ExecutionPhase AbstractJob.getPhase()
          Gets the phase in which this job is now.
 ExecutionPhase JobPhase.getPhase()
          Gets the current phase of the job.
static ExecutionPhase ExecutionPhase.getPhase(java.lang.String phStr)
           
static ExecutionPhase ExecutionPhase.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ExecutionPhase[] ExecutionPhase.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in uws.job with parameters of type ExecutionPhase
static java.lang.String ExecutionPhase.getStr(ExecutionPhase ph)
           
 void AbstractJob.notifyObservers(ExecutionPhase oldPhase)
          Notifies all the observer of this job that its phase has changed.
 void AbstractJob.setPhase(ExecutionPhase p)
          Sets the current phase of this job.
 void JobPhase.setPhase(ExecutionPhase p)
          Lets changing the current phase of the associated job considering the order of execution phases.
 void AbstractJob.setPhase(ExecutionPhase p, boolean force)
          Sets the current phase of this job, respecting or not the imposed order.
 void JobPhase.setPhase(ExecutionPhase p, boolean force)
          Lets changing the current phase of the associated job considering or not the order of execution phases.
 void JobObserver.update(AbstractJob job, ExecutionPhase oldPhase, ExecutionPhase newPhase)
          Used when one of the observed jobs notifies its observers of a modification of its execution phase.
 

Constructors in uws.job with parameters of type ExecutionPhase
AbstractJob(java.lang.String jobId, java.lang.String jobName, java.lang.String ownerId, ExecutionPhase phase, java.util.Date startTime, java.util.Date endTime, long maxDuration, java.util.Date destructTime, java.util.List<Result> results, ErrorSummary errors, java.util.Map<java.lang.String,java.lang.String> additionalParams)
          MANUAL CONSTRUCTOR - DISCOURAGED Constructs a Job with all its parameters.
 

Uses of ExecutionPhase in uws.job.manager
 

Methods in uws.job.manager that return ExecutionPhase
 ExecutionPhase QueuedExecutionManager.execute(AbstractJob jobToExecute)
          By default a job is executed if there are not yet more than QueuedExecutionManager.getMaxRunningJobs() running jobs.
 ExecutionPhase DefaultExecutionManager.execute(AbstractJob jobToExecute)
           
 ExecutionPhase ExecutionManager.execute(AbstractJob jobToExecute)
          Lets deciding whether the given job can start immediately or whether it must be put in the queue.