summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/cmcc/simulator/module/PnfInfo.java
blob: b078c457b6addd0ea27a1cf6d4625af90f657dfa (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
package com.cmcc.simulator.module;

public class PnfInfo {
	private String pnfId;
	private String pnfName;
	private String pnfdId;

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

	public PnfInfo(String pnfId, String pnfName, String pnfdId) {
		super();
		this.pnfId = pnfId;
		this.pnfName = pnfName;
		this.pnfdId = pnfdId;
	}

	public String getPnfId() {
		return pnfId;
	}

	public void setPnfId(String pnfId) {
		this.pnfId = pnfId;
	}

	public String getPnfName() {
		return pnfName;
	}

	public void setPnfName(String pnfName) {
		this.pnfName = pnfName;
	}

	public String getPnfdId() {
		return pnfdId;
	}

	public void setPnfdId(String pnfdId) {
		this.pnfdId = pnfdId;
	}

}