A
- the annotation type that the factory supportsT
- the type of value being filteredpublic interface FilterFactory<A extends java.lang.annotation.Annotation,T>
Filter
for a
given Annotation
.
A FilterFactory
is normally a CDI bean that is also annotated with a
FilterBinding
annotation. Whenever an injection point annotated with
the corresponding FilterBinding
annotation is encountered the FilterFactory
bean's create(Annotation)
method is called to create an instance of a Filter
.
Modifier and Type | Method and Description |
---|---|
com.tangosol.util.Filter<T> |
create(A annotation)
Create a
Filter instance. |