Change vfc tag of vfc-svnfm
[vfc/nfvo/driver/vnfm/svnfm.git] / huawei / vnfmadapter / VnfmadapterService / service / src / main / java / org / onap / vfc / nfvo / vnfm / svnfm / vnfmadapter / service / adapter / inf / IDriver2MSBManager.java
1 /*
2  * Copyright 2016 Huawei Technologies Co., Ltd.
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.vnfm.svnfm.vnfmadapter.service.adapter.inf;
18
19 import java.util.Map;
20
21 import net.sf.json.JSONObject;
22
23 /**
24  *
25  * IDriver to MSB Manager Class.<br/>
26  * <p>
27  * </p>
28  *
29  * @author
30  * @version     VFC 1.0  Aug 29, 2016
31  */
32 public interface IDriver2MSBManager {
33
34     /**
35      *
36      * Method to Register Driver.<br/>
37      *
38      * @param paramsMap
39      * @param driverInfo
40      * @return
41      * @since  VFC 1.0
42      */
43     JSONObject registerDriver(Map<String, String> paramsMap, JSONObject driverInfo);
44
45     /**
46      *
47      * Method to Unregister Driver.<br/>
48      *
49      * @param paramsMap
50      * @return
51      * @since  VFC 1.0
52      */
53     JSONObject unregisterDriver(Map<String, String> paramsMap);
54
55 }