Interface ConfigurationNode
@ProviderType
public interface ConfigurationNode
A simplified view of a Log4j Core 2 configuration subtree.
It provides a subset of the information contained in the o.a.l.l.core.config.Node class.
- See Also:
-
- Configuration Syntax for an explanation of the used terms.
-
Method Summary
Modifier and TypeMethodDescriptionThe configuration attributesList<? extends ConfigurationNode>
The nested configuration elements.The name of the plugin configured by this node.
-
Method Details
-
getPluginName
String getPluginName()The name of the plugin configured by this node.- See Also:
-
- Log4j Core Plugins for more details
-
getAttributes
The configuration attributes -
getChildren
List<? extends ConfigurationNode> getChildren()The nested configuration elements.
-