1 package org.codehaus.xfire.message.document;
2
3 /***
4 * A service with methods which are not easily distinguished
5 * in a document style service.
6 *
7 * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a>
8 */
9 public class DocumentService
10 {
11 public String getString1()
12 {
13 return "string";
14 }
15
16 public String getString2( String bleh )
17 {
18 return bleh;
19 }
20
21 public String getString3( String bleh, String bleh2 )
22 {
23 return bleh+bleh2;
24 }
25 }