blob: 726b069e193866ee6c1e8c8e56b2d4cf175a511f (
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
|
package org.uic.ticket.api.impl;
import org.uic.ticket.api.spec.ISeriesDataDetails;
public class SimpleSeriesDataDetails implements ISeriesDataDetails {
protected int offerIdentification;
/** The supplying carrier. */
protected int supplyingCarrier;
/** The series. */
protected int series;
/* (nicht-Javadoc)
* @see org.uic.ticket.api.spec.ITariff#getSupplyingCarrier()
*/
public int getSupplyingCarrier() {
return supplyingCarrier;
}
/* (nicht-Javadoc)
* @see org.uic.ticket.api.spec.ITariff#setSupplyingCarrier(int)
*/
public void setSupplyingCarrier(int supplyingCarrier) {
this.supplyingCarrier = supplyingCarrier;
}
/* (nicht-Javadoc)
* @see org.uic.ticket.api.spec.ITariff#getOfferIdentification()
*/
public int getOfferIdentification() {
return offerIdentification;
}
/* (nicht-Javadoc)
* @see org.uic.ticket.api.spec.ITariff#setOfferIdentification(int)
*/
public void setOfferIdentification(int offerIdentification) {
this.offerIdentification = offerIdentification;
}
/* (nicht-Javadoc)
* @see org.uic.ticket.api.spec.ITariff#getSeries()
*/
public int getSeries() {
return series;
}
/* (nicht-Javadoc)
* @see org.uic.ticket.api.spec.ITariff#setSeries(int)
*/
public void setSeries(int series) {
this.series = series;
}
}
|