Example usage for Java javax.interceptor InvocationContext fields, constructors, methods, implement or subclass
The text is from its open source code.
Class> | getClass() Returns the runtime class of this Object . |
Map | getContextData() Enables an interceptor to retrieve or update the data associated with the invocation by another interceptor, business method, and/or webservices endpoint in the invocation chain. |
Method | getMethod() Returns the method of the target class for which the interceptor was invoked. |
Object[] | getParameters() Returns the parameter values that will be passed to the method or constructor of the target class. |
Object | getTarget() Returns the target instance. |
Object | proceed() Proceed to the next interceptor in the interceptor chain. |