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 echo complex type.
28: *
29: * <p>The following schema fragment specifies the expected content contained within this class.
30: *
31: * <pre>
32: * <complexType name="echo">
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: *
44: */
45: @XmlAccessorType(XmlAccessType.FIELD)
46: @XmlType(name="echo",propOrder={"text"})
47: public class Echo {
48:
49: @XmlElement(required=true,nillable=true)
50: protected String text;
51:
52: /**
53: * Gets the value of the text property.
54: *
55: * @return
56: * possible object is
57: * {@link String }
58: *
59: */
60: public String getText() {
61: return text;
62: }
63:
64: /**
65: * Sets the value of the text property.
66: *
67: * @param value
68: * allowed object is
69: * {@link String }
70: *
71: */
72: public void setText(String value) {
73: this.text = value;
74: }
75:
76: }
|