liquibase.logging.mdc.MdcManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-core Show documentation
Show all versions of liquibase-core Show documentation
Liquibase is a tool for managing and executing database changes.
package liquibase.logging.mdc;
import liquibase.Beta;
import liquibase.plugin.Plugin;
import java.util.Map;
@Beta
public interface MdcManager extends Plugin {
/**
* Puts a context value (the value
parameter) as identified with the key
parameter into
* the MDC. The caller is responsible for cleaning up this entry at an appropriate time.
*/
@Beta
MdcObject put(String key, String value);
/**
* Puts a context value (the values
parameter) as identified with the key
parameter into
* the MDC. The caller is responsible for cleaning up this entry at an appropriate time.
*/
@Beta
MdcObject put(String key, Map values);
/**
* Puts a context value (the customMdcObject
parameter) as identified with the key
parameter into
* the MDC. The caller is responsible for cleaning up this entry at an appropriate time.
*/
@Beta
MdcObject put(String key, CustomMdcObject customMdcObject);
/**
* Removes the context value identified by the key
parameter.
*/
@Beta
void remove(String key);
/**
* Clear the MDC.
*/
@Beta
void clear();
@Beta
int getPriority();
@Beta
Map getAll();
}