| Method and Description |
|---|
| org.jboss.weld.injection.spi.EjbInjectionServices.resolveEjb(InjectionPoint)
Instead of calling this method at runtime, Weld should register
every EJB injection point at bootstrap using
EjbInjectionServices.registerEjbInjectionPoint(InjectionPoint)
and use the returned factory for producing injectable instances at runtime. |
| org.jboss.weld.injection.spi.JpaInjectionServices.resolvePersistenceContext(InjectionPoint)
Instead of calling this method at runtime, Weld should register
every persistence context injection point at bootstrap using
JpaInjectionServices.registerPersistenceContextInjectionPoint(InjectionPoint)
and use the returned factory for producing injectable instances at runtime. |
| org.jboss.weld.injection.spi.JpaInjectionServices.resolvePersistenceUnit(InjectionPoint)
Instead of calling this method at runtime, Weld should register
every persistence unit injection point at bootstrap using
JpaInjectionServices.registerPersistenceUnitInjectionPoint(InjectionPoint)
and use the returned factory for producing injectable instances at runtime. |
| org.jboss.weld.injection.spi.ResourceInjectionServices.resolveResource(InjectionPoint)
Instead of calling this method at runtime, Weld should register
every resource injection point at bootstrap using
ResourceInjectionServices.registerResourceInjectionPoint(InjectionPoint)
and use the returned factory for producing injectable instances at runtime. |
| org.jboss.weld.injection.spi.ResourceInjectionServices.resolveResource(String, String)
Instead of calling this method at runtime, Weld should register
every resource injection point at bootstrap using
ResourceInjectionServices.registerResourceInjectionPoint(String, String)
and use the returned factory for producing injectable instances at runtime. |
Copyright © 2008-2013 Seam Framework. All Rights Reserved.