Class DelegatingProducer<T>
- java.lang.Object
- 
- io.helidon.integrations.cdi.delegates.DelegatingProducer<T>
 
- 
- Type Parameters:
- T- the type of produced object
 - All Implemented Interfaces:
- Producer<T>
 - Direct Known Subclasses:
- DelegatingInjectionTarget
 
 public class DelegatingProducer<T> extends Object implements Producer<T> 
- 
- 
Constructor SummaryConstructors Constructor Description DelegatingProducer(Producer<T> delegate)Creates a newDelegatingProducer.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddispose(T instance)Set<InjectionPoint>getInjectionPoints()Tproduce(CreationalContext<T> cc)
 
- 
- 
- 
Constructor Detail- 
DelegatingProducerpublic DelegatingProducer(Producer<T> delegate) Creates a newDelegatingProducer.- Parameters:
- delegate- the- Producerto which all operations will be forwarded; must not be- null
- Throws:
- NullPointerException- if- delegateis- null
 
 
- 
 - 
Method Detail- 
getInjectionPointspublic Set<InjectionPoint> getInjectionPoints() - Specified by:
- getInjectionPointsin interface- Producer<T>
 
 
- 
 
-