01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one
03: * or more contributor license agreements. See the NOTICE file
04: * distributed with this work for additional information
05: * regarding copyright ownership. The ASF licenses this file
06: * to you under the Apache License, Version 2.0 (the
07: * "License"); you may not use this file except in compliance
08: * with the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing,
13: * software distributed under the License is distributed on an
14: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15: * KIND, either express or implied. See the License for the
16: * specific language governing permissions and limitations
17: * under the License.
18: */
19: package org.apache.axis2.jaxws.sample.wsgen.jaxws;
20:
21: // SERVER-SIDE CLASS
22:
23: import javax.xml.bind.annotation.XmlAccessType;
24: import javax.xml.bind.annotation.XmlAccessorType;
25: import javax.xml.bind.annotation.XmlElement;
26: import javax.xml.bind.annotation.XmlRootElement;
27: import javax.xml.bind.annotation.XmlType;
28:
29: @XmlRootElement(name="echoStringResponse",namespace="http://wsgen.sample.jaxws.axis2.apache.org")
30: @XmlAccessorType(XmlAccessType.FIELD)
31: @XmlType(name="echoStringResponse",namespace="http://wsgen.sample.jaxws.axis2.apache.org")
32: public class EchoStringResponse {
33:
34: @XmlElement(name="return",namespace="")
35: private String _return;
36:
37: /**
38: *
39: * @return
40: * returns String
41: */
42: public String get_return() {
43: return this ._return;
44: }
45:
46: /**
47: *
48: * @param _return
49: * the value for the _return property
50: */
51: public void set_return(String _return) {
52: this._return = _return;
53: }
54:
55: }
|