You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by gd...@apache.org on 2001/08/17 20:51:57 UTC

cvs commit: xml-axis/java/samples/echo EchoService.java

gdaniels    01/08/17 11:51:57

  Modified:    java/samples/echo EchoService.java
  Log:
  Add echoMapArray() method
  
  Revision  Changes    Path
  1.6       +7 -0      xml-axis/java/samples/echo/EchoService.java
  
  Index: EchoService.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/samples/echo/EchoService.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- EchoService.java	2001/07/29 16:03:01	1.5
  +++ EchoService.java	2001/08/17 18:51:57	1.6
  @@ -169,4 +169,11 @@
       public HashMap echoMap(HashMap input) {
           return input;
       }
  +
  +    /**
  +     * This method accepts an array of Maps and echoes it back to the client.
  +     */
  +    public HashMap echoMapArray(HashMap [] input) {
  +        return input;
  +    }
   }