Package org.apache.log4j.spi
Interface OptionHandler
- All Known Subinterfaces:
ErrorHandler
- All Known Implementing Classes:
AppenderSkeleton
,AsyncAppender
,ConsoleAppender
,DailyRollingFileAppender
,DateLayout
,DenyAllFilter
,EnhancedPatternLayout
,ExternallyRolledFileAppender
,FallbackErrorHandler
,FileAppender
,Filter
,HTMLLayout
,JDBCAppender
,JMSAppender
,Layout
,LevelMatchFilter
,LevelRangeFilter
,NullAppender
,OnlyOnceErrorHandler
,PatternLayout
,RewriteAppender
,RollingFileAppender
,SimpleLayout
,SMTPAppender
,SocketAppender
,SocketHubAppender
,StringMatchFilter
,SyslogAppender
,TelnetAppender
,TTCCLayout
,WriterAppender
,XMLLayout
public interface OptionHandler
A string based interface to configure package components.
- Since:
- 0.8.1
- Author:
- Ceki Gülcü, Anders Kristensen
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Activate the options that were previously set with calls to option setters.
-
Method Details
-
activateOptions
void activateOptions()Activate the options that were previously set with calls to option setters.This allows to defer activiation of the options until all options have been set. This is required for components which have related options that remain ambigous until all are set.
For example, the FileAppender has the
File
andAppend
options both of which are ambigous until the other is also set.
-