org.jboss.weld.invoke.WeldInvokerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weld-api Show documentation
Show all versions of weld-api Show documentation
Weld specifc extensions to the CDI API
The newest version!
package org.jboss.weld.invoke;
import jakarta.enterprise.inject.build.compatible.spi.BeanInfo;
import jakarta.enterprise.inject.build.compatible.spi.InvokerFactory;
import jakarta.enterprise.inject.build.compatible.spi.InvokerInfo;
import jakarta.enterprise.lang.model.declarations.MethodInfo;
/**
* Weld specific version of {@link InvokerFactory}.
* Allows access to {@link WeldInvokerBuilder} without the need to manually type cast.
*/
public interface WeldInvokerFactory extends InvokerFactory {
@Override
WeldInvokerBuilder createInvoker(BeanInfo bean, MethodInfo method);
}