Package org.cache2k.core.api
Interface HealthInfoElement
-
public interface HealthInfoElementDescribes a single problem of a cache, for example a bad hash quality. A collection of these element comprise the complete health information.- Author:
- Jens Wilke
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InternalCachegetCache()Cache reporting the trouble.StringgetId()Compact unique id of the message.StringgetLevel()StringgetMessage()Text message describing the problem.
-
-
-
Field Detail
-
WARNING
static final String WARNING
- See Also:
- Constant Field Values
-
FAILURE
static final String FAILURE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getId
String getId()
Compact unique id of the message.
-
getMessage
String getMessage()
Text message describing the problem.
-
getLevel
String getLevel()
-
getCache
InternalCache getCache()
Cache reporting the trouble.
-
-