09bc80f890c2512764078ea80cae6d790a296e79
[clamp.git] / src / main / java / org / onap / clamp / loop / template / LoopTemplatesService.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP CLAMP
4  * ================================================================================
5  * Copyright (C) 2020 AT&T Intellectual Property. All rights
6  *                             reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END============================================
20  * ===================================================================
21  *
22  */
23
24 package org.onap.clamp.loop.template;
25
26 import java.util.List;
27 import org.onap.clamp.clds.sdc.controller.installer.ChainGenerator;
28 import org.springframework.beans.factory.annotation.Autowired;
29 import org.springframework.stereotype.Service;
30
31 @Service
32 public class LoopTemplatesService {
33
34     private final LoopTemplatesRepository loopTemplatesRepository;
35
36     @Autowired
37     ChainGenerator chainGenerator;
38
39     /**
40      * Constructor.
41      */
42     @Autowired
43     public LoopTemplatesService(LoopTemplatesRepository loopTemplatesRepository) {
44         this.loopTemplatesRepository = loopTemplatesRepository;
45
46     }
47
48     public LoopTemplate saveOrUpdateLoopTemplate(LoopTemplate loopTemplate) {
49         return loopTemplatesRepository.save(loopTemplate);
50     }
51
52
53     /**
54      * Get the SVG representation of the loopTemplate.
55      *
56      * @param templateName The loopTemplate name
57      * @return The SVG representation in xml
58      */
59     public String getSvgRepresentation(String templateName) {
60         return loopTemplatesRepository.findById(templateName).orElse(new LoopTemplate()).getSvgRepresentation();
61     }
62
63     public List<String> getLoopTemplateNames() {
64         return loopTemplatesRepository.getAllLoopTemplateNames();
65     }
66
67     public List<LoopTemplate> getAllLoopTemplates() {
68         return loopTemplatesRepository.findAll();
69     }
70
71     public LoopTemplate getLoopTemplate(String name) {
72         return loopTemplatesRepository.findById(name).orElse(null);
73     }
74
75     public void deleteLoopTemplate(String name) {
76         loopTemplatesRepository.deleteById(name);
77     }
78 }