Class InvokeInfo
- java.lang.Object
-
- io.smallrye.graphql.execution.event.InvokeInfo
-
public class InvokeInfo extends Object
Hold some information about the invocation- Author:
- Phillip Kruger (phillip.kruger@redhat.com)
-
-
Constructor Summary
Constructors Constructor Description InvokeInfo()InvokeInfo(Object operationInstance, Method operationMethod, Object[] operationTransformedArguments)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetOperationInstance()MethodgetOperationMethod()Object[]getOperationTransformedArguments()voidsetOperationInstance(Object operationInstance)voidsetOperationMethod(Method operationMethod)voidsetOperationTransformedArguments(Object[] operationTransformedArguments)
-
-
-
Method Detail
-
getOperationInstance
public Object getOperationInstance()
-
setOperationInstance
public void setOperationInstance(Object operationInstance)
-
getOperationMethod
public Method getOperationMethod()
-
setOperationMethod
public void setOperationMethod(Method operationMethod)
-
getOperationTransformedArguments
public Object[] getOperationTransformedArguments()
-
setOperationTransformedArguments
public void setOperationTransformedArguments(Object[] operationTransformedArguments)
-
-