Package org.seedstack.seed.el.spi
Interface ELHandler<T extends Annotation>
-
- Type Parameters:
T- the annotation from which this handler will receive evaluations.
public interface ELHandler<T extends Annotation>Implementing this interface allows to define an EL handler which will receive the results of the corresponding EL expression evaluation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandle(Object value)This method is called with the result of the EL evaluation.
-
-
-
Method Detail
-
handle
void handle(Object value)
This method is called with the result of the EL evaluation.- Parameters:
value- the result.
-
-