1013addbe1456f5631c6d56faf6c4f711fd58636
[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-2022 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.time.OffsetDateTime;
26 import java.util.Collection;
27 import java.util.stream.Collectors;
28 import lombok.AllArgsConstructor;
29 import org.onap.cps.api.CpsAdminService;
30 import org.onap.cps.api.CpsDataService;
31 import org.onap.cps.spi.CpsAdminPersistenceService;
32 import org.onap.cps.spi.model.Anchor;
33 import org.springframework.context.annotation.Lazy;
34 import org.springframework.stereotype.Component;
35
36 @Component("CpsAdminServiceImpl")
37 @AllArgsConstructor(onConstructor = @__(@Lazy))
38 public class CpsAdminServiceImpl implements CpsAdminService {
39
40     private final CpsAdminPersistenceService cpsAdminPersistenceService;
41     @Lazy
42     private final CpsDataService cpsDataService;
43
44     @Override
45     public void createDataspace(final String dataspaceName) {
46         cpsAdminPersistenceService.createDataspace(dataspaceName);
47     }
48
49     @Override
50     public void deleteDataspace(final String dataspaceName) {
51         cpsAdminPersistenceService.deleteDataspace(dataspaceName);
52     }
53
54     @Override
55     public void createAnchor(final String dataspaceName, final String schemaSetName, final String anchorName) {
56         cpsAdminPersistenceService.createAnchor(dataspaceName, schemaSetName, anchorName);
57     }
58
59     @Override
60     public Collection<Anchor> getAnchors(final String dataspaceName) {
61         return cpsAdminPersistenceService.getAnchors(dataspaceName);
62     }
63
64     @Override
65     public Collection<Anchor> getAnchors(final String dataspaceName, final String schemaSetName) {
66         return cpsAdminPersistenceService.getAnchors(dataspaceName, schemaSetName);
67     }
68
69     @Override
70     public Anchor getAnchor(final String dataspaceName, final String anchorName) {
71         return cpsAdminPersistenceService.getAnchor(dataspaceName, anchorName);
72     }
73
74     @Override
75     public void deleteAnchor(final String dataspaceName, final String anchorName) {
76         cpsDataService.deleteDataNodes(dataspaceName, anchorName, OffsetDateTime.now());
77         cpsAdminPersistenceService.deleteAnchor(dataspaceName, anchorName);
78     }
79
80     @Override
81     public Collection<String> queryAnchorNames(final String dataspaceName, final Collection<String> moduleNames) {
82         final Collection<Anchor> anchors = cpsAdminPersistenceService.queryAnchors(dataspaceName, moduleNames);
83         return anchors.stream().map(Anchor::getName).collect(Collectors.toList());
84     }
85 }