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

import java.util.List;

public class NetworkSliceSubnet {

	private String[] mfIdList;
	private NsInstanceInfo nsInfo;
	private List<SliceProfile> sliceProfileList;

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

	public NetworkSliceSubnet(String[] mfIdList, NsInstanceInfo nsInfo, List<SliceProfile> sliceProfileList) {
		super();
		this.mfIdList = mfIdList;
		this.nsInfo = nsInfo;
		this.sliceProfileList = sliceProfileList;
	}

	public String[] getMfIdList() {
		return mfIdList;
	}

	public void setMfIdList(String[] mfIdList) {
		this.mfIdList = mfIdList;
	}

	public NsInstanceInfo getNsInfo() {
		return nsInfo;
	}

	public void setNsInfo(NsInstanceInfo nsInfo) {
		this.nsInfo = nsInfo;
	}

	public List<SliceProfile> getSliceProfileList() {
		return sliceProfileList;
	}

	public void setSliceProfileList(List<SliceProfile> sliceProfileList) {
		this.sliceProfileList = sliceProfileList;
	}

}