Package ch.qos.logback.core.spi
Class ContextAwareImpl
- java.lang.Object
-
- ch.qos.logback.core.spi.ContextAwareImpl
-
- All Implemented Interfaces:
ContextAware
@Deprecated(since="2022-01-27") public class ContextAwareImpl extends Object implements ContextAware
Deprecated.This internal logback API is not supported by AEM as a Cloud Service.A helper class that implements ContextAware methods. Use this class to implement the ContextAware interface by composition.
-
-
Constructor Summary
Constructors Constructor Description ContextAwareImpl(Context context, Object origin)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidaddError(String msg)Deprecated.voidaddError(String msg, Throwable ex)Deprecated.voidaddInfo(String msg)Deprecated.voidaddInfo(String msg, Throwable ex)Deprecated.voidaddStatus(Status status)Deprecated.voidaddWarn(String msg)Deprecated.voidaddWarn(String msg, Throwable ex)Deprecated.ContextgetContext()Deprecated.StatusManagergetStatusManager()Deprecated.voidsetContext(Context context)Deprecated.
-
-
-
Method Detail
-
setContext
public void setContext(Context context)
Deprecated.- Specified by:
setContextin interfaceContextAware
-
getContext
public Context getContext()
Deprecated.- Specified by:
getContextin interfaceContextAware
-
getStatusManager
public StatusManager getStatusManager()
Deprecated.
-
addStatus
public void addStatus(Status status)
Deprecated.- Specified by:
addStatusin interfaceContextAware
-
addInfo
public void addInfo(String msg)
Deprecated.- Specified by:
addInfoin interfaceContextAware
-
addInfo
public void addInfo(String msg, Throwable ex)
Deprecated.- Specified by:
addInfoin interfaceContextAware
-
addWarn
public void addWarn(String msg)
Deprecated.- Specified by:
addWarnin interfaceContextAware
-
addWarn
public void addWarn(String msg, Throwable ex)
Deprecated.- Specified by:
addWarnin interfaceContextAware
-
addError
public void addError(String msg)
Deprecated.- Specified by:
addErrorin interfaceContextAware
-
addError
public void addError(String msg, Throwable ex)
Deprecated.- Specified by:
addErrorin interfaceContextAware
-
-