Methods Summary |
---|
public java.util.Map | getContextData()Returns the context data associated with this invocation or
lifecycle callback. If there is no context data, an
empty Map object will be returned.
|
public java.lang.reflect.Method | getMethod()Returns the method of the bean class for which the interceptor
was invoked. For AroundInvoke methods, this is the business
method on the bean class. For lifecycle callback methods,
returns null.
|
public java.lang.Object[] | getParameters()Returns the parameters that will be used to invoke
the business method. If setParameters has been called,
getParameters() returns the values to which the parameters
have been set.
|
public java.lang.Object | getTarget()Returns the target instance.
|
public java.lang.Object | proceed()Proceed to the next entry in the interceptor chain.
The proceed method returns the result of the next
method invoked. If the method returns void, proceed
returns null.
|
public void | setParameters(java.lang.Object[] params)Sets the parameters that will be used to invoke the
business method.
|