Log4j 1.3alpha-8

Uses of Interface
org.apache.log4j.spi.OptionHandler

Packages that use OptionHandler
org.apache.log4j The main log4j package. 
org.apache.log4j.db The org.apache.log4j.db package provides means to append logging events into various databases. 
org.apache.log4j.filter   
org.apache.log4j.helpers This package is used internally. 
org.apache.log4j.net Package for remote logging. 
org.apache.log4j.nt Package for NT event logging. 
org.apache.log4j.plugins   
org.apache.log4j.rolling Implements various file rolling policies. 
org.apache.log4j.spi Contains part of the System Programming Interface (SPI) needed to extend log4j. 
org.apache.log4j.varia Contains various appenders, filters and other odds and ends. 
org.apache.log4j.xml XML based components. 
 

Uses of OptionHandler in org.apache.log4j
 

Classes in org.apache.log4j that implement OptionHandler
 class AppenderSkeleton
          Abstract superclass of the other appenders in the package.
 class AsyncAppender
          The AsyncAppender lets users log events asynchronously.
 class ConsoleAppender
          ConsoleAppender appends log events to System.out or System.err using a layout specified by the user.
 class DailyRollingFileAppender
          Deprecated. Replaced by RollingFileAppender
 class FileAppender
          FileAppender appends log events to a file.
 class HTMLLayout
          HTMLLayout outputs events in an HTML table.
 class Layout
          Extend this abstract class to create your own log layout format.
 class PatternLayout
          A flexible layout configurable with pattern string.
 class RollingFileAppender
          Deprecated. Replaced by RollingFileAppender
 class SimpleLayout
          SimpleLayout consists of the level of the log statement, followed by " - " and then the log message itself.
 class TTCCLayout
          Deprecated. Please use PatternLayout instead.
 class WriterAppender
          WriterAppender appends log events to a Writer or an OutputStream depending on the user's choice.
 

Uses of OptionHandler in org.apache.log4j.db
 

Subinterfaces of OptionHandler in org.apache.log4j.db
 interface ConnectionSource
          The ConnectionSource interface provides a pluggable means of transparently obtaining JDBC Connections for log4j classes that require the use of a Connection.
 

Classes in org.apache.log4j.db that implement OptionHandler
 class ConnectionSourceSkeleton
           
 class CustomSQLDBReceiver
          Converts log data stored in a database into LoggingEvents.
 class DataSourceConnectionSource
          The DataSourceConnectionSource is an implementation of ConnectionSource that obtains the Connection in the recommended JDBC manner based on a DataSource.
 class DBAppender
          The DBAppender inserts loggin events into three database tables in a format independent of the Java programming language.
 class DBReceiver
           
 class DriverManagerConnectionSource
          The DriverManagerConnectionSource is an implementation of ConnectionSource that obtains the Connection in the traditional JDBC manner based on the connection URL.
 class JNDIConnectionSource
          The JNDIConnectionSource is an implementation of ConnectionSource that obtains a DataSource from a JNDI provider and uses it to obtain a Connection.
 

Uses of OptionHandler in org.apache.log4j.filter
 

Classes in org.apache.log4j.filter that implement OptionHandler
 class AndFilter
          A filter that 'and's the results of any number of contained filters together.
 class DenyAllFilter
          This filter drops all logging events.
 class ExpressionFilter
          A filter supporting complex expressions - supports both infix and postfix expressions (infix expressions must first be converted to postfix prior to processing).
 class LevelMatchFilter
          This is a very simple filter based on level matching.
 class LevelRangeFilter
          This is a very simple filter based on level matching, which can be used to reject messages with priorities outside a certain range.
 class LocationInfoFilter
          Location information is usually specified at the appender level - all events associated with an appender either create and parse stack traces or they do not.
 class MapFilter
           
 class PropertyFilter
          NOTE: This filter modifies logging events by adding properties to the event.
 class ReflectionFilter
           
 class StringMatchFilter
          This is a very simple filter based on string matching.
 

Uses of OptionHandler in org.apache.log4j.helpers
 

Classes in org.apache.log4j.helpers that implement OptionHandler
 class DateLayout
          Deprecated. since 1.3
 class OnlyOnceErrorHandler
          Deprecated. As of 1.3
 

Uses of OptionHandler in org.apache.log4j.net
 

Classes in org.apache.log4j.net that implement OptionHandler
 class JMSAppender
          A simple appender that publishes events to a JMS Topic.
 class JMSReceiver
          JMSReceiver receives a remote logging event on a configured JSM topic and "posts" it to a LoggerRepository as if the event was generated locally.
 class MulticastAppender
          Multicast-based Appender.
 class MulticastReceiver
          Multicast-based receiver.
 class SMTPAppender
          Send an e-mail when a specific logging event occurs, typically on errors or fatal errors.
 class SocketAppender
          Sends LoggingEvent objects to a remote a log server, usually a SocketNode.
 class SocketHubAppender
          Sends LoggingEvent objects to a set of remote log servers, usually a SocketNodes.
 class SocketHubReceiver
          SocketHubReceiver receives a remote logging event on a configured socket and "posts" it to a LoggerRepository as if the event was generated locally.
 class SocketReceiver
          SocketReceiver receives a remote logging event on a configured socket and "posts" it to a LoggerRepository as if the event was generated locally.
 class SyslogAppender
          Implements an RFC 3164 compliant agent to send log messages to a remote syslog daemon.
 class TelnetAppender
          The TelnetAppender is a log4j appender that specializes in writing to a read-only socket.
 class UDPAppender
          Sends log information as a UDP datagrams.
 class UDPReceiver
          Receive LoggingEvents encoded with an XMLLayout, convert the XML data to a LoggingEvent and post the LoggingEvent.
 class XMLSocketReceiver
          XMLSocketReceiver receives a remote logging event via XML on a configured socket and "posts" it to a LoggerRepository as if the event were generated locally.
 

Uses of OptionHandler in org.apache.log4j.nt
 

Classes in org.apache.log4j.nt that implement OptionHandler
 class NTEventLogAppender
          Append to the NT event log system.
 

Uses of OptionHandler in org.apache.log4j.plugins
 

Subinterfaces of OptionHandler in org.apache.log4j.plugins
 interface Plugin
          Defines the required interface for all Plugin objects.
 

Classes in org.apache.log4j.plugins that implement OptionHandler
 class PluginSkeleton
          A convienent abstract class for plugin subclasses that implements the basic methods of the Plugin interface.
 class Receiver
          Defines the base class for Receiver plugins.
 

Uses of OptionHandler in org.apache.log4j.rolling
 

Subinterfaces of OptionHandler in org.apache.log4j.rolling
 interface RollingPolicy
          A RollingPolicy specifies the actions taken on a logging file rollover.
 interface TriggeringPolicy
          A TriggeringPolicy controls the conditions under which rollover occurs.
 

Classes in org.apache.log4j.rolling that implement OptionHandler
 class FilterBasedTriggeringPolicy
          FilterBasedTriggeringPolicy determines if rolling should be triggered by evaluating the current message against a set of filters.
 class FixedWindowRollingPolicy
          When rolling over, FixedWindowRollingPolicy renames files according to a fixed window algorithm as described below.
 class RollingPolicyBase
          Implements methods common to most, it not all, rolling policies.
 class SizeBasedTriggeringPolicy
          SizeBasedTriggeringPolicy looks at size of the file being currently written to.
 class TimeBasedRollingPolicy
          TimeBasedRollingPolicy is both easy to configure and quite powerful.
 

Uses of OptionHandler in org.apache.log4j.spi
 

Subinterfaces of OptionHandler in org.apache.log4j.spi
 interface ErrorHandler
          Deprecated. As of 1.3
 

Classes in org.apache.log4j.spi that implement OptionHandler
 class Filter
          Users should extend this class to implement customized logging event filtering.
 

Uses of OptionHandler in org.apache.log4j.varia
 

Classes in org.apache.log4j.varia that implement OptionHandler
 class ExternallyRolledFileAppender
          Deprecated. version 1.3
 class FallbackErrorHandler
          Deprecated. As of 1.3
 class ListAppender
          A very basic appender that takes the events and stores them in to a java.util.List for late retrieval.
 class ListModelAppender
          A very basic appender that takes the events and stores them in to a ListModel for late retrieval.
 class LogFilePatternReceiver
          LogFilePatternReceiver can parse and tail log files, converting entries into LoggingEvents.
 class NullAppender
          A NullAppender merely exists, it never outputs a message to any device.
 class SoundAppender
          Plays a sound clip created using Applet.newAudioClip when an event is received.
 

Uses of OptionHandler in org.apache.log4j.xml
 

Classes in org.apache.log4j.xml that implement OptionHandler
 class XMLLayout
          The output of the XMLLayout consists of a series of log4j:event elements as defined in the log4j.dtd .
 


Log4j 1.3alpha-8

Copyright © 2000-2006 Apache Software Foundation.
Licensed under the Apache License, Version 2.0.