blob: 801cd372d3f047f6a8330598dc0bfd8d0fe87564 (
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
|
/*
*
*/
package org.uic.ticket.api.impl;
import org.uic.ticket.api.spec.IRegisteredLuggage;
// TODO: Auto-generated Javadoc
/**
* The Class SimpleRegisteredLuggage.
*/
public class SimpleRegisteredLuggage implements IRegisteredLuggage{
/** The registration id. */
protected String registrationId;
/** The max weight. */
protected int maxWeight;
/** The max size. */
protected int maxSize;
/* (nicht-Javadoc)
* @see org.uic.ticket.api.spec.IRegisteredLuggage#getRegistrationId()
*/
public String getRegistrationId() {
return registrationId;
}
/* (nicht-Javadoc)
* @see org.uic.ticket.api.spec.IRegisteredLuggage#setRegistrationId(java.lang.String)
*/
public void setRegistrationId(String registrationId) {
this.registrationId = registrationId;
}
/* (nicht-Javadoc)
* @see org.uic.ticket.api.spec.IRegisteredLuggage#getMaxWeight()
*/
public int getMaxWeight() {
return maxWeight;
}
/* (nicht-Javadoc)
* @see org.uic.ticket.api.spec.IRegisteredLuggage#setMaxWeight(int)
*/
public void setMaxWeight(int maxWeight) {
this.maxWeight = maxWeight;
}
/* (nicht-Javadoc)
* @see org.uic.ticket.api.spec.IRegisteredLuggage#getMaxSize()
*/
public int getMaxSize() {
return maxSize;
}
/* (nicht-Javadoc)
* @see org.uic.ticket.api.spec.IRegisteredLuggage#setMaxSize(int)
*/
public void setMaxSize(int maxSize) {
this.maxSize = maxSize;
}
}
|