Oracle® Application Server
XML Java API Reference
10g Release 3 (10.1.3)

B28238-01


oracle.soap.server.impl
Class ServletLogger

java.lang.Object
  extended byoracle.soap.server.Logger
      extended byoracle.soap.server.impl.ServletLogger


public class ServletLogger
extends Logger

ServletLogger logs to the servlet log.

Each log request specifies the severity, and the information should be logged iff the severity is at least as high as the specified severity. The order of severity in increasing order is:

For example, if the severity is set to SEVERITY_STATUS, any log request with severity of either SEVERITY_STATUS or SEVERITY_ERROR will be logged.


Field Summary

Fields inherited from class oracle.soap.server.Logger
DEFAULT_SEVERITY, m_severity, OPTION_SEVERITY, SEVERITY_DEBUG, SEVERITY_ERROR, SEVERITY_INVALID, SEVERITY_NAMES, SEVERITY_STATUS

Constructor Summary
ServletLogger()

Method Summary
void init(java.util.Properties options, ContainerContext context)
One-time initialization of the logger with its configuration parameters.
void log(java.lang.String msg, int severity)
Log the given message at the given severity.
void log(java.lang.String msg, java.lang.Throwable t, int severity)
Log the given message and exception at the given severity.
void log(java.lang.Throwable t, int severity)
Log the given exception at the given severity.

Methods inherited from class oracle.soap.server.Logger
getSeverity, getSeverityName, getSeverityValue, isLoggable, setSeverity

Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructor Detail

ServletLogger

public ServletLogger()

Method Detail

init

public void init(java.util.Properties options,
                 ContainerContext context)
          throws SOAPException
One-time initialization of the logger with its configuration parameters.
Specified by:
init in class Logger
Parameters:
options - The configuration options for the logger.
context - The context of the container in which the SOAP server is running, which includes information that may be used by the logger.
Throws:
SOAPException - Unable to initialize the logger.

log

public void log(java.lang.String msg,
                int severity)
Log the given message at the given severity.
Specified by:
log in class Logger
Parameters:
msg - The message to log.
severity - The severity at which to log the information.

log

public void log(java.lang.String msg,
                java.lang.Throwable t,
                int severity)
Log the given message and exception at the given severity.
Specified by:
log in class Logger
Parameters:
msg - The message to log.
t - The throwable exception to log.
severity - The severity at which to log the information.

log

public void log(java.lang.Throwable t,
                int severity)
Log the given exception at the given severity.
Specified by:
log in class Logger
Parameters:
t - The throwable exception to log.
severity - The severity at which to log the information.

Oracle® Application Server
XML Java API Reference
10g Release 3 (10.1.3)

B28238-01


Copyright © 2003, 2006, Oracle. All rights reserved.