summaryrefslogtreecommitdiffstats
path: root/src/org/uic/ticket/api/asn/omv1/DelayConfirmation.java
blob: 1d9e2d2a05fedf259b7471553cdbab8376fcaa95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
/*  
 *   This file was generated by openASN.1 - an open source ASN.1 toolkit for java
 *
 *   openASN.1 is Copyright (C) 2007 Clayton Hoss, Marc Weyland
 *
 *   openASN.1 is free software: you can redistribute it and/or modify
 *   it under the terms of the GNU Lesser General Public License as 
 *   published by the Free Software Foundation, either version 3 of 
 *   the License, or (at your option) any later version.
 *
 *   openASN.1 is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 *   GNU Lesser General Public License for more details.
 *
 *   You should have received a copy of the GNU Lesser General Public License
 *   along with openASN.1. If not, see <http://www.gnu.org/licenses/>.
 * 
 */
package org.uic.ticket.api.asn.omv1;

import java.util.Calendar;
import java.util.Date;
import java.util.List;
import java.util.TimeZone;

import net.gcdc.asn1.datatypes.Asn1BigInteger;
import net.gcdc.asn1.datatypes.Asn1Default;

import net.gcdc.asn1.datatypes.Asn1Optional;
import net.gcdc.asn1.datatypes.CharacterRestriction;
import net.gcdc.asn1.datatypes.HasExtensionMarker;
import net.gcdc.asn1.datatypes.IntRange;
import net.gcdc.asn1.datatypes.RestrictedString;
import net.gcdc.asn1.datatypes.Sequence;


@Sequence
@HasExtensionMarker
public class DelayConfirmation extends Object {
	public DelayConfirmation() {
	}

	@RestrictedString(CharacterRestriction.IA5String)
	@Asn1Optional public String referenceIA5;

	@Asn1Optional public Asn1BigInteger referenceNum;

	@Asn1Optional public Asn1BigInteger trainNum;

	@RestrictedString(CharacterRestriction.IA5String)
	@Asn1Optional public String trainIA5;

	@IntRange(minValue=2016, maxValue=2269)
	@Asn1Optional public Long plannedArrivalYear;

	@IntRange(minValue=1, maxValue=366)
	@Asn1Optional public Long plannedArrivalDay;

	@IntRange(minValue=0, maxValue=1440)
	@Asn1Optional public Long plannedArrivalTime;
	
	@IntRange(minValue=-60, maxValue=60)
	@Asn1Optional public Long departureUTCOffset;

	@Asn1Default(value="stationUIC")
	@Asn1Optional public CodeTableType stationCodeTable;

	@IntRange(minValue=1, maxValue=9999999)
	@Asn1Optional public Long stationNum;

	@RestrictedString(CharacterRestriction.IA5String)
	@Asn1Optional public String stationIA5;

	@RestrictedString(CharacterRestriction.UTF8String)
	@Asn1Optional public String stationNameUTF8;

	@IntRange(minValue=0, maxValue=999, hasExtensionMarker=false)
	@Asn1Optional public Long delay;

	@Asn1Optional public Boolean trainCancelled = false;

	@Asn1Default(value="travelerDelayConfirmation")
	@Asn1Optional public ConfirmationTypeType confirmationType;

	@Asn1Optional public SequenceOfTicketLinkType affectedTickets;

	@RestrictedString(CharacterRestriction.UTF8String)
	@Asn1Optional public String infoText;

	@Asn1Optional public ExtensionData extension;
	


	public String getReferenceIA5() {
		
		return this.referenceIA5;
	}
	
	public Asn1BigInteger getReferenceNum() {
		
		return this.referenceNum;
	}
	
	public Long getTrainNum() {
		
		return Asn1BigInteger.toLong(this.trainNum);
	}
	
	public String getTrainIA5() {
		
		return this.trainIA5;
	}
	
	public Long getPlannedArrivalYear() {
		
		return this.plannedArrivalYear;
	}
	
	public Long getPlannedArrivalDay() {
		
		return this.plannedArrivalDay;
	}
	
	public Long getPlannedArrivalTime() {
		
		return this.plannedArrivalTime;
	}
	
	public CodeTableType getStationCodeTable() {

		if (stationCodeTable == null){
			return CodeTableType.stationUIC;
		}
		return this.stationCodeTable;
	}
	
	public Long getStationNum() {
		
		return this.stationNum;
	}
	
	public String getStationIA5() {
		
		return this.stationIA5;
	}
	
	public String getStationNameUTF8() {
		
		return this.stationNameUTF8;
	}
	
	public Long getDelay() {
		
		return this.delay;
	}
	
	public Boolean getTrainCancelled() {
		
		return this.trainCancelled;
	}
	
	public ConfirmationTypeType getConfirmationType() {
		
		if (confirmationType == null){
			return ConfirmationTypeType.trainDelayConfirmation;
		}
		
		return this.confirmationType;
	}
	
	public List<TicketLinkType> getAffectedTickets() {
		
		return this.affectedTickets;
	}
	
	public String getInfoText() {
		
		return this.infoText;
	}
	
	public ExtensionData getExtension() {
		
		return this.extension;
	}
	
	public void setReferenceIA5(String referenceIA5) {
		
		this.referenceIA5 = referenceIA5;
	}

	public void setReferenceNum(Asn1BigInteger referenceNum) {
		this.referenceNum = referenceNum;
	}
	
	public void setReferenceNum(Long referenceNum) {
		this.referenceNum = Asn1BigInteger.toAsn1(referenceNum);
	}

	public void setTrainNum(Asn1BigInteger trainNum) {
		
		this.trainNum = trainNum;
	}

	public void setTrainIA5(String trainIA5) {
		
		this.trainIA5 = trainIA5;
	}

	public void setPlannedArrivalYear(Long plannedArrivalYear) {
		
		this.plannedArrivalYear = plannedArrivalYear;
	}

	public void setPlannedArrivalDay(Long plannedArrivalDay) {
		
		this.plannedArrivalDay = plannedArrivalDay;
	}

	public void setPlannedArrivalTime(Long plannedArrivalTime) {
		
		this.plannedArrivalTime = plannedArrivalTime;
	}

	public void setStationCodeTable(CodeTableType stationCodeTable) {
		
		this.stationCodeTable = stationCodeTable;
	}

	public void setStationNum(Long stationNum) {
		
		this.stationNum = stationNum;
	}

	public void setStationIA5(String stationIA5) {
		
		this.stationIA5 = stationIA5;
	}

	public void setStationNameUTF8(String stationNameUTF8) {
		
		this.stationNameUTF8 = stationNameUTF8;
	}

	public void setDelay(Long delay) {
		
		this.delay = delay;
	}

	public void setTrainCancelled(Boolean trainCancelled) {
		
		this.trainCancelled = trainCancelled;
	}

	public void setConfirmationType(ConfirmationTypeType confirmationType) {
		
		this.confirmationType = confirmationType;
	}

	public void setAffectedTickets(SequenceOfTicketLinkType affectedTickets) {
		
		this.affectedTickets = affectedTickets;
	}

	public void setInfoText(String infoText) {
		
		this.infoText = infoText;
	}

	public void setExtension(ExtensionData extension) {
		
		this.extension = extension;
	}

	public void setPlannedArrivalDate(Date date){
		
		Calendar cal = Calendar.getInstance();
		cal.setTime(date);
		
		this.plannedArrivalYear = new Long( cal.get(Calendar.YEAR));
		this.plannedArrivalDay = new Long (cal.get(Calendar.DAY_OF_YEAR));
		int time =  cal.get(Calendar.HOUR_OF_DAY) * 60 + cal.get(cal.get(Calendar.MINUTE));
		if (time > 0) {
			this.plannedArrivalTime = new Long (time );
		}
		
	}
	
	public Date getPlannedArrivalDate() {
		
		if (this.plannedArrivalYear == null || this.plannedArrivalDay == null) return null;
		
		Calendar cal = Calendar.getInstance();
		cal.clear();
		cal.setTimeZone(TimeZone.getTimeZone("UTC"));
		cal.set(Calendar.YEAR, this.plannedArrivalYear.intValue());
		cal.set(Calendar.DAY_OF_YEAR, this.plannedArrivalDay.intValue());
		
		if (this.plannedArrivalTime != null) {
		
			int hours = this.plannedArrivalTime.intValue() / 60;
			int minutes = this.plannedArrivalTime.intValue() % 60;
			cal.set(Calendar.HOUR_OF_DAY, hours);
			cal.set(Calendar.MINUTE,minutes);

		}
		
		return cal.getTime();
	}

	public Long getDepartureUTCOffset() {
		return departureUTCOffset;
	}

	public void setDepartureUTCOffset(Long departureUTCOffset) {
		this.departureUTCOffset = departureUTCOffset;
	}
	
	
	
}