Package org.jboss.wsf.spi.invocation
Class Invocation
- java.lang.Object
-
- org.jboss.wsf.spi.invocation.Invocation
-
public class Invocation extends Object
A general endpoint invocation.- Since:
- 20-Apr-2007
- Author:
- Thomas.Diesler@jboss.com
-
-
Constructor Summary
Constructors Constructor Description Invocation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object[]getArgs()InvocationContextgetInvocationContext()MethodgetJavaMethod()ObjectgetReturnValue()voidsetArgs(Object[] args)voidsetInvocationContext(InvocationContext invocationContext)voidsetJavaMethod(Method javaMethod)voidsetReturnValue(Object returnValue)
-
-
-
Method Detail
-
getInvocationContext
public InvocationContext getInvocationContext()
-
setInvocationContext
public void setInvocationContext(InvocationContext invocationContext)
-
getJavaMethod
public Method getJavaMethod()
-
setJavaMethod
public void setJavaMethod(Method javaMethod)
-
getArgs
public Object[] getArgs()
-
setArgs
public void setArgs(Object[] args)
-
getReturnValue
public Object getReturnValue()
-
setReturnValue
public void setReturnValue(Object returnValue)
-
-