summaryrefslogtreecommitdiffstats
path: root/src/org/uic/ticket/api/impl/SimpleBerth.java
blob: f70a8b628e434328108b63f7016caa639afe1638 (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
/*
 * 
 */
package org.uic.ticket.api.impl;

import org.uic.ticket.api.spec.IBerthTypeType;
import org.uic.ticket.api.spec.ICompartmentGenderType;
import org.uic.ticket.api.spec.IBerth;

/**
 * The Class SimpleBerth.
 */
public class SimpleBerth implements IBerth {
	
	
	/** The type. */
	protected IBerthTypeType type;
	
	/** The number of berths. */
	protected int numberOfBerths;
	
	/** The gender. */
	protected ICompartmentGenderType	gender = ICompartmentGenderType.family;
	
	/* (nicht-Javadoc)
	 * @see org.uic.ticket.api.spec.IBerth#getType()
	 */
	public IBerthTypeType getType() {
		return type;
	}
	
	/* (nicht-Javadoc)
	 * @see org.uic.ticket.api.spec.IBerth#setType(org.uic.ticket.api.asn.om.BerthTypeType)
	 */
	public void setType(IBerthTypeType type) {
		this.type = type;
	}
	
	/* (nicht-Javadoc)
	 * @see org.uic.ticket.api.spec.IBerth#getNumberOfBerths()
	 */
	public int getNumberOfBerths() {
		return numberOfBerths;
	}
	
	/* (nicht-Javadoc)
	 * @see org.uic.ticket.api.spec.IBerth#setNumberOfBerths(int)
	 */
	public void setNumberOfBerths(int numberOfBerths) {	
		this.numberOfBerths = numberOfBerths;
	}
	
	/* (nicht-Javadoc)
	 * @see org.uic.ticket.api.spec.IBerth#getGender()
	 */
	public ICompartmentGenderType getGender() {
		return gender;
	}
	
	/* (nicht-Javadoc)
	 * @see org.uic.ticket.api.spec.IBerth#setGender(org.uic.ticket.api.asn.om.CompartmentGenderType)
	 */
	public void setGender(ICompartmentGenderType gender) {
		this.gender = gender;
	}
	
	

}