aboutsummaryrefslogtreecommitdiffstats
path: root/ONAP-PAP-REST/src/main/java/org/onap/policy/pap/xacml/rest/service/DictionaryService.java
blob: 00ae10fb680e423af8e7abfd2b040401afa6f947 (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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
/*-
 * ============LICENSE_START=======================================================
 * ONAP-PAP-REST
 * ================================================================================
 * Copyright (C) 2017-2018 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.onap.policy.pap.xacml.rest.service;

import java.io.IOException;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.onap.policy.pap.xacml.rest.controller.ActionPolicyDictionaryController;
import org.onap.policy.pap.xacml.rest.controller.BRMSDictionaryController;
import org.onap.policy.pap.xacml.rest.controller.ClosedLoopDictionaryController;
import org.onap.policy.pap.xacml.rest.controller.DecisionPolicyDictionaryController;
import org.onap.policy.pap.xacml.rest.controller.DescriptiveDictionaryController;
import org.onap.policy.pap.xacml.rest.controller.DictionaryController;
import org.onap.policy.pap.xacml.rest.controller.FirewallDictionaryController;
import org.onap.policy.pap.xacml.rest.controller.MicroServiceDictionaryController;
import org.onap.policy.pap.xacml.rest.controller.PolicyScopeDictionaryController;
import org.onap.policy.pap.xacml.rest.controller.SafePolicyController;
import org.springframework.stereotype.Service;
import org.springframework.web.servlet.ModelAndView;


@Service("DictionaryService")
public class DictionaryService {

	/*
	 * Methods that call the controller method directly to Save and Update dictionary data
	 */
	public String saveOnapDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException {
		
		DictionaryController dictionary = new DictionaryController();
			ModelAndView result = dictionary.saveOnapDictionary(request, response);
		return result.getViewName();
	}
	
	public String saveAttributeDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		DictionaryController dictionary = new DictionaryController();
			ModelAndView result = dictionary.saveAttributeDictionary(request, response);
		return result.getViewName();
		}
	
	public String saveActionPolicyDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException {
		
		ActionPolicyDictionaryController action = new ActionPolicyDictionaryController();
			ModelAndView result = action.saveActionPolicyDictionary(request, response);
		return result.getViewName();
	}
	
	public String saveBRMSParamDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException {
		
		BRMSDictionaryController dictionary = new BRMSDictionaryController();
			ModelAndView result = dictionary.saveBRMSParamDictionary(request, response);
		return result.getViewName();
	}
	
	public String saveVSCLAction(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		ClosedLoopDictionaryController dictionary = new ClosedLoopDictionaryController();
			ModelAndView result = dictionary.saveVSCLAction(request, response);
		return result.getViewName();
	}
	
	public String saveVnfType(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		ClosedLoopDictionaryController dictionary = new ClosedLoopDictionaryController();
			ModelAndView result = dictionary.saveVnfType(request, response);
		return result.getViewName();
	}
	
	public String savePEPOptions(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		ClosedLoopDictionaryController dictionary = new ClosedLoopDictionaryController();
			ModelAndView result = dictionary.savePEPOptions(request, response);
		return result.getViewName();
	}
	
	public String saveVarbind(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		ClosedLoopDictionaryController dictionary = new ClosedLoopDictionaryController();
			ModelAndView result = dictionary.saveVarbind(request, response);
		return result.getViewName();
	}
	
	public String saveServiceType(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		ClosedLoopDictionaryController dictionary = new ClosedLoopDictionaryController();
			ModelAndView result = dictionary.saveServiceType(request, response);
		return result.getViewName();
	}
	
	public String saveSiteType(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		ClosedLoopDictionaryController dictionary = new ClosedLoopDictionaryController();
			ModelAndView result = dictionary.saveSiteType(request, response);
		return result.getViewName();
	}
	
	public String saveSettingsDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		DecisionPolicyDictionaryController dictionary = new DecisionPolicyDictionaryController();
			ModelAndView result = dictionary.saveSettingsDictionary(request, response);
		return result.getViewName();
	}
	
	public String saveRainyDayDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		DecisionPolicyDictionaryController dictionary = new DecisionPolicyDictionaryController();
			ModelAndView result = dictionary.saveRainyDayDictionary(request, response);
		return result.getViewName();
	}
	
	public String saveDescriptiveDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		DescriptiveDictionaryController dictionary = new DescriptiveDictionaryController();
			ModelAndView result = dictionary.saveDescriptiveDictionary(request, response);
		return result.getViewName();
	}
	
	public String saveActionListDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		FirewallDictionaryController dictionary = new FirewallDictionaryController();
			ModelAndView result = dictionary.saveActionListDictionary(request, response);
		return result.getViewName();
	}
	
	public String saveProtocolListDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		FirewallDictionaryController dictionary = new FirewallDictionaryController();
			ModelAndView result = dictionary.saveProtocolListDictionary(request, response);
		return result.getViewName();
	}
	
	public String saveZoneDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		FirewallDictionaryController dictionary = new FirewallDictionaryController();
			ModelAndView result = dictionary.saveZoneDictionary(request, response);
		return result.getViewName();
	}
	
	public String saveSecurityZoneDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		FirewallDictionaryController dictionary = new FirewallDictionaryController();
			ModelAndView result = dictionary.saveSecurityZoneDictionary(request, response);
		return result.getViewName();
	}
	
	public String savePrefixListDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		FirewallDictionaryController dictionary = new FirewallDictionaryController();
			ModelAndView result = dictionary.savePrefixListDictionary(request, response);
		return result.getViewName();
	}
	
	public String saveAddressGroupDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		FirewallDictionaryController dictionary = new FirewallDictionaryController();
			ModelAndView result = dictionary.saveAddressGroupDictionary(request, response);
		return result.getViewName();
	}
	
	public String saveServiceGroupDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		FirewallDictionaryController dictionary = new FirewallDictionaryController();
			ModelAndView result = dictionary.saveServiceGroupDictionary(request, response);
		return result.getViewName();
	}
	
	public String saveServiceListDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		FirewallDictionaryController dictionary = new FirewallDictionaryController();
			ModelAndView result = dictionary.saveServiceListDictionary(request, response);
		return result.getViewName();
	}
	
	public String saveTermListDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		FirewallDictionaryController dictionary = new FirewallDictionaryController();
			ModelAndView result = dictionary.saveTermListDictionary(request, response);
		return result.getViewName();
	}
	
	
	
	
	public String saveMicroServiceLocationDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		MicroServiceDictionaryController dictionary = new MicroServiceDictionaryController();
			ModelAndView result = dictionary.saveMicroServiceLocationDictionary(request, response);
		return result.getViewName();
	}
	
	public String saveMicroServiceConfigNameDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		MicroServiceDictionaryController dictionary = new MicroServiceDictionaryController();
			ModelAndView result = dictionary.saveMicroServiceConfigNameDictionary(request, response);
		return result.getViewName();
	}
	
	public String saveDCAEUUIDDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		MicroServiceDictionaryController dictionary = new MicroServiceDictionaryController();
			ModelAndView result = dictionary.saveDCAEUUIDDictionary(request, response);
		return result.getViewName();
	}
	
	public String saveMicroServiceModelsDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		MicroServiceDictionaryController dictionary = new MicroServiceDictionaryController();
			ModelAndView result = dictionary.saveMicroServiceModelsDictionary(request, response);
		return result.getViewName();
	}
	
	public String saveMicroServiceDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		MicroServiceDictionaryController dictionary = new MicroServiceDictionaryController();
			ModelAndView result = dictionary.saveMicroServiceAttributeDictionary(request, response);
		return result.getViewName();
	}
	
	public String savePSServiceDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		PolicyScopeDictionaryController dictionary = new PolicyScopeDictionaryController();
			ModelAndView result = dictionary.savePSServiceDictionary(request, response);
		return result.getViewName();
	}
	
	public String savePSResourceDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		PolicyScopeDictionaryController dictionary = new PolicyScopeDictionaryController();
			ModelAndView result = dictionary.savePSResourceDictionary(request, response);
		return result.getViewName();
	}
	
	public String savePSTypeDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		PolicyScopeDictionaryController dictionary = new PolicyScopeDictionaryController();
			ModelAndView result = dictionary.savePSTypeDictionary(request, response);
		return result.getViewName();
	}
	
	public String savePSClosedLoopDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		PolicyScopeDictionaryController dictionary = new PolicyScopeDictionaryController();
			ModelAndView result = dictionary.savePSClosedLoopDictionary(request, response);
		return result.getViewName();
	}
	
	public String savePSGroupScopeDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		PolicyScopeDictionaryController dictionary = new PolicyScopeDictionaryController();
			ModelAndView result = dictionary.savePSGroupScopeDictionary(request, response);
		return result.getViewName();
	}
	
	public String saveRiskTypeDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		
		SafePolicyController dictionary = new SafePolicyController();
			ModelAndView result = dictionary.saveRiskTypeDictionary(request, response);
		return result.getViewName();
	}
	
	public String saveSafePolicyWarningDictionary(HttpServletRequest request, HttpServletResponse response) throws IOException{
		SafePolicyController dictionary = new SafePolicyController();
			ModelAndView result = dictionary.saveSafePolicyWarningDictionary(request, response);
		return result.getViewName();
	}
	
	
	/*
	 * Methods that call the controller get methods directly to get dictionary data
	 */
	public void getOnapDictionary(HttpServletResponse response){
		DictionaryController dictionary = new DictionaryController();
			dictionary.getOnapNameDictionaryEntityData(response);					
	}
	
	public void getAttributeDictionary(HttpServletResponse response){
		DictionaryController dictionary = new DictionaryController();
			dictionary.getAttributeDictionaryEntityData(response);
	}
	
	public void getActionPolicyDictionary(HttpServletResponse response){
		ActionPolicyDictionaryController action = new ActionPolicyDictionaryController();
			action.getActionPolicyDictionaryEntityData(response);	
	}
	
	public void getBRMSParamDictionary(HttpServletResponse response){
		BRMSDictionaryController dictionary = new BRMSDictionaryController();
			dictionary.getBRMSParamDictionaryEntityData(response);
	}
	
	public void getVSCLAction(HttpServletResponse response){
		ClosedLoopDictionaryController dictionary = new ClosedLoopDictionaryController();
			dictionary.getVSCLActionDictionaryEntityData(response);
	}
	
	public void getVnfType(HttpServletResponse response){
		ClosedLoopDictionaryController dictionary = new ClosedLoopDictionaryController();
			dictionary.getVNFTypeDictionaryEntityData(response);
	}
	
	public void getPEPOptions(HttpServletResponse response){
		ClosedLoopDictionaryController dictionary = new ClosedLoopDictionaryController();
			dictionary.getPEPOptionsDictionaryEntityData(response);
	}
	
	public void getVarbind(HttpServletResponse response){
		ClosedLoopDictionaryController dictionary = new ClosedLoopDictionaryController();
			dictionary.getVarbindDictionaryEntityData(response);
	}
	
	public void getServiceType(HttpServletResponse response){
		ClosedLoopDictionaryController dictionary = new ClosedLoopDictionaryController();
			dictionary.getClosedLoopServiceDictionaryEntityData(response);
	}
	
	public void getSiteType(HttpServletResponse response){
		ClosedLoopDictionaryController dictionary = new ClosedLoopDictionaryController();
			dictionary.getClosedLoopSiteDictionaryEntityData(response);	
	}
	
	public void getSettingsDictionary(HttpServletResponse response){
		DecisionPolicyDictionaryController dictionary = new DecisionPolicyDictionaryController();
			dictionary.getSettingsDictionaryEntityData(response);
	}
	
	public void getRainyDayDictionary(HttpServletResponse response){
		DecisionPolicyDictionaryController dictionary = new DecisionPolicyDictionaryController();
			dictionary.getRainyDayDictionaryEntityData(response);
	}
	
	public void getDescriptiveDictionary(HttpServletResponse response){
		DescriptiveDictionaryController dictionary = new DescriptiveDictionaryController();
			dictionary.getDescriptiveDictionaryEntityData(response);
	}
	
	public void getActionListDictionary(HttpServletResponse response){
		FirewallDictionaryController dictionary = new FirewallDictionaryController();
			dictionary.getActionListDictionaryEntityData(response);
	}
	
	public void getProtocolListDictionary(HttpServletResponse response){
		FirewallDictionaryController dictionary = new FirewallDictionaryController();
			dictionary.getProtocolListDictionaryEntityData(response);
	}
	
	public void getZoneDictionary(HttpServletResponse response){
		FirewallDictionaryController dictionary = new FirewallDictionaryController();
			dictionary.getZoneDictionaryEntityData(response);
	}
	
	public void getSecurityZoneDictionary(HttpServletResponse response){
		FirewallDictionaryController dictionary = new FirewallDictionaryController();
			dictionary.getSecurityZoneDictionaryEntityData(response);
	}
	
	public void getPrefixListDictionary(HttpServletResponse response){
		FirewallDictionaryController dictionary = new FirewallDictionaryController();
			dictionary.getPrefixListDictionaryEntityData(response);
	}
	
	public void getAddressGroupDictionary(HttpServletResponse response){
		FirewallDictionaryController dictionary = new FirewallDictionaryController();
			dictionary.getAddressGroupDictionaryEntityData(response);
	}
	
	public void getServiceGroupDictionary(HttpServletResponse response){
		FirewallDictionaryController dictionary = new FirewallDictionaryController();
			dictionary.getServiceGroupDictionaryEntityData(response);
	}
	
	public void getServiceListDictionary(HttpServletResponse response){
		FirewallDictionaryController dictionary = new FirewallDictionaryController();
			dictionary.getServiceListDictionaryEntityData(response);
	}
	
	public void getTermListDictionary(HttpServletResponse response){
		FirewallDictionaryController dictionary = new FirewallDictionaryController();
			dictionary.getTermListDictionaryEntityData(response);
	}
	
	
	public void getMicroServiceLocationDictionary(HttpServletResponse response){
		MicroServiceDictionaryController dictionary = new MicroServiceDictionaryController();
			dictionary.getMicroServiceLocationDictionaryEntityData(response);
	}
	
	public void getMicroServiceConfigNameDictionary(HttpServletResponse response){
		MicroServiceDictionaryController dictionary = new MicroServiceDictionaryController();
			dictionary.getMicroServiceConfigNameDictionaryEntityData(response);
	}
	
	public void getDCAEUUIDDictionary(HttpServletResponse response){
		MicroServiceDictionaryController dictionary = new MicroServiceDictionaryController();
			dictionary.getDCAEUUIDDictionaryEntityData(response);
	}
	
	public void getMicroServiceModelsDictionary(HttpServletResponse response){
		MicroServiceDictionaryController dictionary = new MicroServiceDictionaryController();
			dictionary.getMicroServiceModelsDictionaryEntityData(response);
	}
	
	public void getMicroServiceDictionary(HttpServletResponse response){
		MicroServiceDictionaryController dictionary = new MicroServiceDictionaryController();
			dictionary.getMicroServiceModelsDictionaryEntityData(response);
	}
	
	public void getPSServiceDictionary(HttpServletResponse response){
		PolicyScopeDictionaryController dictionary = new PolicyScopeDictionaryController();
			dictionary.getPSServiceEntityData(response);
	}
	
	public void getPSResourceDictionary(HttpServletResponse response){
		PolicyScopeDictionaryController dictionary = new PolicyScopeDictionaryController();
			dictionary.getPSResourceEntityData(response);
	}
	
	public void getPSTypeDictionary(HttpServletResponse response){
		PolicyScopeDictionaryController dictionary = new PolicyScopeDictionaryController();
			dictionary.getPSTypeEntityData(response);
	}
	
	public void getPSClosedLoopDictionary(HttpServletResponse response){
		PolicyScopeDictionaryController dictionary = new PolicyScopeDictionaryController();
			dictionary.getPSClosedLoopEntityData(response);
	}
	
	public void getPSGroupScopeDictionary(HttpServletResponse response){
		PolicyScopeDictionaryController dictionary = new PolicyScopeDictionaryController();
			dictionary.getGroupPolicyScopeEntityData(response);
	}
	
	public void getRiskTypeDictionary(HttpServletResponse response){
		SafePolicyController dictionary = new SafePolicyController();
			dictionary.getRiskTypeDictionaryEntityData(response);
	}
	
	public void getSafePolicyWarningDictionary(HttpServletResponse response) {
		SafePolicyController dictionary = new SafePolicyController();
			dictionary.getSafePolicyWarningeEntityData(response);
	}
}