Package ch.qos.logback.classic.sift
Class JNDIBasedContextDiscriminator
- java.lang.Object
-
- ch.qos.logback.core.spi.ContextAwareBase
-
- ch.qos.logback.core.sift.AbstractDiscriminator<ILoggingEvent>
-
- ch.qos.logback.classic.sift.JNDIBasedContextDiscriminator
-
- All Implemented Interfaces:
Discriminator<ILoggingEvent>
,ContextAware
,LifeCycle
@Deprecated(since="2022-01-27") public class JNDIBasedContextDiscriminator extends AbstractDiscriminator<ILoggingEvent>
Deprecated.This internal logback API is not supported by AEM as a Cloud Service.This discriminator returns the value context as determined by JNDI. If the said value is null, then a default value is returned.Both Key and the DefaultValue are user specified properties.
-
-
Constructor Summary
Constructors Constructor Description JNDIBasedContextDiscriminator()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.String
getDefaultValue()
Deprecated.java.lang.String
getDiscriminatingValue(ILoggingEvent event)
Deprecated.Return the name of the current context name as found in the logging event.java.lang.String
getKey()
Deprecated.The key or variable name under which the discriminating value should be exported into the host environment.void
setDefaultValue(java.lang.String defaultValue)
Deprecated.The default context name in case the context name is not set for the current logging event.void
setKey(java.lang.String key)
Deprecated.-
Methods inherited from class ch.qos.logback.core.sift.AbstractDiscriminator
isStarted, start, stop
-
Methods inherited from class ch.qos.logback.core.spi.ContextAwareBase
addError, addError, addInfo, addInfo, addStatus, addWarn, addWarn, getContext, getStatusManager, setContext
-
-
-
-
Method Detail
-
getDiscriminatingValue
public java.lang.String getDiscriminatingValue(ILoggingEvent event)
Deprecated.Return the name of the current context name as found in the logging event.- Returns:
-
getKey
public java.lang.String getKey()
Deprecated.Description copied from interface:Discriminator
The key or variable name under which the discriminating value should be exported into the host environment.- Returns:
-
setKey
public void setKey(java.lang.String key)
Deprecated.
-
getDefaultValue
public java.lang.String getDefaultValue()
Deprecated.- Returns:
- See Also:
setDefaultValue(String)
-
setDefaultValue
public void setDefaultValue(java.lang.String defaultValue)
Deprecated.The default context name in case the context name is not set for the current logging event.- Parameters:
defaultValue
-
-
-