public interface InjectionProvider
This interface defines an integration point for Java EE vendors. Each vendor will need to provide an implementation of this interface which will provide the JSF implementation the necessary hooks to perform resource injection.
The implementation of this interface *must* be thread-safe and must
provider either a no-arg constructor, or a constructor accepting
a ServletContext
instance.
Modifier and Type | Method and Description |
---|---|
void |
inject(Object managedBean)
The implementation of this method must perform the following
steps:
Inject the supported resources per the Servlet 2.5
specification into the provided object
|
void |
invokePostConstruct(Object managedBean)
The implemenation of this method must invoke any
method marked with the
@PostConstruct annotation
(per the Common Annotations Specification). |
void |
invokePreDestroy(Object managedBean)
The implemenation of this method must invoke any
method marked with the
@PreDestroy annotation
(per the Common Annotations Specification). |
void inject(Object managedBean) throws InjectionProviderException
The implementation of this method must perform the following steps:
This method must not invoke any methods
annotated with @PostConstruct
managedBean
- the target managed beanInjectionProviderException
- if an error occurs during
resource injectionvoid invokePreDestroy(Object managedBean) throws InjectionProviderException
The implemenation of this method must invoke any
method marked with the @PreDestroy
annotation
(per the Common Annotations Specification).
managedBean
- the target managed beanInjectionProviderException
- if an error occurs when invoking
the method annotated by the @PreDestroy
annotationvoid invokePostConstruct(Object managedBean) throws InjectionProviderException
The implemenation of this method must invoke any
method marked with the @PostConstruct
annotation
(per the Common Annotations Specification).
managedBean
- the target managed beanInjectionProviderException
- if an error occurs when invoking
the method annotated by the @PostConstruct
annotationComments to: faces-dev@eclipse.org.
Copyright © 2019 Eclipse Foundation. All rights reserved.
Use is subject to license terms.