- java.lang.Object
-
- org.omnifaces.cdi.param.ParamProducer
-
@Dependent public class ParamProducer extends Object
Producer for a request or path parameter as defined by the@Paramannotation.- Since:
- 1.6
- Author:
- Arjan Tijms
-
-
Constructor Summary
Constructors Constructor Description ParamProducer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <V> ParamValue<V>produce(InjectionPoint injectionPoint)ReturnsParamValueassociated with param name derived from given injection point.
-
-
-
Method Detail
-
produce
@Produces public <V> ParamValue<V> produce(InjectionPoint injectionPoint)
ReturnsParamValueassociated with param name derived from given injection point.- Type Parameters:
V- The genericParamValuetype.- Parameters:
injectionPoint- Injection point to derive param name from.- Returns:
ParamValueassociated with param name derived from given injection point.
-
-