blob: 95f32a40035214e58db5930ec9a2e7a50231f67e [file] [log] [blame]
Andrea Campanella8b1cb672016-01-25 13:58:58 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Andrea Campanella8b1cb672016-01-25 13:58:58 -08003 *
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
17package org.onosproject.netconf;
18
19/**
20 * Abstract interface for the creation of a NETCONF session.
21 */
Yuta HIGUCHI2ee4fba2018-06-12 16:21:06 -070022@FunctionalInterface
Andrea Campanella8b1cb672016-01-25 13:58:58 -080023public interface NetconfSessionFactory {
24
Andrea Campanella950310c2016-02-12 18:14:38 -080025 /**
26 * Creates a new NETCONF session for the specified device.
27 * @param netconfDeviceInfo information of the device to create the session for.
gyewan.an91d7e7e2019-01-17 15:12:48 +090028 * @param netconfController netconf controller object
Andrea Campanella950310c2016-02-12 18:14:38 -080029 * @return Instance of NetconfSession.
30 * @throws NetconfException when problems arise establishing the connection.
31 */
gyewan.an91d7e7e2019-01-17 15:12:48 +090032 NetconfSession createNetconfSession(NetconfDeviceInfo netconfDeviceInfo,
33 NetconfController netconfController)
Andrea Campanella8b1cb672016-01-25 13:58:58 -080034 throws NetconfException;
35}