Class InvocationContextImpl
- java.lang.Object
-
- org.jboss.resteasy.microprofile.client.InvocationContextImpl
-
- All Implemented Interfaces:
javax.interceptor.InvocationContext
public class InvocationContextImpl extends Object implements javax.interceptor.InvocationContext
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
InvocationContextImpl.InterceptorInvocation
-
Constructor Summary
Constructors Constructor Description InvocationContextImpl(Object target, Method method, Object[] args, List<InvocationContextImpl.InterceptorInvocation> chain)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Constructor<?>
getConstructor()
Map<String,Object>
getContextData()
Method
getMethod()
Object[]
getParameters()
Object
getTarget()
Object
getTimer()
protected Object
interceptorChainCompleted()
protected Object
invokeNext()
Object
proceed()
void
setParameters(Object[] params)
-
-
-
Constructor Detail
-
InvocationContextImpl
public InvocationContextImpl(Object target, Method method, Object[] args, List<InvocationContextImpl.InterceptorInvocation> chain)
- Parameters:
target
-method
-args
-chain
-
-
-
Method Detail
-
interceptorChainCompleted
protected Object interceptorChainCompleted() throws Exception
- Throws:
Exception
-
proceed
public Object proceed() throws Exception
- Specified by:
proceed
in interfacejavax.interceptor.InvocationContext
- Throws:
Exception
-
getTarget
public Object getTarget()
- Specified by:
getTarget
in interfacejavax.interceptor.InvocationContext
-
getMethod
public Method getMethod()
- Specified by:
getMethod
in interfacejavax.interceptor.InvocationContext
-
getConstructor
public Constructor<?> getConstructor()
- Specified by:
getConstructor
in interfacejavax.interceptor.InvocationContext
-
getParameters
public Object[] getParameters() throws IllegalStateException
- Specified by:
getParameters
in interfacejavax.interceptor.InvocationContext
- Throws:
IllegalStateException
-
setParameters
public void setParameters(Object[] params) throws IllegalStateException, IllegalArgumentException
- Specified by:
setParameters
in interfacejavax.interceptor.InvocationContext
- Throws:
IllegalStateException
IllegalArgumentException
-
getContextData
public Map<String,Object> getContextData()
- Specified by:
getContextData
in interfacejavax.interceptor.InvocationContext
-
getTimer
public Object getTimer()
- Specified by:
getTimer
in interfacejavax.interceptor.InvocationContext
-
-