Merge "Expose Prometheus metrics for monitoring"
[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 org.onap.cps.api.CpsAdminService;
27 import org.onap.cps.spi.CpsAdminPersistenceService;
28 import org.onap.cps.spi.model.Anchor;
29 import org.springframework.beans.factory.annotation.Autowired;
30 import org.springframework.stereotype.Component;
31
32 @Component("CpsAdminServiceImpl")
33 public class CpsAdminServiceImpl implements CpsAdminService {
34
35     @Autowired
36     private CpsAdminPersistenceService cpsAdminPersistenceService;
37
38     @Override
39     public void createDataspace(final String dataspaceName) {
40         cpsAdminPersistenceService.createDataspace(dataspaceName);
41     }
42
43     @Override
44     public void createAnchor(final String dataspaceName, final String schemaSetName, final String anchorName) {
45         cpsAdminPersistenceService.createAnchor(dataspaceName, schemaSetName, anchorName);
46     }
47
48     @Override
49     public Collection<Anchor> getAnchors(final String dataspaceName) {
50         return cpsAdminPersistenceService.getAnchors(dataspaceName);
51     }
52
53     @Override
54     public Anchor getAnchor(final String dataspaceName, final String anchorName) {
55         return cpsAdminPersistenceService.getAnchor(dataspaceName, anchorName);
56     }
57
58     @Override
59     public void deleteAnchor(final String dataspaceName, final String anchorName) {
60         cpsAdminPersistenceService.deleteAnchor(dataspaceName, anchorName);
61     }
62 }