Interface LoggerInfoMetadata
-
- All Known Implementing Classes:
LoggerInfoMetadataService
@Contract public interface LoggerInfoMetadata
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription(String logger)Gets the description for the named logger.StringgetDescription(String logger, Locale locale)Get description for the named logger for given localeSet<String>getLoggerNames()Provides a set of logger names for which additional metadata is available.StringgetSubsystem(String logger)Gets the subsystem grouping to which a specified logger belongs.booleanisPublished(String logger)Gets whether the specified logger is to be included in the public doc.
-
-
-
Method Detail
-
getLoggerNames
Set<String> getLoggerNames()
Provides a set of logger names for which additional metadata is available.- Returns:
-
getDescription
String getDescription(String logger)
Gets the description for the named logger.- Returns:
-
getDescription
String getDescription(String logger, Locale locale)
Get description for the named logger for given locale- Parameters:
logger-locale-- Returns:
-
getSubsystem
String getSubsystem(String logger)
Gets the subsystem grouping to which a specified logger belongs.- Parameters:
logger-- Returns:
-
isPublished
boolean isPublished(String logger)
Gets whether the specified logger is to be included in the public doc.- Parameters:
logger-- Returns:
trueif the logger is to be documented otherwisefalsefor internal fine-grained loggers.
-
-