blob: c2a6ee04248de96502247c3c5c83c7201e8c3643 [file] [log] [blame]
Jeff Groom34c28ce2018-04-26 19:42:18 -06001/*
2 * Copyright 2016-present Open Networking Foundation
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 */
16package org.onosproject.drivers.ciena.waveserverai.netconf;
17
18import java.util.concurrent.atomic.AtomicInteger;
19
20import org.onosproject.netconf.NetconfDeviceInfo;
21import org.onosproject.netconf.NetconfException;
22import org.onosproject.netconf.NetconfSessionAdapter;
23import org.slf4j.Logger;
24import org.slf4j.LoggerFactory;
25
26public class MockNetconfSessionWaveserverAi extends NetconfSessionAdapter {
27 private static final Logger log = LoggerFactory
28 .getLogger(MockNetconfSessionWaveserverAi.class);
29
30 private NetconfDeviceInfo deviceInfo;
31
32 private final AtomicInteger messageIdInteger = new AtomicInteger(0);
33
34 public MockNetconfSessionWaveserverAi(NetconfDeviceInfo deviceInfo) throws NetconfException {
35 this.deviceInfo = deviceInfo;
36 }
37}