use of org.jboss.as.ee.component.ComponentTypeInjectionSource in project wildfly by wildfly.
the class ManagedBeanResourceReferenceProcessor method getResourceReferenceBindingSource.
@Override
public InjectionSource getResourceReferenceBindingSource() throws DeploymentUnitProcessingException {
ROOT_LOGGER.debugf("Processing @Resource of type: %s", this.managedBeanClassName);
// ComponentType binding source for managed beans
final InjectionSource bindingSource = new ComponentTypeInjectionSource(this.managedBeanClassName);
return bindingSource;
}
Aggregations