2 * Copyright © 2017-2018 AT&T Intellectual Property.
\r
4 * Licensed under the Apache License, Version 2.0 (the "License");
\r
5 * you may not use this file except in compliance with the License.
\r
6 * You may obtain a copy of the License at
\r
8 * http://www.apache.org/licenses/LICENSE-2.0
\r
10 * Unless required by applicable law or agreed to in writing, software
\r
11 * distributed under the License is distributed on an "AS IS" BASIS,
\r
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
\r
13 * See the License for the specific language governing permissions and
\r
14 * limitations under the License.
\r
17 package org.onap.ccsdk.apps.controllerblueprints.service.rs;
\r
19 import org.onap.ccsdk.apps.controllerblueprints.core.BluePrintException;
\r
20 import org.onap.ccsdk.apps.controllerblueprints.service.ResourceDictionaryService;
\r
21 import org.onap.ccsdk.apps.controllerblueprints.service.domain.ResourceDictionary;
\r
22 import org.springframework.stereotype.Component;
\r
23 import org.springframework.stereotype.Service;
\r
24 import org.springframework.web.bind.annotation.*;
\r
26 import java.util.List;
\r
32 @RequestMapping(value = "/api/v1/dictionary")
\r
33 public class ResourceDictionaryRest {
\r
36 private ResourceDictionaryService resourceDictionaryService;
\r
39 * This is a DataDictionaryRestImpl, used to save and get the Resource Mapping stored in database
\r
41 * @param dataDictionaryService Data Dictionary Service
\r
43 public ResourceDictionaryRest(ResourceDictionaryService dataDictionaryService) {
\r
44 this.resourceDictionaryService = dataDictionaryService;
\r
47 @PostMapping(path = "/")
\r
48 public @ResponseBody
\r
49 ResourceDictionary saveResourceDictionary(@RequestBody ResourceDictionary dataDictionary)
\r
50 throws BluePrintException {
\r
52 return resourceDictionaryService.saveResourceDictionary(dataDictionary);
\r
53 } catch (Exception e) {
\r
54 throw new BluePrintException(4100, e.getMessage(), e);
\r
58 @DeleteMapping(path = "/{name}")
\r
59 public void deleteResourceDictionaryByName(@PathVariable(value = "name") String name) throws BluePrintException {
\r
61 resourceDictionaryService.deleteResourceDictionary(name);
\r
62 } catch (Exception e) {
\r
63 throw new BluePrintException(4400, e.getMessage(), e);
\r
67 @GetMapping(path = "/{name}")
\r
68 public @ResponseBody
\r
69 ResourceDictionary getResourceDictionaryByName(@PathVariable(value = "name") String name) throws BluePrintException {
\r
71 return resourceDictionaryService.getResourceDictionaryByName(name);
\r
72 } catch (Exception e) {
\r
73 throw new BluePrintException(4001, e.getMessage(), e);
\r
77 @PostMapping(path = "/by-names")
\r
78 public @ResponseBody
\r
79 List<ResourceDictionary> searchResourceDictionaryByNames(@RequestBody List<String> names)
\r
80 throws BluePrintException {
\r
82 return resourceDictionaryService.searchResourceDictionaryByNames(names);
\r
83 } catch (Exception e) {
\r
84 throw new BluePrintException(4002, e.getMessage(), e);
\r
88 @GetMapping(path = "/search/{tags}")
\r
89 public @ResponseBody
\r
90 List<ResourceDictionary> searchResourceDictionaryByTags(@PathVariable(value = "tags") String tags) throws BluePrintException {
\r
92 return resourceDictionaryService.searchResourceDictionaryByTags(tags);
\r
93 } catch (Exception e) {
\r
94 throw new BluePrintException(4003, e.getMessage(), e);
\r