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

public class NewNsst {

	private String nsstId;
	private String flavorId;

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

	public NewNsst(String nsstId, String flavorId) {
		super();
		this.nsstId = nsstId;
		this.flavorId = flavorId;
	}

	public String getNsstId() {
		return nsstId;
	}

	public void setNsstId(String nsstId) {
		this.nsstId = nsstId;
	}

	public String getFlavorId() {
		return flavorId;
	}

	public void setFlavorId(String flavorId) {
		this.flavorId = flavorId;
	}

}