1
2
3
4
5
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
24
25
26
27
28
29
30
31
32
33
34
35
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
61
62
63 public ReferencedType() {
64 super();
65 }
66
67
68
69
70
71 public ReferencedType(final String refid) {
72 this.refid = refid;
73 }
74
75
76
77
78
79
80
81
82
83 public String getRefid() {
84 return refid;
85 }
86
87
88
89
90
91
92
93
94
95 public void setRefid(String value) {
96 this.refid = value;
97 }
98
99 }