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

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

Introduction

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

Prototype

public void setMethodName(String methodName) 

Source Link

Document

Set the name of the target method.

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(//  www .  j a v  a 2 s.c o  m
            new Object[] { map, "Alvin", "de", "Leon", new TestNestedBean(new TestNestedBean(null)) });

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