- java.lang.Object
-
- ch.qos.logback.core.spi.ContextAwareBase
-
- ch.qos.logback.core.joran.action.Action
-
- ch.qos.logback.core.joran.action.BaseModelAction
-
- All Implemented Interfaces:
ContextAware
- Direct Known Subclasses:
AppenderAction,AppenderRefAction,ByPropertiesConditionAction,ConfigurationAction,ContextNameAction,ConversionRuleAction,DefinePropertyAction,ElseAction,EventEvaluatorAction,IfAction,ImportAction,InsertFromJNDIAction,LevelAction,LoggerAction,LoggerContextListenerAction,ParamAction,PropertyAction,ResourceAction,RootLoggerAction,SequenceNumberGeneratorAction,SerializeModelAction,ShutdownHookAction,SiftAction,StatusListenerAction,ThenAction,TimestampAction
public abstract class BaseModelAction extends Action
-
-
Field Summary
-
Fields inherited from class ch.qos.logback.core.joran.action.Action
ACTION_CLASS_ATTRIBUTE, CLASS_ATTRIBUTE, FILE_ATTRIBUTE, KEY_ATTRIBUTE, NAME_ATTRIBUTE, PATTERN_ATTRIBUTE, SCOPE_ATTRIBUTE, VALUE_ATTRIBUTE
-
Fields inherited from class ch.qos.logback.core.spi.ContextAwareBase
context
-
-
Constructor Summary
Constructors Constructor Description BaseModelAction()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidbegin(SaxEventInterpretationContext saxEventInterpretationContext, String name, Attributes attributes)Called when the parser encounters an element matching aPattern.voidbody(SaxEventInterpretationContext ec, String body)Called to pass the body (as text) contained within an element.protected abstract ModelbuildCurrentModel(SaxEventInterpretationContext interpretationContext, String name, Attributes attributes)Builds and returns a Model instance for the current XML element being processed.voidend(SaxEventInterpretationContext saxEventInterpretationContext, String name)protected booleanvalidPreconditions(SaxEventInterpretationContext intercon, String name, Attributes attributes)Validate preconditions of this action.-
Methods inherited from class ch.qos.logback.core.joran.action.Action
atLine, getColumnNumber, getLineColStr, getLineNumber, nearLine, toString
-
Methods inherited from class ch.qos.logback.core.spi.ContextAwareBase
addError, addError, addInfo, addInfo, addStatus, addWarn, addWarn, getContext, getDeclaredOrigin, getStatusManager, setContext
-
-
-
-
Constructor Detail
-
BaseModelAction
public BaseModelAction()
-
-
Method Detail
-
begin
public void begin(SaxEventInterpretationContext saxEventInterpretationContext, String name, Attributes attributes) throws ActionException
Description copied from class:ActionCalled when the parser encounters an element matching aPattern.- Specified by:
beginin classAction- Throws:
ActionException
-
buildCurrentModel
protected abstract Model buildCurrentModel(SaxEventInterpretationContext interpretationContext, String name, Attributes attributes)
Builds and returns a Model instance for the current XML element being processed.This method is called during the begin phase of XML processing to create a Model object that represents the current element. The returned model will be configured with the element's tag name, line number, and will be pushed onto the model stack.
- Parameters:
interpretationContext- the context for interpreting SAX events, providing access to the model stack and other interpretation statename- the name of the XML element being processedattributes- the attributes of the XML element- Returns:
- a new Model instance representing the current XML element
-
validPreconditions
protected boolean validPreconditions(SaxEventInterpretationContext intercon, String name, Attributes attributes)
Validate preconditions of this action. By default, true is returned. Subclasses should override appropriately.- Parameters:
intercon-name-attributes-- Returns:
-
body
public void body(SaxEventInterpretationContext ec, String body) throws ActionException
Description copied from class:ActionCalled to pass the body (as text) contained within an element.- Overrides:
bodyin classAction- Throws:
ActionException
-
end
public void end(SaxEventInterpretationContext saxEventInterpretationContext, String name) throws ActionException
- Specified by:
endin classAction- Throws:
ActionException
-
-