aboutsummaryrefslogtreecommitdiffstats
path: root/ecomp-sdk-app/src/main/java/org/openecomp/policy/adapter/ClosedLoopFaultBody.java
blob: cb1ce55a6440a56ba7ed09a410474d4d0cd63028 (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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
/*-
 * ============LICENSE_START=======================================================
 * ECOMP Policy Engine
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * 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.openecomp.policy.adapter;



public class ClosedLoopFaultBody {
	
	private boolean trinity;
	private boolean vUSP;
	private boolean mcr;
	private boolean gama;
	private boolean vDNS;
	
	private String vnfType;
	private String vServices;
	private String ECOMPname;
	
	private String closedLoopPolicyStatus;
	private ClosedLoopSignatures triggerSignatures;
	private String actions;
	private int timeInterval;
	private int timeOutvPRO;
	private int timeOutRuby;
	private int retrys;
	private int agingWindow;
	private String geoLink;
	private String emailAddress;
	private ClosedLoopSignatures verificationSignatures;
	private ClosedLoopPolicyConditions conditions;
	private ClosedLoopFaultTriggerUISignatures triggerSignaturesUsedForUI;
	private ClosedLoopFaultTriggerUISignatures verificationSignaturesUsedForUI;
	private int triggerTimeWindowUsedForUI;
	private int verfificationTimeWindowUsedForUI;
	private String pepName;
	private String pepAction;
	private String templateVersion;
	private int trapMaxAgeUsedForUI;
	
	
	public Integer getTrapMaxAgeUsedForUI() {
		return trapMaxAgeUsedForUI;
	}

	public void setTrapMaxAgeUsedForUI(int trapMaxAgeUsedForUI) {
		this.trapMaxAgeUsedForUI = trapMaxAgeUsedForUI;
	}

	public String getTemplateVersion() {
		return templateVersion;
	}

	public void setTemplateVersion(String templateVersion) {
		this.templateVersion = templateVersion;
	}

	public Integer getTimeOutvPRO() {
		return timeOutvPRO;
	}

	public void setTimeOutvPRO(int timeOutvPRO) {
		this.timeOutvPRO = timeOutvPRO;
	}
	
	
	public Integer getTriggerTimeWindowUsedForUI() {
		return triggerTimeWindowUsedForUI;
	}

	public String getPepName() {
		return pepName;
	}

	public void setPepName(String pepName) {
		this.pepName = pepName;
	}

	public String getPepAction() {
		return pepAction;
	}

	public void setPepAction(String pepAction) {
		this.pepAction = pepAction;
	}

	public void setTriggerTimeWindowUsedForUI(int triggerTimeWindowUsedForUI) {
		this.triggerTimeWindowUsedForUI = triggerTimeWindowUsedForUI;
	}

	public Integer getVerfificationTimeWindowUsedForUI() {
		return verfificationTimeWindowUsedForUI;
	}

	public void setVerfificationTimeWindowUsedForUI(
			int verfificationTimeWindowUsedForUI) {
		this.verfificationTimeWindowUsedForUI = verfificationTimeWindowUsedForUI;
	}

	public String getECOMPname(){
		return ECOMPname;
	}
	
	public void setECOMPname(String ECOMPname){
		this.ECOMPname = ECOMPname;
	}
	
	public String getvServices() {
		return vServices;
	}
	public void setvServices(String vServices) {
		this.vServices = vServices;
	}
	
	public ClosedLoopFaultTriggerUISignatures getVerificationSignaturesUsedForUI() {
		return verificationSignaturesUsedForUI;
	}
	public void setVerificationSignaturesUsedForUI(
			ClosedLoopFaultTriggerUISignatures verificationSignaturesUsedForUI) {
		this.verificationSignaturesUsedForUI = verificationSignaturesUsedForUI;
	}
	public ClosedLoopFaultTriggerUISignatures getTriggerSignaturesUsedForUI() {
		return triggerSignaturesUsedForUI;
	}
	public void setTriggerSignaturesUsedForUI(
			ClosedLoopFaultTriggerUISignatures triggerSignaturesUsedForUI) {
		this.triggerSignaturesUsedForUI = triggerSignaturesUsedForUI;
	}
	public ClosedLoopPolicyConditions getConditions() {
		return conditions;
	}
	public void setConditions(ClosedLoopPolicyConditions conditions) {
		this.conditions = conditions;
	}

	public String getVnfType() {
		return vnfType;
	}
	public void setVnfType(String vnfType) {
		this.vnfType = vnfType;
	}
	
	public Integer getAgingWindow() {
		return agingWindow;
	}
	public void setAgingWindow(int agingWindow) {
		this.agingWindow = agingWindow;
	}

	public String getClosedLoopPolicyStatus() {
		return closedLoopPolicyStatus;
	}
	public void setClosedLoopPolicyStatus(
			String closedLoopPolicyStatus) {
		this.closedLoopPolicyStatus = closedLoopPolicyStatus;
	}
	public ClosedLoopSignatures getTriggerSignatures() {
		return triggerSignatures;
	}
	public void setTriggerSignatures(ClosedLoopSignatures triggerSignatures) {
		this.triggerSignatures = triggerSignatures;
	}
	public String getActions() {
		return actions;
	}
	public void setActions(String actions) {
		this.actions = actions;
	}
	public Integer getTimeInterval() {
		return timeInterval;
	}
	public void setTimeInterval(int timeInterval) {
		this.timeInterval = timeInterval;
	}
	public Integer getTimeOutRuby() {
		return timeOutRuby;
	}
	public void setTimeOutRuby(int timeOutRuby) {
		this.timeOutRuby = timeOutRuby;
	}
	public Integer getRetrys() {
		return retrys;
	}
	public void setRetrys(int retrys) {
		this.retrys = retrys;
	}
	public String getGeoLink() {
		return geoLink;
	}
	public void setGeoLink(String geoLink) {
		this.geoLink = geoLink;
	}
	public String getEmailAddress() {
		return emailAddress;
	}
	public void setEmailAddress(String emailAddress) {
		this.emailAddress = emailAddress;
	}
	public ClosedLoopSignatures getVerificationSignatures() {
		return verificationSignatures;
	}
	public void setVerificationSignatures(
			ClosedLoopSignatures verificationSignatures) {
		this.verificationSignatures = verificationSignatures;
	}
	
	/*public ArrayList<String> getD2Services() {
		return d2Services;
	}

	public void setD2Services(ArrayList<String> d2Services) {
		this.d2Services = d2Services;
	}

	public ArrayList<String> getSiteNames() {
		return siteNames;
	}

	public void setSiteNames(ArrayList<String> siteNames) {
		this.siteNames = siteNames;
	}*/
	
	public boolean isvDNS() {
		return vDNS;
	}

	public void setvDNS(boolean vDNS) {
		this.vDNS = vDNS;
	}
	
	public boolean isTrinity() {
		return trinity;
	}

	public void setTrinity(boolean trinity) {
		this.trinity = trinity;
	}

	public boolean isvUSP() {
		return vUSP;
	}

	public void setvUSP(boolean vUSP) {
		this.vUSP = vUSP;
	}

	public boolean isMcr() {
		return mcr;
	}

	public void setMcr(boolean mcr) {
		this.mcr = mcr;
	}

	public boolean isGama() {
		return gama;
	}

	public void setGama(boolean gama) {
		this.gama = gama;
	}
}