com.ibm.etill.cashier
Interface CashierTrace

All Known Implementing Classes:
SimpleCashierTrace

public interface CashierTrace

This interface should be implemented by classes which want to receive trace messages from the Cashier.


Method Summary
void trace(java.lang.String classname, java.lang.String methodname, java.lang.String message) Creates a single trace entry in the cashier trace facility.

Method Detail

trace

public void trace(java.lang.String classname,
                  java.lang.String methodname,
                  java.lang.String message)
Creates a single trace entry in the cashier trace facility.
Parameters:
classname - name of the class in which this method is called.
methodname - name of the method in which this method is called.
message - text to be written to the trace facility.

Feedback