Package org.jboss.weld.construction.api
Interface ConstructionHandle<T>
-
- Type Parameters:
T- type the component class
public interface ConstructionHandle<T>A handle for controllingAroundConstructCallbackinvocations.- Author:
- Jozef Hartinger
- See Also:
AroundConstructCallback
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tproceed(Object[] parameters, Map<String,Object> data)Proceed to the nextAroundConstructCallback.
-
-
-
Method Detail
-
proceed
T proceed(Object[] parameters, Map<String,Object> data)
Proceed to the nextAroundConstructCallback. If there is no next callback, the component is constructed and the component instance is returned from the method.- Parameters:
parameters- the parameters to be passed to the component constructordata- the context data associated with theAroundConstructCallbackinterception- Returns:
- instance the constructed instance
-
-