com.adventnet.management.transport
Interface LogInterface


public interface LogInterface

This is the interface implemented by applications using the Server to gather stderr, debug and log messages. The application class implementing this interface will use the setLogClass method of Server to redirect all the messages to self.

See Also:
SAServer,LogMessage

Method Summary
 void dbg(java.lang.String str)
          This is the method for handling debug messages.
 void err(java.lang.String str)
          Error messages are handled by this method.
 void out(java.lang.String str)
          Log messages are handled by this method.
 

Method Detail

dbg

void dbg(java.lang.String str)
This is the method for handling debug messages.

Parameters:
dbg - Debug message

err

void err(java.lang.String str)
Error messages are handled by this method.

Parameters:
err - Error message

out

void out(java.lang.String str)
Log messages are handled by this method.

Parameters:
out - Log message