KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > webservice > encstyle > SampleEndpoint_changeSalary_ResponseStruct


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_ResponseStruct
30 {
31    protected java.lang.String JavaDoc result;
32
33    public SampleEndpoint_changeSalary_ResponseStruct()
34    {
35    }
36
37    public SampleEndpoint_changeSalary_ResponseStruct(java.lang.String JavaDoc result)
38    {
39       this.result = result;
40    }
41
42    public java.lang.String JavaDoc getResult()
43    {
44       return result;
45    }
46
47    public void setResult(java.lang.String JavaDoc result)
48    {
49       this.result = result;
50    }
51 }
52
Popular Tags