Class DateTokenConverter<E>
- java.lang.Object
-
- ch.qos.logback.core.pattern.Converter<E>
-
- ch.qos.logback.core.pattern.FormattingConverter<E>
-
- ch.qos.logback.core.pattern.DynamicConverter<E>
-
- ch.qos.logback.core.rolling.helper.DateTokenConverter<E>
-
- All Implemented Interfaces:
MonoTypedConverter
,ContextAware
,LifeCycle
@Deprecated(since="2022-01-27") public class DateTokenConverter<E> extends DynamicConverter<E> implements MonoTypedConverter
Deprecated.This internal logback API is not supported by AEM as a Cloud Service.Returns a date formatted by SimpleDateFormatter.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
AUXILIARY_TOKEN
Deprecated.static java.lang.String
CONVERTER_KEY
Deprecated.The conversion word/character with which this converter is registered.static java.lang.String
DEFAULT_DATE_PATTERN
Deprecated.
-
Constructor Summary
Constructors Constructor Description DateTokenConverter()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.String
convert(java.lang.Object o)
Deprecated.The convert method is responsible for extracting data from the event and storing it for later use by the write method.java.lang.String
convert(java.util.Date date)
Deprecated.java.lang.String
getDatePattern()
Deprecated.Return the date pattern.java.util.TimeZone
getTimeZone()
Deprecated.boolean
isApplicable(java.lang.Object o)
Deprecated.boolean
isPrimary()
Deprecated.void
start()
Deprecated.Components that depend on options passed during configuration can override this method in order to make appropriate use of those options.java.lang.String
toRegex()
Deprecated.-
Methods inherited from class ch.qos.logback.core.pattern.DynamicConverter
addError, addError, addInfo, addInfo, addStatus, addWarn, addWarn, getContext, getFirstOption, isStarted, setContext, setOptionList, stop
-
Methods inherited from class ch.qos.logback.core.pattern.FormattingConverter
getFormattingInfo, setFormattingInfo, write
-
-
-
-
Field Detail
-
CONVERTER_KEY
public static final java.lang.String CONVERTER_KEY
Deprecated.The conversion word/character with which this converter is registered.- See Also:
- Constant Field Values
-
AUXILIARY_TOKEN
public static final java.lang.String AUXILIARY_TOKEN
Deprecated.- See Also:
- Constant Field Values
-
DEFAULT_DATE_PATTERN
public static final java.lang.String DEFAULT_DATE_PATTERN
Deprecated.- See Also:
- Constant Field Values
-
-
Method Detail
-
start
public void start()
Deprecated.Description copied from class:DynamicConverter
Components that depend on options passed during configuration can override this method in order to make appropriate use of those options. For simpler components, the trivial implementation found in this abstract class will be sufficient.- Specified by:
start
in interfaceLifeCycle
- Overrides:
start
in classDynamicConverter<E>
-
convert
public java.lang.String convert(java.util.Date date)
Deprecated.
-
convert
public java.lang.String convert(java.lang.Object o)
Deprecated.Description copied from class:Converter
The convert method is responsible for extracting data from the event and storing it for later use by the write method.
-
getDatePattern
public java.lang.String getDatePattern()
Deprecated.Return the date pattern.
-
getTimeZone
public java.util.TimeZone getTimeZone()
Deprecated.
-
isApplicable
public boolean isApplicable(java.lang.Object o)
Deprecated.- Specified by:
isApplicable
in interfaceMonoTypedConverter
-
toRegex
public java.lang.String toRegex()
Deprecated.
-
isPrimary
public boolean isPrimary()
Deprecated.
-
-