Improve unit-test coverage
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / db / mapper / VnfcResourceInfoMapper.java
1 /*
2  * Copyright 2016-2017, Nokia Corporation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
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  
17 package org.onap.vfc.nfvo.driver.vnfm.svnfm.db.mapper;
18
19 import java.util.List;
20
21 import org.apache.ibatis.annotations.Delete;
22 import org.apache.ibatis.annotations.Insert;
23 import org.apache.ibatis.annotations.Mapper;
24 import org.apache.ibatis.annotations.Result;
25 import org.apache.ibatis.annotations.Results;
26 import org.apache.ibatis.annotations.Select;
27 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nslcm.bo.entity.AffectedVnfc;
28
29 @Mapper
30 public interface VnfcResourceInfoMapper {
31         @Select("SELECT * FROM vnfm_vnfc_resource_info where vnf_instance_id = #{vnfInstanceId}")
32     @Results({
33         @Result(property = "vnfInstanceId", column = "vnf_instance_id"),
34         @Result(property = "vnfcInstanceId", column = "vnfc_instance_id"),
35         @Result(property = "vduId", column = "vdu_id"),
36         @Result(property = "vimid", column = "vim_id"),
37         @Result(property = "vmid", column = "vm_id"),
38         @Result(property = "changeType", column = "change_type")
39     })
40     List<AffectedVnfc> getAllByInstanceId(String vnfInstanceId);
41         
42         @Insert("INSERT INTO vnfm_vnfc_resource_info(vnf_instance_id,vnfc_instance_id,vdu_id,vim_id, vm_id, change_type) VALUES(#{vnfInstanceId}, #{vnfcInstanceId}, #{vduId}, #{vimid}, #{vmid}, #{changeType})")
43     void insert(AffectedVnfc resource);
44
45     @Delete("DELETE FROM vnfm_vnfc_resource_info WHERE vnf_instance_id = #{vnfcInstanceId}")
46     void deleteByInstanceId(String vnfcInstanceId);
47 }