com.raritantechnologies.searchApp.scheduler
Interface IJobProcess

All Superinterfaces:
IConfigurable
All Known Subinterfaces:
IReportingProcess
All Known Implementing Classes:
AlertPageGenerator, AlertReportGenerator, ClearIndexKeyProcess, CollectionBuildProcess, CollectionBuildProcess, CollectionDataReadyMessenger, CompressDirectoryProcess, CreateAdhocTablesProcess, CreateDirectoryProcess, DatabaseCommandProcess, DataCollectorSearchSource, DecompressDirectoryProcess, ERoomBuildProcess, ERoomInfoProcess, ERoomMembersProcess, ERoomUpdateProcess, ExecuteStatementsProcess, FileDownloadProcess, FormatterJobProcess, GetURLProcess, JobProcessTester, LoggingProcess, NewResultsProcess, NewResultsReporter, PrintDirectoryProcess, ProcessRunner, ProfileNetGenerator, QueryProcessorPipeline, QueryRuleLoaderProcess, RemoteFiler, RemoteFileSender, RemoteJobDispatcher, RemoveDirectoryProcess, RenameFileProcess, SerialJobProcess, SetIndexKeyProcess, TaxDefDBLoader, TaxDefGenerator, TimeDelayProcess, TimeStampProcess, TopicSetBuilderProcess, TopQueryReporter, TopResultReporter, TreeBuilderProcess, VerityThesaurusBuilder, WriteFileProcess, XMLDispatchFilterListener

public interface IJobProcess
extends IConfigurable

Base interface for scheduled job processes. All JobProcesses are configurable. They have a single void "action" method - executeJob that starts the process.

All initialization, etc. occurs through the ConfigurationManager framework.

XML Configuration Schema:
  <JobProcess processClass="[ class of IJobProcess implementation ]" >
     <!-- configuration parameters of the IJobProcess class -->
  </JobProcess>
 

Developed by Raritan Technologies .

Author:
Ted Sullivan

Method Summary
 void executeJob(RaritanPageContext rpc)
           
 void executeJob(java.lang.String[] args)
           
 java.lang.String getConfigurationXML()
           
 void initialize(org.w3c.dom.Element elem)
          Initializes the object from an XML tag or element.
 

Method Detail

initialize

public void initialize(org.w3c.dom.Element elem)
Description copied from interface: IConfigurable
Initializes the object from an XML tag or element. This method is called by the Framework as part of the application initializtion. see ConfigurationManager, XMLConfigurationManager, XMLSearchFieldMapFactory, XMLSearchSourceFactory. Configurable objects that are owned or contained by other configurable objects will be initialized in by the parent object.

Specified by:
initialize in interface IConfigurable

executeJob

public void executeJob(RaritanPageContext rpc)

executeJob

public void executeJob(java.lang.String[] args)

getConfigurationXML

public java.lang.String getConfigurationXML()