CPS-314: Delete Dataspace
[cps.git] / cps-service / src / main / java / org / onap / cps / api / impl / CpsAdminServiceImpl.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 Nordix Foundation
4  *  Modifications Copyright (C) 2020 Bell Canada.
5  *  Modifications Copyright (C) 2021 Pantheon.tech
6  *  ================================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
10  *
11  *        http://www.apache.org/licenses/LICENSE-2.0
12  *
13  *  Unless required by applicable law or agreed to in writing, software
14  *  distributed under the License is distributed on an "AS IS" BASIS,
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  *  See the License for the specific language governing permissions and
17  *  limitations under the License.
18  *
19  *  SPDX-License-Identifier: Apache-2.0
20  *  ============LICENSE_END=========================================================
21  */
22
23 package org.onap.cps.api.impl;
24
25 import java.util.Collection;
26 import java.util.stream.Collectors;
27 import org.onap.cps.api.CpsAdminService;
28 import org.onap.cps.spi.CpsAdminPersistenceService;
29 import org.onap.cps.spi.model.Anchor;
30 import org.springframework.beans.factory.annotation.Autowired;
31 import org.springframework.stereotype.Component;
32
33 @Component("CpsAdminServiceImpl")
34 public class CpsAdminServiceImpl implements CpsAdminService {
35
36     @Autowired
37     private CpsAdminPersistenceService cpsAdminPersistenceService;
38
39     @Override
40     public void createDataspace(final String dataspaceName) {
41         cpsAdminPersistenceService.createDataspace(dataspaceName);
42     }
43
44     @Override
45     public void deleteDataspace(final String dataspaceName) {
46         cpsAdminPersistenceService.deleteDataspace(dataspaceName);
47     }
48
49     @Override
50     public void createAnchor(final String dataspaceName, final String schemaSetName, final String anchorName) {
51         cpsAdminPersistenceService.createAnchor(dataspaceName, schemaSetName, anchorName);
52     }
53
54     @Override
55     public Collection<Anchor> getAnchors(final String dataspaceName) {
56         return cpsAdminPersistenceService.getAnchors(dataspaceName);
57     }
58
59     @Override
60     public Anchor getAnchor(final String dataspaceName, final String anchorName) {
61         return cpsAdminPersistenceService.getAnchor(dataspaceName, anchorName);
62     }
63
64     @Override
65     public void deleteAnchor(final String dataspaceName, final String anchorName) {
66         cpsAdminPersistenceService.deleteAnchor(dataspaceName, anchorName);
67     }
68
69     @Override
70     public Collection<String> queryAnchorNames(final String dataspaceName, final Collection<String> moduleNames) {
71         final Collection<Anchor> anchors = cpsAdminPersistenceService.queryAnchors(dataspaceName, moduleNames);
72         return anchors.stream().map(Anchor::getName).collect(Collectors.toList());
73     }
74 }