KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > webservice > encstyle > SampleEndpoint_changeSalary_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, build R23)
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.encstyle;
27
28
29 public class SampleEndpoint_changeSalary_RequestStruct
30 {
31    protected org.jboss.test.webservice.encstyle.UserType UserType_1;
32    protected java.lang.Integer JavaDoc Integer_2;
33
34    public SampleEndpoint_changeSalary_RequestStruct()
35    {
36    }
37
38    public SampleEndpoint_changeSalary_RequestStruct(org.jboss.test.webservice.encstyle.UserType UserType_1, java.lang.Integer JavaDoc Integer_2)
39    {
40       this.UserType_1 = UserType_1;
41       this.Integer_2 = Integer_2;
42    }
43
44    public org.jboss.test.webservice.encstyle.UserType getUserType_1()
45    {
46       return UserType_1;
47    }
48
49    public void setUserType_1(org.jboss.test.webservice.encstyle.UserType UserType_1)
50    {
51       this.UserType_1 = UserType_1;
52    }
53
54    public java.lang.Integer JavaDoc getInteger_2()
55    {
56       return Integer_2;
57    }
58
59    public void setInteger_2(java.lang.Integer JavaDoc Integer_2)
60    {
61       this.Integer_2 = Integer_2;
62    }
63 }
64
Popular Tags