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.ws.axis2.tests;
20:
21: import javax.xml.bind.annotation.XmlAccessType;
22: import javax.xml.bind.annotation.XmlAccessorType;
23: import javax.xml.bind.annotation.XmlElement;
24: import javax.xml.bind.annotation.XmlType;
25:
26: /**
27: * <p>Java class for echoResponse complex type.
28: * <p/>
29: * <p>The following schema fragment specifies the expected content contained within this class.
30: * <p/>
31: * <pre>
32: * <complexType name="echoResponse">
33: * <complexContent>
34: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
35: * <sequence>
36: * <element name="text" type="{http://www.w3.org/2001/XMLSchema}string"/>
37: * </sequence>
38: * </restriction>
39: * </complexContent>
40: * </complexType>
41: * </pre>
42: */
43: @XmlAccessorType(XmlAccessType.FIELD)
44: @XmlType(name="echoResponse",propOrder={"text"})
45: public class EchoResponse {
46:
47: @XmlElement(required=true,nillable=true)
48: protected String text;
49:
50: /**
51: * Gets the value of the text property.
52: *
53: * @return possible object is {@link String }
54: */
55: public String getText() {
56: return text;
57: }
58:
59: /**
60: * Sets the value of the text property.
61: *
62: * @param value allowed object is {@link String }
63: */
64: public void setText(String value) {
65: this.text = value;
66: }
67:
68: }
|