summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/cmcc/simulator/module/PerfReqEmbb.java
blob: a055ca3fde2f6ab5a6ed919f0463a852230a7215 (plain)
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 com.cmcc.simulator.module;

public class PerfReqEmbb {

	private int expDataRateDL;
	private int expDataRateUL;
	private int areaTrafficCapDL;
	private int areaTrafficCapUL;
	private int activityFactor;

	public PerfReqEmbb() {
		super();
		// TODO Auto-generated constructor stub
	}

	public PerfReqEmbb(int expDataRateDL, int expDataRateUL, int areaTrafficCapDL, int areaTrafficCapUL,
			int activityFactor) {
		super();
		this.expDataRateDL = expDataRateDL;
		this.expDataRateUL = expDataRateUL;
		this.areaTrafficCapDL = areaTrafficCapDL;
		this.areaTrafficCapUL = areaTrafficCapUL;
		this.activityFactor = activityFactor;
	}

	public int getExpDataRateDL() {
		return expDataRateDL;
	}

	public void setExpDataRateDL(int expDataRateDL) {
		this.expDataRateDL = expDataRateDL;
	}

	public int getExpDataRateUL() {
		return expDataRateUL;
	}

	public void setExpDataRateUL(int expDataRateUL) {
		this.expDataRateUL = expDataRateUL;
	}

	public int getAreaTrafficCapDL() {
		return areaTrafficCapDL;
	}

	public void setAreaTrafficCapDL(int areaTrafficCapDL) {
		this.areaTrafficCapDL = areaTrafficCapDL;
	}

	public int getAreaTrafficCapUL() {
		return areaTrafficCapUL;
	}

	public void setAreaTrafficCapUL(int areaTrafficCapUL) {
		this.areaTrafficCapUL = areaTrafficCapUL;
	}

	public int getActivityFactor() {
		return activityFactor;
	}

	public void setActivityFactor(int activityFactor) {
		this.activityFactor = activityFactor;
	}

}