1 //
2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.5-b02-fcs
3 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4 // Any modifications to this file will be lost upon recompilation of the source schema.
5 // Generated on: 2007.08.03 at 04:04:34 PM MSD
6 //
7
8
9 package org.riverock.dbrevision.annotation.schema.db;
10
11 import javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlAttribute;
14 import javax.xml.bind.annotation.XmlType;
15
16
17 /**
18 * <p>Java class for PrimaryKey complex type.
19 *
20 * <p>The following schema fragment specifies the expected content contained within this class.
21 *
22 * <pre>
23 * <complexType name="PrimaryKey">
24 * <complexContent>
25 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26 * <attribute name="type">
27 * <simpleType>
28 * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
29 * <enumeration value="number"/>
30 * <enumeration value="string"/>
31 * <enumeration value="date"/>
32 * </restriction>
33 * </simpleType>
34 * </attribute>
35 * </restriction>
36 * </complexContent>
37 * </complexType>
38 * </pre>
39 *
40 *
41 */
42 @XmlAccessorType(XmlAccessType.FIELD)
43 @XmlType(name = "PrimaryKey", namespace = "")
44 public class PrimaryKey {
45
46 @XmlAttribute
47 protected String type;
48
49 /**
50 * Gets the value of the type property.
51 *
52 * @return
53 * possible object is
54 * {@link String }
55 *
56 */
57 public String getType() {
58 return type;
59 }
60
61 /**
62 * Sets the value of the type property.
63 *
64 * @param value
65 * allowed object is
66 * {@link String }
67 *
68 */
69 public void setType(String value) {
70 this.type = value;
71 }
72
73 }