2b4f1357de3c99a3ad97455c4b1177562964ba45
[cps.git] / cps / cps-ri / src / main / java / org / onap / cps / spi / impl / DataPersistencyServiceImpl.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 Nordix Foundation
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  *
16  *  SPDX-License-Identifier: Apache-2.0
17  *  ============LICENSE_END=========================================================
18  */
19
20 package org.onap.cps.spi.impl;
21
22 import org.onap.cps.spi.DataPersistencyService;
23 import org.onap.cps.spi.entities.JsonDataEntity;
24 import org.onap.cps.spi.repository.DataRepository;
25 import org.springframework.beans.factory.annotation.Autowired;
26 import org.springframework.stereotype.Component;
27
28
29 @Component
30 public class DataPersistencyServiceImpl implements DataPersistencyService {
31
32     @Autowired
33     private DataRepository dataRepository;
34
35     /**
36      * Method to store a JSON data structure in the database.
37      *
38      * @param jsonStructure the JSON data structure.
39      * @return the entity identifier.
40      */
41     @Override
42     public final Integer storeJsonStructure(final String jsonStructure) {
43         final JsonDataEntity jsonDataEntity = new JsonDataEntity(jsonStructure);
44         dataRepository.save(jsonDataEntity);
45         return jsonDataEntity.getId();
46     }
47
48     /*
49      * Return the JSON structure from the database using the object identifier.
50      *
51      * @param jsonStructureId the JSON object identifier.
52      *
53      * @return the JSON structure from the database as a string.
54      */
55     @Override
56     public final String getJsonById(final int jsonStructureId) {
57         return dataRepository.getOne(jsonStructureId).getJsonStructure();
58     }
59
60     /**
61      * Delete the JSON structure from the database using the object identifier.
62      *
63      * @param jsonStructureId the JSON object identifier.
64      */
65     @Override
66     public void deleteJsonById(int jsonStructureId) {
67         dataRepository.deleteById(jsonStructureId);
68     }
69 }