
org.jboss.weld.invokable.InvokerBuilderImpl 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.spi.AnnotatedType;
import jakarta.enterprise.invoke.Invoker;
import org.jboss.weld.manager.BeanManagerImpl;
public class InvokerBuilderImpl extends AbstractInvokerBuilder> {
public InvokerBuilderImpl(AnnotatedType beanClass, TargetMethod method, BeanManagerImpl beanManager) {
super(beanClass, method, beanManager);
}
@Override
public Invoker build() {
return doBuild();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy