Remove the dependency-cycle between beans
[cps.git] / cps-service / src / main / java / org / onap / cps / api / impl / CpsDataspaceServiceImpl.java
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2020-2023 Nordix Foundation
4  *  Modifications Copyright (C) 2020-2022 Bell Canada.
5  *  Modifications Copyright (C) 2021 Pantheon.tech
6  *  Modifications Copyright (C) 2022 TechMahindra Ltd.
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  *
20  *  SPDX-License-Identifier: Apache-2.0
21  *  ============LICENSE_END=========================================================
22  */
23
24 package org.onap.cps.api.impl;
25
26 import java.util.Collection;
27 import lombok.RequiredArgsConstructor;
28 import org.onap.cps.api.CpsDataspaceService;
29 import org.onap.cps.spi.CpsAdminPersistenceService;
30 import org.onap.cps.spi.model.Dataspace;
31 import org.onap.cps.spi.utils.CpsValidator;
32 import org.springframework.stereotype.Service;
33
34 @Service
35 @RequiredArgsConstructor
36 public class CpsDataspaceServiceImpl implements CpsDataspaceService {
37
38     private final CpsAdminPersistenceService cpsAdminPersistenceService;
39     private final CpsValidator cpsValidator;
40
41     @Override
42     public void createDataspace(final String dataspaceName) {
43         cpsValidator.validateNameCharacters(dataspaceName);
44         cpsAdminPersistenceService.createDataspace(dataspaceName);
45     }
46
47     @Override
48     public void deleteDataspace(final String dataspaceName) {
49         cpsValidator.validateNameCharacters(dataspaceName);
50         cpsAdminPersistenceService.deleteDataspace(dataspaceName);
51     }
52
53     @Override
54     public Dataspace getDataspace(final String dataspaceName) {
55         cpsValidator.validateNameCharacters(dataspaceName);
56         return cpsAdminPersistenceService.getDataspace(dataspaceName);
57     }
58
59     @Override
60     public Collection<Dataspace> getAllDataspaces() {
61         return cpsAdminPersistenceService.getAllDataspaces();
62     }
63
64 }