toolbox.services.util.logging
Class LoggingServiceWSClientImpl

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

public class LoggingServiceWSClientImpl
extends WSClientService
implements LoggingService

Client side implementation of the LoggingService. This implementation enables clients to consume the LogginService as a web service.


Constructor Summary
LoggingServiceWSClientImpl()
          Default constuctor.
 
Method Summary
 void create(java.lang.String name, java.lang.String confHome, ServiceEnvironment env, XMLProperties xmlProps)
          Obtain a reference to the web service implementation through the super class getServiceObject() method.
 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.ws.WSClientService
clearMessageID, destroy, getMessageID, getServiceObject, setBus, setPassword, setSimpleUDDIService, setUser
 
Methods inherited from class toolbox.services.BaseService
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

LoggingServiceWSClientImpl

public LoggingServiceWSClientImpl()
Default constuctor.

Method Detail

create

public void create(java.lang.String name,
                   java.lang.String confHome,
                   ServiceEnvironment env,
                   XMLProperties xmlProps)
            throws ServiceException
Obtain a reference to the web service implementation through the super class getServiceObject() method.

Specified by:
create in interface Service
Overrides:
create in class WSClientService
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.