Package liquibase.logging.mdc
Class NoOpMdcManager
java.lang.Object
liquibase.logging.mdc.NoOpMdcManager
- All Implemented Interfaces:
MdcManager
,Plugin
Default MDC manager, which does nothing.
-
Field Summary
Fields inherited from interface liquibase.plugin.Plugin
PRIORITY_DATABASE, PRIORITY_DEFAULT, PRIORITY_NOT_APPLICABLE, PRIORITY_SPECIALIZED
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
Clear the MDC.getAll()
int
Puts a context value (thevalue
parameter) as identified with thekey
parameter into the MDC.Puts a context value (thevalue
parameter) as identified with thekey
parameter into the MDC.put
(String key, List<? extends CustomMdcObject> values) Puts a context value (thevalues
parameter) as identified with thekey
parameter into the MDC.Puts a context value (thevalues
parameter) as identified with thekey
parameter into the MDC.Puts a context value (thevalues
parameter) as identified with thekey
parameter into the MDC.put
(String key, CustomMdcObject customMdcObject) Puts a context value (thecustomMdcObject
parameter) as identified with thekey
parameter into the MDC.put
(String key, CustomMdcObject customMdcObject, boolean removeWhenScopeExits) Puts a context value (thecustomMdcObject
parameter) as identified with thekey
parameter into the MDC.void
Removes the context value identified by thekey
parameter.
-
Constructor Details
-
NoOpMdcManager
public NoOpMdcManager()
-
-
Method Details
-
put
Description copied from interface:MdcManager
Puts a context value (thevalue
parameter) as identified with thekey
parameter into the MDC. The caller is responsible for cleaning up this entry at an appropriate time.- Specified by:
put
in interfaceMdcManager
-
put
Description copied from interface:MdcManager
Puts a context value (thevalue
parameter) as identified with thekey
parameter into the MDC. The caller is responsible for cleaning up this entry at an appropriate time.- Specified by:
put
in interfaceMdcManager
removeWhenScopeExits
- if true, this key value pair will be automatically removed from the MDC when this scope exits. If there is not a demonstrable reason for setting this parameter to false then it should be set to true.
-
put
Description copied from interface:MdcManager
Puts a context value (thevalues
parameter) as identified with thekey
parameter into the MDC. The caller is responsible for cleaning up this entry at an appropriate time.- Specified by:
put
in interfaceMdcManager
-
put
Description copied from interface:MdcManager
Puts a context value (thevalues
parameter) as identified with thekey
parameter into the MDC. The caller is responsible for cleaning up this entry at an appropriate time.- Specified by:
put
in interfaceMdcManager
removeWhenScopeExits
- if true, this key value pair will be automatically removed from the MDC when this scope exits. If there is not a demonstrable reason for setting this parameter to false then it should be set to true.
-
put
Description copied from interface:MdcManager
Puts a context value (thevalues
parameter) as identified with thekey
parameter into the MDC. The caller is responsible for cleaning up this entry at an appropriate time.- Specified by:
put
in interfaceMdcManager
-
put
Description copied from interface:MdcManager
Puts a context value (thecustomMdcObject
parameter) as identified with thekey
parameter into the MDC. The caller is responsible for cleaning up this entry at an appropriate time.- Specified by:
put
in interfaceMdcManager
-
put
Description copied from interface:MdcManager
Puts a context value (thecustomMdcObject
parameter) as identified with thekey
parameter into the MDC. The caller is responsible for cleaning up this entry at an appropriate time.- Specified by:
put
in interfaceMdcManager
removeWhenScopeExits
- if true, this key value pair will be automatically removed from the MDC when this scope exits. If there is not a demonstrable reason for setting this parameter to false then it should be set to true.
-
remove
Description copied from interface:MdcManager
Removes the context value identified by thekey
parameter.- Specified by:
remove
in interfaceMdcManager
-
clear
public void clear()Description copied from interface:MdcManager
Clear the MDC.- Specified by:
clear
in interfaceMdcManager
-
getPriority
public int getPriority()- Specified by:
getPriority
in interfaceMdcManager
-
getAll
- Specified by:
getAll
in interfaceMdcManager
-