Module ch.qos.logback.classic
Class ConfigurationModelHandler
- java.lang.Object
-
- ch.qos.logback.core.spi.ContextAwareBase
-
- ch.qos.logback.core.model.processor.ModelHandlerBase
-
- ch.qos.logback.classic.model.processor.ConfigurationModelHandler
-
- All Implemented Interfaces:
ContextAware
- Direct Known Subclasses:
ConfigurationModelHandlerFull
public class ConfigurationModelHandler extends ModelHandlerBase
In 1.3.9/1.49, ConfigurationModelHandler has been reduced in functionality and no longer initiates a reconfiguration task. This change was justified by the need to remove java.xml reachability. See also https://jira.qos.ch/browse/LOGBACK-1717See
ConfigurationModelHandlerFullsubclass offering configuration reloading support.
-
-
Field Summary
Fields Modifier and Type Field Description protected Booleanscanning-
Fields inherited from class ch.qos.logback.core.spi.ContextAwareBase
context
-
-
Constructor Summary
Constructors Constructor Description ConfigurationModelHandler(Context context)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Class<ConfigurationModel>getSupportedModelClass()Subclasses should return the subclass of Model that they expect to handle.voidhandle(ModelInterpretationContext mic, Model model)static ModelHandlerBasemakeInstance(Context context, ModelInterpretationContext mic)voidpostHandle(ModelInterpretationContext mic, Model model)-
Methods inherited from class ch.qos.logback.core.model.processor.ModelHandlerBase
isSupportedModelType, toString
-
Methods inherited from class ch.qos.logback.core.spi.ContextAwareBase
addError, addError, addInfo, addInfo, addStatus, addWarn, addWarn, getContext, getDeclaredOrigin, getStatusManager, setContext
-
-
-
-
Constructor Detail
-
ConfigurationModelHandler
public ConfigurationModelHandler(Context context)
-
-
Method Detail
-
makeInstance
public static ModelHandlerBase makeInstance(Context context, ModelInterpretationContext mic)
-
getSupportedModelClass
protected Class<ConfigurationModel> getSupportedModelClass()
Description copied from class:ModelHandlerBaseSubclasses should return the subclass of Model that they expect to handle. The default implementation assumes that all Model classes are supported. This a very lax assumption which is usually not true.- Overrides:
getSupportedModelClassin classModelHandlerBase- Returns:
- supported model class
- See Also:
ModelHandlerBase.isSupportedModelType(Model)
-
handle
public void handle(ModelInterpretationContext mic, Model model)
- Specified by:
handlein classModelHandlerBase
-
postHandle
public void postHandle(ModelInterpretationContext mic, Model model) throws ModelHandlerException
- Overrides:
postHandlein classModelHandlerBase- Throws:
ModelHandlerException
-
-