Class PluginElementVisitor
- java.lang.Object
-
- org.apache.logging.log4j.core.config.plugins.visitors.AbstractPluginVisitor<PluginElement>
-
- org.apache.logging.log4j.core.config.plugins.visitors.PluginElementVisitor
-
- All Implemented Interfaces:
PluginVisitor<PluginElement>
public class PluginElementVisitor extends AbstractPluginVisitor<PluginElement>
PluginVisitor implementation forPluginElement
. Supports arrays as well as singular values.
-
-
Field Summary
-
Fields inherited from class org.apache.logging.log4j.core.config.plugins.visitors.AbstractPluginVisitor
aliases, annotation, clazz, conversionType, LOGGER, member, substitutor
-
-
Constructor Summary
Constructors Constructor Description PluginElementVisitor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
visit(Configuration configuration, Node node, LogEvent event, StringBuilder log)
Visits a Node to obtain a value for constructing a Plugin object.-
Methods inherited from class org.apache.logging.log4j.core.config.plugins.visitors.AbstractPluginVisitor
convert, removeAttributeValue, setAliases, setAnnotation, setConversionType, setMember, setStrSubstitutor
-
-
-
-
Method Detail
-
visit
public Object visit(Configuration configuration, Node node, LogEvent event, StringBuilder log)
Description copied from interface:PluginVisitor
Visits a Node to obtain a value for constructing a Plugin object.- Parameters:
configuration
- the current Configuration.node
- the current Node corresponding to the Plugin object being created.event
- the current LogEvent that caused this Plugin object to be made (optional).log
- the StringBuilder being used to build a debug message.- Returns:
- the converted value to be used for Plugin creation.
-
-