1 //
2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
3 // See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a>
4 // Any modifications to this file will be lost upon recompilation of the source schema.
5 // Generated on: 2019.08.22 at 12:16:01 PM UTC
6 //
7
8
9 package ejava.projects.eleague.dto;
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.XmlID;
15 import javax.xml.bind.annotation.XmlSchemaType;
16 import javax.xml.bind.annotation.XmlSeeAlso;
17 import javax.xml.bind.annotation.XmlType;
18 import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
19 import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
20
21
22 /**
23 * <p>Java class for ReferencedType complex type.
24 *
25 * <p>The following schema fragment specifies the expected content contained within this class.
26 *
27 * <pre>
28 * <complexType name="ReferencedType">
29 * <complexContent>
30 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
31 * <attribute name="refid" type="{http://www.w3.org/2001/XMLSchema}ID" />
32 * </restriction>
33 * </complexContent>
34 * </complexType>
35 * </pre>
36 *
37 *
38 */
39 @XmlAccessorType(XmlAccessType.FIELD)
40 @XmlType(name = "ReferencedType")
41 @XmlSeeAlso({
42 Season.class,
43 Division.class,
44 TeamSeason.class,
45 Contest.class,
46 Team.class,
47 Venue.class,
48 Club.class,
49 Contact.class
50 })
51 public class ReferencedType {
52
53 @XmlAttribute(name = "refid")
54 @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
55 @XmlID
56 @XmlSchemaType(name = "ID")
57 protected String refid;
58
59 /**
60 * Default no-arg constructor
61 *
62 */
63 public ReferencedType() {
64 super();
65 }
66
67 /**
68 * Fully-initialising value constructor
69 *
70 */
71 public ReferencedType(final String refid) {
72 this.refid = refid;
73 }
74
75 /**
76 * Gets the value of the refid property.
77 *
78 * @return
79 * possible object is
80 * {@link String }
81 *
82 */
83 public String getRefid() {
84 return refid;
85 }
86
87 /**
88 * Sets the value of the refid property.
89 *
90 * @param value
91 * allowed object is
92 * {@link String }
93 *
94 */
95 public void setRefid(String value) {
96 this.refid = value;
97 }
98
99 }