/*
* @author : Mark Drake
* @version : 1.0
* Development Environment : Oracle9i JDeveloper
* Name of the File : Logger.java
* Creation / Modification History :
* Shefali Bansal 25-Jan-2003 Modified
* Modifications Made:
* 1. Removed the unused abstract log() method
*/
// Package Name
package oracle.otnsamples.xmldb.simplebulkloader.common.trace;
/**
* 'Logger' is an abstract class. This class is part of simple bulk loader
* application. It contains abstract methods whose implementation is provided
* by FileBasedLogger class and SystemLogger class
*/
public abstract interface Logger {
public abstract void log( String parm1 );
public abstract void printStackTrace( Throwable parm1 );
}