|
| 1 | +/** |
| 2 | + * The contents of this file are subject to the license and copyright |
| 3 | + * detailed in the LICENSE file at the root of the source |
| 4 | + * tree and available online at |
| 5 | + * |
| 6 | + * https://github.com/keeps/db-preservation-toolkit |
| 7 | + */ |
| 8 | +// |
| 9 | +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 |
| 10 | +// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> |
| 11 | +// Any modifications to this file will be lost upon recompilation of the source schema. |
| 12 | +// Generated on: 2016.09.21 at 01:40:35 PM CEST |
| 13 | +// |
| 14 | + |
| 15 | +package dk.sa.xmlns.diark._1_0_ext.docindex; |
| 16 | + |
| 17 | +import java.math.BigInteger; |
| 18 | + |
| 19 | +import jakarta.xml.bind.JAXBElement; |
| 20 | +import jakarta.xml.bind.annotation.XmlAccessType; |
| 21 | +import jakarta.xml.bind.annotation.XmlAccessorType; |
| 22 | +import jakarta.xml.bind.annotation.XmlElement; |
| 23 | +import jakarta.xml.bind.annotation.XmlElementRef; |
| 24 | +import jakarta.xml.bind.annotation.XmlSchemaType; |
| 25 | +import jakarta.xml.bind.annotation.XmlType; |
| 26 | +import jakarta.xml.bind.annotation.adapters.NormalizedStringAdapter; |
| 27 | +import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter; |
| 28 | + |
| 29 | +/** |
| 30 | + * A type for a document |
| 31 | + * |
| 32 | + * <p> |
| 33 | + * Java class for documentType complex type. |
| 34 | + * |
| 35 | + * <p> |
| 36 | + * The following schema fragment specifies the expected content contained within |
| 37 | + * this class. |
| 38 | + * |
| 39 | + * <pre> |
| 40 | + * <complexType name="documentType"> |
| 41 | + * <complexContent> |
| 42 | + * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
| 43 | + * <sequence> |
| 44 | + * <element name="dID" type="{http://www.sa.dk/xmlns/diark/1.0}documentIDType"/> |
| 45 | + * <element name="pID" type="{http://www.sa.dk/xmlns/diark/1.0}documentIDType" minOccurs="0"/> |
| 46 | + * <element name="mID" type="{http://www.sa.dk/xmlns/diark/1.0}mediaIDType"/> |
| 47 | + * <element name="dCf" type="{http://www.sa.dk/xmlns/diark/1.0}dCfType"/> |
| 48 | + * <element name="oFn" type="{http://www.w3.org/2001/XMLSchema}normalizedString"/> |
| 49 | + * <element name="aFt" type="{http://www.sa.dk/xmlns/diark/1.0}archivalFileType"/> |
| 50 | + * <element name="gmlXsd" type="{http://www.sa.dk/xmlns/diark/1.0}gmlXsdType" minOccurs="0"/> |
| 51 | + * </sequence> |
| 52 | + * </restriction> |
| 53 | + * </complexContent> |
| 54 | + * </complexType> |
| 55 | + * </pre> |
| 56 | + * |
| 57 | + * |
| 58 | + */ |
| 59 | +@XmlAccessorType(XmlAccessType.FIELD) |
| 60 | +@XmlType(name = "documentType", propOrder = {"did", "pid", "mid", "dCf", "oFn", "aFt", "gmlXsd"}) |
| 61 | +public class DocumentType { |
| 62 | + |
| 63 | + @XmlElement(name = "dID", required = true) |
| 64 | + @XmlSchemaType(name = "positiveInteger") |
| 65 | + protected BigInteger did; |
| 66 | + @XmlElementRef(name = "pID", namespace = "http://www.sa.dk/xmlns/diark/1.0", type = JAXBElement.class, required = false) |
| 67 | + protected JAXBElement<BigInteger> pid; |
| 68 | + @XmlElement(name = "mID", required = true) |
| 69 | + @XmlSchemaType(name = "positiveInteger") |
| 70 | + protected BigInteger mid; |
| 71 | + @XmlElement(required = true) |
| 72 | + protected String dCf; |
| 73 | + @XmlElement(required = true) |
| 74 | + @XmlJavaTypeAdapter(NormalizedStringAdapter.class) |
| 75 | + @XmlSchemaType(name = "normalizedString") |
| 76 | + protected String oFn; |
| 77 | + @XmlElement(required = true) |
| 78 | + protected String aFt; |
| 79 | + protected String gmlXsd; |
| 80 | + |
| 81 | + /** |
| 82 | + * Gets the value of the did property. |
| 83 | + * |
| 84 | + * @return possible object is {@link BigInteger } |
| 85 | + * |
| 86 | + */ |
| 87 | + public BigInteger getDID() { |
| 88 | + return did; |
| 89 | + } |
| 90 | + |
| 91 | + /** |
| 92 | + * Sets the value of the did property. |
| 93 | + * |
| 94 | + * @param value |
| 95 | + * allowed object is {@link BigInteger } |
| 96 | + * |
| 97 | + */ |
| 98 | + public void setDID(BigInteger value) { |
| 99 | + this.did = value; |
| 100 | + } |
| 101 | + |
| 102 | + /** |
| 103 | + * Gets the value of the pid property. |
| 104 | + * |
| 105 | + * @return possible object is {@link JAXBElement }{@code <}{@link BigInteger } |
| 106 | + * {@code >} |
| 107 | + * |
| 108 | + */ |
| 109 | + public JAXBElement<BigInteger> getPID() { |
| 110 | + return pid; |
| 111 | + } |
| 112 | + |
| 113 | + /** |
| 114 | + * Sets the value of the pid property. |
| 115 | + * |
| 116 | + * @param value |
| 117 | + * allowed object is {@link JAXBElement }{@code <}{@link BigInteger } |
| 118 | + * {@code >} |
| 119 | + * |
| 120 | + */ |
| 121 | + public void setPID(JAXBElement<BigInteger> value) { |
| 122 | + this.pid = value; |
| 123 | + } |
| 124 | + |
| 125 | + /** |
| 126 | + * Gets the value of the mid property. |
| 127 | + * |
| 128 | + * @return possible object is {@link BigInteger } |
| 129 | + * |
| 130 | + */ |
| 131 | + public BigInteger getMID() { |
| 132 | + return mid; |
| 133 | + } |
| 134 | + |
| 135 | + /** |
| 136 | + * Sets the value of the mid property. |
| 137 | + * |
| 138 | + * @param value |
| 139 | + * allowed object is {@link BigInteger } |
| 140 | + * |
| 141 | + */ |
| 142 | + public void setMID(BigInteger value) { |
| 143 | + this.mid = value; |
| 144 | + } |
| 145 | + |
| 146 | + /** |
| 147 | + * Gets the value of the dCf property. |
| 148 | + * |
| 149 | + * @return possible object is {@link String } |
| 150 | + * |
| 151 | + */ |
| 152 | + public String getDCf() { |
| 153 | + return dCf; |
| 154 | + } |
| 155 | + |
| 156 | + /** |
| 157 | + * Sets the value of the dCf property. |
| 158 | + * |
| 159 | + * @param value |
| 160 | + * allowed object is {@link String } |
| 161 | + * |
| 162 | + */ |
| 163 | + public void setDCf(String value) { |
| 164 | + this.dCf = value; |
| 165 | + } |
| 166 | + |
| 167 | + /** |
| 168 | + * Gets the value of the oFn property. |
| 169 | + * |
| 170 | + * @return possible object is {@link String } |
| 171 | + * |
| 172 | + */ |
| 173 | + public String getOFn() { |
| 174 | + return oFn; |
| 175 | + } |
| 176 | + |
| 177 | + /** |
| 178 | + * Sets the value of the oFn property. |
| 179 | + * |
| 180 | + * @param value |
| 181 | + * allowed object is {@link String } |
| 182 | + * |
| 183 | + */ |
| 184 | + public void setOFn(String value) { |
| 185 | + this.oFn = value; |
| 186 | + } |
| 187 | + |
| 188 | + /** |
| 189 | + * Gets the value of the aFt property. |
| 190 | + * |
| 191 | + * @return possible object is {@link String } |
| 192 | + * |
| 193 | + */ |
| 194 | + public String getAFt() { |
| 195 | + return aFt; |
| 196 | + } |
| 197 | + |
| 198 | + /** |
| 199 | + * Sets the value of the aFt property. |
| 200 | + * |
| 201 | + * @param value |
| 202 | + * allowed object is {@link String } |
| 203 | + * |
| 204 | + */ |
| 205 | + public void setAFt(String value) { |
| 206 | + this.aFt = value; |
| 207 | + } |
| 208 | + |
| 209 | + /** |
| 210 | + * Gets the value of the gmlXsd property. |
| 211 | + * |
| 212 | + * @return possible object is {@link String } |
| 213 | + * |
| 214 | + */ |
| 215 | + public String getGmlXsd() { |
| 216 | + return gmlXsd; |
| 217 | + } |
| 218 | + |
| 219 | + /** |
| 220 | + * Sets the value of the gmlXsd property. |
| 221 | + * |
| 222 | + * @param value |
| 223 | + * allowed object is {@link String } |
| 224 | + * |
| 225 | + */ |
| 226 | + public void setGmlXsd(String value) { |
| 227 | + this.gmlXsd = value; |
| 228 | + } |
| 229 | + |
| 230 | +} |
0 commit comments