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({TYPE}) @Retention(RUNTIME)
27: * public @interface IdClass {
28: * Class value();
29: * }
30: *
31: *
32: *
33: * <p>Java class for id-class complex type.
34: *
35: * <p>The following schema fragment specifies the expected content contained within this class.
36: *
37: * <pre>
38: * <complexType name="id-class">
39: * <complexContent>
40: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
41: * <attribute name="class" use="required" 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="id-class")
51: public class IdClass {
52:
53: @XmlAttribute(name="class",required=true)
54: protected String clazz;
55:
56: public IdClass() {
57: }
58:
59: public IdClass(String clazz) {
60: this .clazz = clazz;
61: }
62:
63: /**
64: * Gets the value of the clazz property.
65: *
66: * @return
67: * possible object is
68: * {@link String }
69: *
70: */
71: public String getClazz() {
72: return clazz;
73: }
74:
75: /**
76: * Sets the value of the clazz property.
77: *
78: * @param value
79: * allowed object is
80: * {@link String }
81: *
82: */
83: public void setClazz(String value) {
84: this.clazz = value;
85: }
86:
87: }
|