e41cbe1e3a29bef6f4cb35d1e91a1997839395b0
[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 org.onap.svnfm.simulator.services.SvnfmService;
24 import org.onap.vnfm.v1.model.CreateVnfRequest;
25 import org.onap.vnfm.v1.model.InlineResponse201;
26 import org.springframework.beans.factory.annotation.Autowired;
27 import org.springframework.cache.annotation.Cacheable;
28 import org.springframework.stereotype.Repository;
29
30 /**
31  * 
32  * @author Lathishbabu Ganesan (lathishbabu.ganesan@est.tech)
33  * @author Ronan Kenny (ronan.kenny@est.tech)
34  */
35 @Repository
36 public class VnfmCacheRepository {
37
38     @Autowired
39     private SvnfmService svnfmService;
40
41     @Cacheable(value = "inlineResponse201", key = "#createVnfRequest.vnfdId")
42     public InlineResponse201 createVnf(final CreateVnfRequest createVnfRequest) {
43         return svnfmService.createVnf(createVnfRequest);
44     }
45
46     @Cacheable(value = "inlineResponse201", key = "#id")
47     public InlineResponse201 getVnf(final String id) {
48         return svnfmService.getVnf(id);
49     }
50
51     /**
52      * @param vnfId
53      * @return
54      */
55     public InlineResponse201 deleteVnf(String vnfId) {
56         // TODO
57         return null;
58     }
59 }