
org.jboss.weld.bootstrap.event.WeldProcessManagedBean 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.bootstrap.event;
import jakarta.enterprise.inject.spi.AnnotatedMethod;
import jakarta.enterprise.inject.spi.ProcessManagedBean;
import jakarta.enterprise.invoke.Invoker;
import org.jboss.weld.invoke.WeldInvokerBuilder;
/**
* Represents an enhanced version of {@link ProcessManagedBean}.
*
* Allows access to {@link WeldInvokerBuilder} without the need to manually type cast.
*/
public interface WeldProcessManagedBean extends ProcessManagedBean {
@Override
WeldInvokerBuilder> createInvoker(AnnotatedMethod super X> method);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy