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.jpa;
17:
18: import javax.xml.bind.annotation.XmlAccessType;
19: import javax.xml.bind.annotation.XmlAccessorType;
20: import javax.xml.bind.annotation.XmlAttribute;
21: import javax.xml.bind.annotation.XmlType;
22:
23: /**
24: *
25: *
26: * @Target({METHOD, FIELD}) @Retention(RUNTIME)
27: * public @interface MapKey {
28: * String name() default "";
29: * }
30: *
31: *
32: *
33: * <p>Java class for map-key complex type.
34: *
35: * <p>The following schema fragment specifies the expected content contained within this class.
36: *
37: * <pre>
38: * <complexType name="map-key">
39: * <complexContent>
40: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
41: * <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
42: * </restriction>
43: * </complexContent>
44: * </complexType>
45: * </pre>
46: *
47: *
48: */
49: @XmlAccessorType(XmlAccessType.FIELD)
50: @XmlType(name="map-key")
51: public class MapKey {
52:
53: @XmlAttribute
54: protected String name;
55:
56: /**
57: * Gets the value of the name property.
58: *
59: * @return
60: * possible object is
61: * {@link String }
62: *
63: */
64: public String getName() {
65: return name;
66: }
67:
68: /**
69: * Sets the value of the name property.
70: *
71: * @param value
72: * allowed object is
73: * {@link String }
74: *
75: */
76: public void setName(String value) {
77: this.name = value;
78: }
79:
80: }
|