Java org.springframework.remoting.support RemoteInvocation fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.remoting.support RemoteInvocation fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.remoting.support RemoteInvocation.

The text is from its open source code.

Subclass

org.springframework.remoting.support.RemoteInvocation has subclasses.
Click this link to see all its subclasses.

Constructor

RemoteInvocation(String methodName, Class[] parameterTypes, Object[] arguments)
Create a new RemoteInvocation for the given parameters.
RemoteInvocation(MethodInvocation methodInvocation)
Create a new RemoteInvocation for the given AOP method invocation.
RemoteInvocation()
Create a new RemoteInvocation for JavaBean-style deserialization (e.g.

Method

voidaddAttribute(String key, Serializable value)
Add an additional invocation attribute.
Object[]getArguments()
Return the arguments for the target method call.
SerializablegetAttribute(String key)
Retrieve the attribute for the given key, if any.
MapgetAttributes()
Return the attributes Map.
StringgetMethodName()
Return the name of the target method.
Class[]getParameterTypes()
Return the parameter types of the target method.
Objectinvoke(Object targetObject)
Perform this invocation on the given target object.
voidsetArguments(Object[] arguments)
Set the arguments for the target method call.
voidsetMethodName(String methodName)
Set the name of the target method.
voidsetParameterTypes(Class[] parameterTypes)
Set the parameter types of the target method.