01: /**
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */package org.apache.openejb.jee.jba.cmp;
17:
18: import javax.xml.bind.annotation.XmlAccessType;
19: import javax.xml.bind.annotation.XmlAccessorType;
20: import javax.xml.bind.annotation.XmlRootElement;
21: import javax.xml.bind.annotation.XmlType;
22: import javax.xml.bind.annotation.XmlValue;
23:
24: /**
25: * <p>Java class for anonymous complex type.
26: *
27: * <p>The following schema fragment specifies the expected content contained within this class.
28: *
29: * <pre>
30: * <complexType>
31: * <complexContent>
32: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
33: * </restriction>
34: * </complexContent>
35: * </complexType>
36: * </pre>
37: *
38: *
39: */
40: @XmlAccessorType(XmlAccessType.FIELD)
41: @XmlType(name="",propOrder={"content"})
42: @XmlRootElement(name="alias-header-suffix")
43: public class AliasHeaderSuffix {
44:
45: @XmlValue
46: protected String content;
47:
48: /**
49: * Gets the value of the content property.
50: *
51: * @return
52: * possible object is
53: * {@link String }
54: *
55: */
56: public String getContent() {
57: return content;
58: }
59:
60: /**
61: * Sets the value of the content property.
62: *
63: * @param value
64: * allowed object is
65: * {@link String }
66: *
67: */
68: public void setContent(String value) {
69: this.content = value;
70: }
71:
72: }
|