com.waveset.policy
Class DictionaryLoader

java.lang.Object
  extended bycom.waveset.task.Executor
      extended bycom.waveset.policy.DictionaryLoader

public class DictionaryLoader
extends Executor


Field Summary
static java.lang.String XML_HEADER
           
 
Fields inherited from class com.waveset.task.Executor
_monitor, _suspendRequested, _terminateRequested, trace
 
Constructor Summary
DictionaryLoader()
           
 
Method Summary
 void execute(TaskContext ctx, TaskInstance task)
          Execute the task.
 
Methods inherited from class com.waveset.task.Executor
addExtendedResult, delete, doRealWork, getExtendedResult, getPool, isSuspendRequested, isTerminateRequested, println, processEvent, setPool, setSuspendRequested, setTerminateRequested
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

XML_HEADER

public static final java.lang.String XML_HEADER
See Also:
Constant Field Values
Constructor Detail

DictionaryLoader

public DictionaryLoader()
Method Detail

execute

public void execute(TaskContext ctx,
                    TaskInstance task)
Description copied from class: Executor
Execute the task. System resources are supplied through the context object. Task options and persistent task state is supplied through the task object. This method provides shell execution logic as a default. A subclass must feel perfectly free to override this logic if any part of the structure seems inappropriate. However, if satisfied with this structure, a subclass need only implement the abstract method doRealWork().

Overrides:
execute in class Executor
See Also:
Executor.doRealWork(TaskContext, TaskInstance)