blob: 29790a88e4f661686855f90438ff858b21a6e545 [file] [log] [blame]
package org.apache.logging.log4j.plugins.name;
import org.apache.logging.log4j.plugins.PluginAttribute;
import org.apache.logging.log4j.util.Strings;
import java.util.Optional;
public class PluginAttributeNameProvider implements AnnotatedElementNameProvider<PluginAttribute> {
@Override
public Optional<String> getSpecifiedName(final PluginAttribute annotation) {
return Strings.trimToOptional(annotation.value());
}
}