blob: 6811fd861608433df6f98d939cff16995f3e0a87 [file] [log] [blame]
Andrea Campanella8b1cb672016-01-25 13:58:58 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
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 */
22public interface NetconfSessionFactory {
23
Andrea Campanella950310c2016-02-12 18:14:38 -080024 /**
25 * Creates a new NETCONF session for the specified device.
26 * @param netconfDeviceInfo information of the device to create the session for.
27 * @return Instance of NetconfSession.
28 * @throws NetconfException when problems arise establishing the connection.
29 */
Andrea Campanella8b1cb672016-01-25 13:58:58 -080030 NetconfSession createNetconfSession(NetconfDeviceInfo netconfDeviceInfo)
31 throws NetconfException;
32}