- All Known Implementing Classes:
- JulMdcProvider,- Log4jMdcProvider,- Slf4jMdcProvider
public interface MdcProvider
Provider which is used to propagate values passed from 
HelidonMdc to the
 corresponding logging framework MDC storage.- 
Method SummaryModifier and TypeMethodDescriptionvoidclear()Clear all of the MDC values from the specific logging framework MDC storage.Return value bound to the specific key.voidSet value to the specific logging framework MDC storage.voidRemove value bound to the key from the specific logging framework MDC storage.
- 
Method Details- 
putSet value to the specific logging framework MDC storage.- Parameters:
- key- entry key
- value- entry value
 
- 
removeRemove value bound to the key from the specific logging framework MDC storage.- Parameters:
- key- entry to remove
 
- 
clearvoid clear()Clear all of the MDC values from the specific logging framework MDC storage.
- 
getReturn value bound to the specific key.- Parameters:
- key- entry key
- Returns:
- value bound to the key
 
 
-