Package org.jboss.weld.injection
Class MethodInjectionPoint<T,X>
- java.lang.Object
-
- org.jboss.weld.injection.MethodInjectionPoint<T,X>
-
- Type Parameters:
T- the return type of the methodX- the type of the class that declared the method
- All Implemented Interfaces:
jakarta.enterprise.inject.spi.InjectionPoint,WeldInjectionPointAttributes<T,Method>
public abstract class MethodInjectionPoint<T,X> extends Object
Wraps a method whose parameters may be injected.- Author:
- Jozef Hartinger
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMethodInjectionPoint.MethodInjectionPointType
-
Field Summary
Fields Modifier and Type Field Description protected booleanhasTransientReferenceParameterprotected MethodInjectionPoint.MethodInjectionPointTypetype
-
Constructor Summary
Constructors Modifier Constructor Description protectedMethodInjectionPoint(MethodInjectionPoint.MethodInjectionPointType methodInjectionPointType, EnhancedAnnotatedCallable<T,X,Method> callable, jakarta.enterprise.inject.spi.Bean<?> declaringBean, Class<?> declaringComponentClass, InjectionPointFactory factory, BeanManagerImpl manager)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)abstract jakarta.enterprise.inject.spi.AnnotatedMethod<X>getAnnotated()jakarta.enterprise.inject.spi.Bean<?>getBean()Set<jakarta.enterprise.inject.spi.InjectionPoint>getInjectionPoints()Returns a set ofInjectionPointinstances of this constructor/method.MembergetMember()List<ParameterInjectionPoint<?,X>>getParameterInjectionPoints()<A extends Annotation>
AgetQualifier(Class<A> annotationType)Returns an instance of a given qualifier annotation or null if a given qualifier is not present on the injection point.Set<Annotation>getQualifiers()TypegetType()inthashCode()abstract Tinvoke(Object receiver, Object specialValue, BeanManagerImpl manager, jakarta.enterprise.context.spi.CreationalContext<?> ctx, Class<? extends RuntimeException> exceptionTypeToThrow)Invokes the method.booleanisDelegate()booleanisTransient()StringtoString()
-
-
-
Field Detail
-
type
protected MethodInjectionPoint.MethodInjectionPointType type
-
hasTransientReferenceParameter
protected final boolean hasTransientReferenceParameter
-
-
Constructor Detail
-
MethodInjectionPoint
protected MethodInjectionPoint(MethodInjectionPoint.MethodInjectionPointType methodInjectionPointType, EnhancedAnnotatedCallable<T,X,Method> callable, jakarta.enterprise.inject.spi.Bean<?> declaringBean, Class<?> declaringComponentClass, InjectionPointFactory factory, BeanManagerImpl manager)
-
-
Method Detail
-
invoke
public abstract T invoke(Object receiver, Object specialValue, BeanManagerImpl manager, jakarta.enterprise.context.spi.CreationalContext<?> ctx, Class<? extends RuntimeException> exceptionTypeToThrow)
Invokes the method.- Parameters:
receiver- the instance to receive the method invocation or null if this is a static methodspecialValue- value to be passed to the special parameter (observer or disposer parameter) or null if the method is not an observer or disposermanager- the bean managerctx- the creational contextexceptionTypeToThrow- exception type to be used to wrap potential exceptions within- Returns:
- the value returned from the method
-
getAnnotated
public abstract jakarta.enterprise.inject.spi.AnnotatedMethod<X> getAnnotated()
- Specified by:
getAnnotatedin interfacejakarta.enterprise.inject.spi.InjectionPoint
-
getType
public Type getType()
- Specified by:
getTypein interfacejakarta.enterprise.inject.spi.InjectionPoint
-
getQualifiers
public Set<Annotation> getQualifiers()
- Specified by:
getQualifiersin interfacejakarta.enterprise.inject.spi.InjectionPoint
-
getBean
public jakarta.enterprise.inject.spi.Bean<?> getBean()
- Specified by:
getBeanin interfacejakarta.enterprise.inject.spi.InjectionPoint
-
isDelegate
public boolean isDelegate()
- Specified by:
isDelegatein interfacejakarta.enterprise.inject.spi.InjectionPoint
-
isTransient
public boolean isTransient()
- Specified by:
isTransientin interfacejakarta.enterprise.inject.spi.InjectionPoint
-
getQualifier
public <A extends Annotation> A getQualifier(Class<A> annotationType)
Description copied from interface:WeldInjectionPointAttributesReturns an instance of a given qualifier annotation or null if a given qualifier is not present on the injection point.- Specified by:
getQualifierin interfaceWeldInjectionPointAttributes<T,X>
-
getMember
public Member getMember()
- Specified by:
getMemberin interfacejakarta.enterprise.inject.spi.InjectionPoint
-
getParameterInjectionPoints
public List<ParameterInjectionPoint<?,X>> getParameterInjectionPoints()
-
getInjectionPoints
public Set<jakarta.enterprise.inject.spi.InjectionPoint> getInjectionPoints()
Returns a set ofInjectionPointinstances of this constructor/method. This set never contains aSpecialParameterInjectionPointand is therefore suitable for use outside of Weld. The returned set is immutable.
-
-