Interface FilterFactory<E extends ch.qos.logback.core.spi.DeferredProcessingAware>
-
- All Superinterfaces:
Discoverable
- All Known Implementing Classes:
UriFilterFactory
public interface FilterFactory<E extends ch.qos.logback.core.spi.DeferredProcessingAware> extends Discoverable
A service provider interface for creating LogbackFilterinstances. To create your own, just:- Create a class which implements
FilterFactory. - Annotate it with
@JsonTypeNameand give it a unique type name. - add a
META-INF/services/FilterFactoryfile with your implementation's full class name to the class path.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ch.qos.logback.core.filter.Filter<E>build()
-
-
-
Method Detail
-
build
ch.qos.logback.core.filter.Filter<E> build()
-
-