aboutsummaryrefslogtreecommitdiffstats
path: root/ransim/ransimctrlr/RANSIM-CTRLR/src/main/java/org/onap/ransim/rest/api/models/PmParameters.java
blob: 6ff4721d5599137a8fd49bb9ccb920b6ee5ec525 (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*-
 * ============LICENSE_START=======================================================
 * Ran Simulator Controller
 * ================================================================================
 * Copyright (C) 2020 Wipro Limited.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.onap.ransim.rest.api.models;

public class PmParameters {

	private String parameter1;
	private String successValue1;
	private String badValue1;
	private String poorValue1;
	private String parameter2;
	private String successValue2;
	private String badValue2;
	private String poorValue2;

	public String getParameter1() {
		return parameter1;
	}

	public void setParameter1(String parameter1) {
		this.parameter1 = parameter1;
	}

	public String getSuccessValue1() {
		return successValue1;
	}

	public void setSuccessValue1(String successValue1) {
		this.successValue1 = successValue1;
	}

	public String getBadValue1() {
		return badValue1;
	}

	public void setBadValue1(String badValue1) {
		this.badValue1 = badValue1;
	}

	public String getPoorValue1() {
		return poorValue1;
	}

	public void setPoorValue1(String poorValue1) {
		this.poorValue1 = poorValue1;
	}

	public String getParameter2() {
		return parameter2;
	}

	public void setParameter2(String parameter2) {
		this.parameter2 = parameter2;
	}

	public String getSuccessValue2() {
		return successValue2;
	}

	public void setSuccessValue2(String successValue2) {
		this.successValue2 = successValue2;
	}

	public String getBadValue2() {
		return badValue2;
	}

	public void setBadValue2(String badValue2) {
		this.badValue2 = badValue2;
	}

	public String getPoorValue2() {
		return poorValue2;
	}

	public void setPoorValue2(String poorValue2) {
		this.poorValue2 = poorValue2;
	}

}