
org.jboss.weld.invokable.InvokerInfoBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weld-se-shaded Show documentation
Show all versions of weld-se-shaded Show documentation
This jar bundles all the bits of Weld and CDI required for Java SE.
The newest version!
package org.jboss.weld.invokable;
import jakarta.enterprise.inject.build.compatible.spi.InvokerInfo;
import jakarta.enterprise.inject.spi.AnnotatedType;
import jakarta.enterprise.inject.spi.BeanManager;
import org.jboss.weld.manager.BeanManagerImpl;
import org.jboss.weld.manager.api.WeldManager;
public class InvokerInfoBuilder extends AbstractInvokerBuilder {
public InvokerInfoBuilder(AnnotatedType beanClass, TargetMethod method, BeanManager beanManager) {
super(beanClass, method, (BeanManagerImpl) ((WeldManager) beanManager).unwrap());
}
@Override
public InvokerInfo build() {
return doBuild();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy