Example usage for org.springframework.remoting.support RemoteInvocation setArguments

List of usage examples for org.springframework.remoting.support RemoteInvocation setArguments

Introduction

In this page you can find the example usage for org.springframework.remoting.support RemoteInvocation setArguments.

Prototype

public void setArguments(Object[] arguments) 

Source Link

Document

Set the arguments for the target method call.

Usage

From source file:org.piraso.replacer.spring.remoting.XStreamTest.java

public void testXML() throws Exception {
    RemoteInvocation remote = new RemoteInvocation();

    Method method = String.class.getMethod("valueOf", Object.class);

    Map<String, String> map = new LinkedHashMap<String, String>();

    map.put("a", "b");
    map.put("c", "d");
    map.put("e", "f");

    remote.setMethodName(method.getName());
    remote.setParameterTypes(method.getParameterTypes());
    remote.setArguments(
            new Object[] { map, "Alvin", "de", "Leon", new TestNestedBean(new TestNestedBean(null)) });

    System.out.println(XStreamUtils.XSTREAM.toXML(remote));
}