KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > webservice > jbws71 > Hello_echoUserType_RequestStruct


1 // This class was generated by the JAXRPC SI, do not edit.
2
// Contents subject to change without notice.
3
// JAX-RPC Standard Implementation (1.1.2_01, build R40)
4

5 /*
6   * JBoss, Home of Professional Open Source
7   * Copyright 2005, JBoss Inc., and individual contributors as indicated
8   * by the @authors tag. See the copyright.txt in the distribution for a
9   * full listing of individual contributors.
10   *
11   * This is free software; you can redistribute it and/or modify it
12   * under the terms of the GNU Lesser General Public License as
13   * published by the Free Software Foundation; either version 2.1 of
14   * the License, or (at your option) any later version.
15   *
16   * This software is distributed in the hope that it will be useful,
17   * but WITHOUT ANY WARRANTY; without even the implied warranty of
18   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19   * Lesser General Public License for more details.
20   *
21   * You should have received a copy of the GNU Lesser General Public
22   * License along with this software; if not, write to the Free
23   * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
24   * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
25   */

26 package org.jboss.test.webservice.jbws71;
27
28
29 public class Hello_echoUserType_RequestStruct
30 {
31    protected org.jboss.test.webservice.jbws71.UserType UserType_1;
32
33    public Hello_echoUserType_RequestStruct()
34    {
35    }
36
37    public Hello_echoUserType_RequestStruct(org.jboss.test.webservice.jbws71.UserType UserType_1)
38    {
39       this.UserType_1 = UserType_1;
40    }
41
42    public org.jboss.test.webservice.jbws71.UserType getUserType_1()
43    {
44       return UserType_1;
45    }
46
47    public void setUserType_1(org.jboss.test.webservice.jbws71.UserType UserType_1)
48    {
49       this.UserType_1 = UserType_1;
50    }
51 }
52
Popular Tags