javax.interceptor
Interface InvocationContext


public interface InvocationContext

The InvocationContext object provides the metadata that is required for AroundInvoke interceptor methods.

Version:
$Revision: 57282 $
Author:
Kabir Khan

Method Summary
 Map<String,Object> getContextData()
          Returns the context data associated with this invocation or lifecycle callback.
 Method getMethod()
           
 Object[] getParameters()
           
 Object getTarget()
           
 Object proceed()
           
 void setParameters(Object[] params)
           
 

Method Detail

getTarget

Object getTarget()

getMethod

Method getMethod()

getParameters

Object[] getParameters()

setParameters

void setParameters(Object[] params)

getContextData

Map<String,Object> 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.


proceed

Object proceed()
               throws Exception
Throws:
Exception


Copyright © 2008 JBoss Inc.. All Rights Reserved.