1   package org.codehaus.xfire.services;
2   
3   /***
4    * Has a static method which shouldn't be registered with the service.
5    * 
6    * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a>
7    */
8   public class StaticEcho
9   {
10      
11      public static String echoStatic( String echo )
12      {
13          return echo;
14      }
15      
16      public String echo( String echo )
17      {
18          return echo;
19      }
20  }