KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > webservice > jbws377 > Hello_echoStrings_ResponseStruct


1 /*
2  * JBoss, the OpenSource EJB server
3  * Distributable under LGPL license. See terms of license at gnu.org.
4  */

5 //Auto Generated by jbossws - Please do not edit!!!
6

7
8 package org.jboss.test.webservice.jbws377;
9
10
11 public class Hello_echoStrings_ResponseStruct
12 {
13
14 protected java.lang.String JavaDoc result;
15 public Hello_echoStrings_ResponseStruct(){}
16
17 public Hello_echoStrings_ResponseStruct(java.lang.String JavaDoc result){
18 this.result=result;
19 }
20 public java.lang.String JavaDoc getResult() { return result ;}
21
22 public void setResult(java.lang.String JavaDoc result){ this.result=result; }
23
24 }
25
Popular Tags