toolbox.services.util.logging
Class LoggingServiceXMLHttpClientImpl

Package class diagram package LoggingServiceXMLHttpClientImpl
java.lang.Object
  extended by toolbox.services.BaseService
      extended by toolbox.services.util.logging.LoggingServiceXMLHttpClientImpl
All Implemented Interfaces:
Service, LoggingService

public class LoggingServiceXMLHttpClientImpl
extends BaseService
implements LoggingService

Client side implementation of the LoggingService. This implementation enables clients to consume the LogginService using simple XML/HTTP calls.


Constructor Summary
LoggingServiceXMLHttpClientImpl()
          Default constuctor.
 
Method Summary
 void create(java.lang.String name, java.lang.String confHome, ServiceEnvironment env, XMLProperties xmlProps)
          Create the required HTTP client infrastructure components required to submit log messages.
 void log(LogMessage message)
          Log the given message using the level set on the message.
 void logError(LogMessage message)
          Log the given message as an error (ERROR).
 void logFatal(LogMessage message)
          Log the given message as fatal (FATAL).
 void logInfo(LogMessage message)
          Log the given message as informational (INFO).
 void logWarning(LogMessage message)
          Log the given message as a warning (WARN).
 
Methods inherited from class toolbox.services.BaseService
destroy, getConfigHome, getName, getProperties, getProperty, getXMLProperties, logConfig, logFine, logFiner, logFinest, logInfo, logSevere, logWarning
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LoggingServiceXMLHttpClientImpl

public LoggingServiceXMLHttpClientImpl()
Default constuctor.

Method Detail

create

public void create(java.lang.String name,
                   java.lang.String confHome,
                   ServiceEnvironment env,
                   XMLProperties xmlProps)
            throws ServiceException
Create the required HTTP client infrastructure components required to submit log messages.

Specified by:
create in interface Service
Overrides:
create in class BaseService
Parameters:
name - The name of the service.
confHome - The path to the configuration home directory.
env - ServiceEnvironment of this service.
xmlProps - XML configuration properties.
Throws:
ServiceException - if the service cannot be created.

logInfo

public void logInfo(LogMessage message)
Log the given message as informational (INFO).

Specified by:
logInfo in interface LoggingService
Parameters:
message - LogMessage to log.

logWarning

public void logWarning(LogMessage message)
Log the given message as a warning (WARN).

Specified by:
logWarning in interface LoggingService
Parameters:
message - LogMessage to log.

logError

public void logError(LogMessage message)
Log the given message as an error (ERROR).

Specified by:
logError in interface LoggingService
Parameters:
message - LogMessage to log.

logFatal

public void logFatal(LogMessage message)
Log the given message as fatal (FATAL).

Specified by:
logFatal in interface LoggingService
Parameters:
message - LogMessage to log.

log

public void log(LogMessage message)
Log the given message using the level set on the message.

Specified by:
log in interface LoggingService
Parameters:
message - LogMessage to log.