1
2
3
4
5
6
7
8
9 package gov.ojp.it.jxdm._3_0;
10
11 import javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlElement;
14 import javax.xml.bind.annotation.XmlRootElement;
15 import javax.xml.bind.annotation.XmlType;
16
17
18
19
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 = "", propOrder = {
41 "vehicleLicensePlateID",
42 "vehicleRegistrationDecal",
43 "vehicle"
44 })
45 @XmlRootElement(name = "VehicleRegistration")
46 public class VehicleRegistration
47 extends PropertyRegistrationType
48 {
49
50 @XmlElement(name = "VehicleLicensePlateID", required = true)
51 protected IDType vehicleLicensePlateID;
52 @XmlElement(name = "VehicleRegistrationDecal", required = true)
53 protected DecalType vehicleRegistrationDecal;
54 @XmlElement(name = "Vehicle", required = true)
55 protected VehicleType vehicle;
56
57
58
59
60
61 public VehicleRegistration() {
62 super();
63 }
64
65
66
67
68
69 public VehicleRegistration(final String sourceIDText, final String id, final IDType vehicleLicensePlateID, final DecalType vehicleRegistrationDecal, final VehicleType vehicle) {
70 super(sourceIDText, id);
71 this.vehicleLicensePlateID = vehicleLicensePlateID;
72 this.vehicleRegistrationDecal = vehicleRegistrationDecal;
73 this.vehicle = vehicle;
74 }
75
76
77
78
79
80
81
82
83
84 public IDType getVehicleLicensePlateID() {
85 return vehicleLicensePlateID;
86 }
87
88
89
90
91
92
93
94
95
96 public void setVehicleLicensePlateID(IDType value) {
97 this.vehicleLicensePlateID = value;
98 }
99
100
101
102
103
104
105
106
107
108 public DecalType getVehicleRegistrationDecal() {
109 return vehicleRegistrationDecal;
110 }
111
112
113
114
115
116
117
118
119
120 public void setVehicleRegistrationDecal(DecalType value) {
121 this.vehicleRegistrationDecal = value;
122 }
123
124
125
126
127
128
129
130
131
132 public VehicleType getVehicle() {
133 return vehicle;
134 }
135
136
137
138
139
140
141
142
143
144 public void setVehicle(VehicleType value) {
145 this.vehicle = value;
146 }
147
148 }