summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/uic/barcode/ticket/api/impl/SimpleSeriesDataDetails.java
blob: 33f6416d43650a15bf63d769c9367da45238ad8a (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.barcode.ticket.api.impl;

import org.uic.barcode.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;
	}

}