Oracle Reports
Java API Reference
11g Release 1 (11.1.1)
E10775-01

oracle.reports.server
Interface JobRepository


public interface JobRepository

The interface for job repository. All job repository plugin needs to implement this interface


Method Summary
 void insertJob(Job job)
          Inserts a job object into the repository.
 void removeJob(Job job)
          Removes a job object from the repository.
 void start(java.util.Properties props)
          Starts the repository.
 void stop()
          Stops the repository.
 

Method Detail

start

void start(java.util.Properties props)
           throws RWException
Starts the repository.

Parameters:
props - Properties for starting a job repository.
Throws:
RWException

stop

void stop()
Stops the repository. Before it can be removed, the repository must be stopped.


insertJob

void insertJob(Job job)
               throws RWException
Inserts a job object into the repository.

Parameters:
job - Job object.
Throws:
RWException

removeJob

void removeJob(Job job)
               throws RWException
Removes a job object from the repository.

Parameters:
job - Job object.
Throws:
RWException

Oracle Reports
Java API Reference

Copyright © 1994, 2009 Oracle Corporation. All Rights Reserved.