-
Feature Request
-
Resolution: Done
-
Major
-
AS 5.0.0.Beta4
-
None
I want to move the EJBContainer.processMetadata InjectionHandler setup:
public void processMetadata()
{
// XML must be done first so that any annotation overrides are initialized
// todo injection handlers should be pluggable from XML
Collection<InjectionHandler<Environment>> handlers = new ArrayList<InjectionHandler<Environment>>();
handlers.add(new EJBHandler<Environment>());
handlers.add(new DependsHandler<Environment>());
handlers.add(new JndiInjectHandler<Environment>());
handlers.add(new PersistenceContextHandler<Environment>());
handlers.add(new PersistenceUnitHandler<Environment>());
handlers.add(new ResourceHandler<Environment>());
handlers.add(new WebServiceRefHandler<Environment>());
to the input Ejb3Deployment so that these can be overridden from the deployment environment.