KickJava   Java API By Example, From Geeks To Geeks.

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


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_RequestStruct
12 {
13
14 protected java.lang.String JavaDoc string_1;
15
16 protected java.lang.String JavaDoc string_2;
17
18 protected org.jboss.test.webservice.jbws377.UserType userType_3;
19 public Hello_echoStrings_RequestStruct(){}
20
21 public Hello_echoStrings_RequestStruct(java.lang.String JavaDoc string_1, java.lang.String JavaDoc string_2, org.jboss.test.webservice.jbws377.UserType userType_3){
22 this.string_1=string_1;
23 this.string_2=string_2;
24 this.userType_3=userType_3;
25 }
26 public java.lang.String JavaDoc getString_1() { return string_1 ;}
27
28 public void setString_1(java.lang.String JavaDoc string_1){ this.string_1=string_1; }
29
30 public java.lang.String JavaDoc getString_2() { return string_2 ;}
31
32 public void setString_2(java.lang.String JavaDoc string_2){ this.string_2=string_2; }
33
34 public org.jboss.test.webservice.jbws377.UserType getUserType_3() { return userType_3 ;}
35
36 public void setUserType_3(org.jboss.test.webservice.jbws377.UserType userType_3){ this.userType_3=userType_3; }
37
38 }
39
Popular Tags