summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/uic/barcode/ticket/api/spec/ISeriesDataDetails.java
blob: af7623b82b3e050a33e9718a3b8fad9e3acd3091 (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
/*
 * 
 */
package org.uic.barcode.ticket.api.spec;

/**
 * The Interface ISeriesDataDetails.
 * 
 * ISeriesDataDetails describes details of a series (according to UIC leaflet 108.1 
 * 
 * Series details should be omitted if not explicitely required for a specific product.
 * 
 * 
 */
public interface ISeriesDataDetails {
	
	
	
	/**
	 * Gets the supplying carrier of the series data.
	 *
	 * @return the supplying carrier of the series data
	 */
	public int getSupplyingCarrier() ;


	/**
	 * Sets the supplying carrier of the series data.
	 *
	 * @param supplyingCarrier the new supplying carrier of the series data
	 */
	public void setSupplyingCarrier(int supplyingCarrier);
	
	
	/**
	 * Gets the offer identification of the series data.
	 *
	 * @return the offer identification of the series data
	 */
	public int getOfferIdentification();


	/**
	 * Sets the offer identification of the series data.
	 *
	 * @param offerIdentification the new offer identification of the series data
	 */
	public void setOfferIdentification(int offerIdentification) ;


	/**
	 * Gets the series id.
	 *
	 * @return the series id
	 */
	public int getSeries();


	/**
	 * Sets the series id.
	 *
	 * @param series the new series id
	 */
	public void setSeries(int series) ;	

}