Package org.aopalliance.intercept
Interface ConstructorInvocation
- All Superinterfaces:
Invocation,Joinpoint
Description of an invocation to a constructor, given to an
interceptor upon constructor-call.
A constructor invocation is a joinpoint and can be intercepted
by a constructor interceptor.
- See Also:
-
Method Summary
Methods inherited from interface org.aopalliance.intercept.Invocation
getArgumentsMethods inherited from interface org.aopalliance.intercept.Joinpoint
getStaticPart, getThis, proceed
-
Method Details
-
getConstructor
Constructor<?> getConstructor()Get the constructor being called. This method is a friendly implementation of theJoinpoint.getStaticPart()method (same result).- Returns:
- the constructor being called
-