VNFM simulator implementation for instantiate flow
[so.git] / vnfm-simulator / vnfm-service / src / main / java / org / onap / svnfm / simulator / repository / VnfmCacheRepository.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 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  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.svnfm.simulator.repository;
22
23 import java.util.List;
24 import org.onap.so.adapters.vnfmadapter.extclients.vnfm.model.CreateVnfRequest;
25 import org.onap.so.adapters.vnfmadapter.extclients.vnfm.model.InlineResponse201;
26 import org.onap.so.adapters.vnfmadapter.extclients.vnfm.model.InlineResponse201.InstantiationStateEnum;
27 import org.onap.so.adapters.vnfmadapter.extclients.vnfm.model.InlineResponse201InstantiatedVnfInfo;
28 import org.onap.so.adapters.vnfmadapter.extclients.vnfm.model.InlineResponse201VimConnectionInfo;
29 import org.onap.svnfm.simulator.constants.Constant;
30 import org.onap.svnfm.simulator.services.SvnfmService;
31 import org.springframework.beans.factory.annotation.Autowired;
32 import org.springframework.cache.annotation.CachePut;
33 import org.springframework.cache.annotation.Cacheable;
34 import org.springframework.stereotype.Repository;
35
36 /**
37  *
38  * @author Lathishbabu Ganesan (lathishbabu.ganesan@est.tech)
39  * @author Ronan Kenny (ronan.kenny@est.tech)
40  */
41 @Repository
42 public class VnfmCacheRepository {
43
44     @Autowired
45     private SvnfmService svnfmService;
46
47     @Cacheable(value = Constant.IN_LINE_RESPONSE_201_CACHE, key = "#id")
48     public InlineResponse201 createVnf(final CreateVnfRequest createVnfRequest, final String id) {
49         return svnfmService.createVnf(createVnfRequest, id);
50     }
51
52     @CachePut(value = Constant.IN_LINE_RESPONSE_201_CACHE, key = "#id")
53     public InlineResponse201 updateVnf(final InlineResponse201InstantiatedVnfInfo instantiatedVnfInfo, final String id,
54             final List<InlineResponse201VimConnectionInfo> vimConnectionInfo) {
55         final InlineResponse201 vnf = getVnf(id);
56         vnf.setInstantiatedVnfInfo(instantiatedVnfInfo);
57         vnf.setInstantiationState(InstantiationStateEnum.INSTANTIATED);
58         vnf.setVimConnectionInfo(vimConnectionInfo);
59         return vnf;
60     }
61
62     public InlineResponse201 getVnf(final String id) {
63         return svnfmService.getVnf(id);
64     }
65
66     /**
67      * @param vnfId
68      * @return
69      */
70     public InlineResponse201 deleteVnf(final String vnfId) {
71         // TODO
72         return null;
73     }
74 }