Class TimestampAction
java.lang.Object
ch.qos.logback.core.spi.ContextAwareBase
ch.qos.logback.core.joran.action.Action
ch.qos.logback.core.joran.action.BaseModelAction
ch.qos.logback.core.joran.action.TimestampAction
- All Implemented Interfaces:
ContextAware
Given a key and a date-and-time pattern, puts a property to the context, with
the specified key and value equal to the current time in the format
corresponding to the specified date-and-time pattern.
- Author:
- Ceki Gülcü
-
Field Summary
FieldsFields inherited from class Action
ACTION_CLASS_ATTRIBUTE, CLASS_ATTRIBUTE, FILE_ATTRIBUTE, KEY_ATTRIBUTE, NAME_ATTRIBUTE, PATTERN_ATTRIBUTE, SCOPE_ATTRIBUTE, VALUE_ATTRIBUTEFields inherited from class ContextAwareBase
context -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected ModelbuildCurrentModel(SaxEventInterpretationContext interpretationContext, String name, Attributes attributes) Builds and returns a Model instance for the current XML element being processed.protected booleanvalidPreconditions(SaxEventInterpretationContext interpretationContext, String name, Attributes attributes) Validate preconditions of this action.Methods inherited from class BaseModelAction
begin, body, endMethods inherited from class Action
atLine, getColumnNumber, getLineColStr, getLineNumber, nearLine, toStringMethods inherited from class ContextAwareBase
addError, addError, addInfo, addInfo, addStatus, addWarn, addWarn, getContext, getDeclaredOrigin, getStatusManager, setContext
-
Field Details
-
DATE_PATTERN_ATTRIBUTE
- See Also:
-
TIME_REFERENCE_ATTRIBUTE
- See Also:
-
-
Constructor Details
-
TimestampAction
public TimestampAction()
-
-
Method Details
-
validPreconditions
protected boolean validPreconditions(SaxEventInterpretationContext interpretationContext, String name, Attributes attributes) Description copied from class:BaseModelActionValidate preconditions of this action. By default, true is returned. Subclasses should override appropriately.- Overrides:
validPreconditionsin classBaseModelAction- Parameters:
interpretationContext-name-attributes-- Returns:
-
buildCurrentModel
protected Model buildCurrentModel(SaxEventInterpretationContext interpretationContext, String name, Attributes attributes) Description copied from class:BaseModelActionBuilds 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.
- Specified by:
buildCurrentModelin classBaseModelAction- 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
-