1 /** 2 * MapServiceSoapBindingImpl.java 3 * 4 * Implementation of the Map service used after we convert from Java to WSDL 5 * then back to Java again. Should be identical to MapService.java 6 */ 7 8 package test.wsdl.map; 9 10 import java.util.Map; 11 import java.util.HashMap; 12 13 public class MapServiceSoapBindingImpl implements test.wsdl.map.MapService{ 14 /** 15 * echo the input Map 16 */ 17 public HashMap echoMap(HashMap in) { 18 return in; 19 } 20 } 21