Abandoned Review because of git issues;
[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     public final Integer storeJsonStructure(final String jsonStructure) {
42         final JsonDataEntity jsonDataEntity = new JsonDataEntity(jsonStructure);
43         dataRepository.save(jsonDataEntity);
44         return jsonDataEntity.getId();
45     }
46
47     /**
48      * Return the JSON structure from the database using the object identifier.
49      *
50      * @param jsonStructureId the JSON object identifier.
51      * @return the JSON structure from the database as a string.
52      */
53     public final String getJsonById(final int jsonStructureId) {
54         return dataRepository.getOne(jsonStructureId).getJsonStructure();
55     }
56 }