blob: f63932cea14398cc5a2f211485ced1efc62f5c99 [file] [log] [blame]
gyewan.aneeb4cf52018-12-24 11:47:57 +09001/*
sdn5d65d112019-01-11 18:45:26 +09002 * Copyright 2019-present Open Networking Foundation
gyewan.aneeb4cf52018-12-24 11:47:57 +09003 *
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.drivers.cisco.rest;
18
19import org.onosproject.net.device.PortDescription;
20import org.onosproject.net.driver.AbstractHandlerBehaviour;
21
22import java.util.List;
23
24/**
25 * Discovers the ports from a Cisco Nexus 9K REST device.
26 */
27@Deprecated
28public class PortDiscoveryCiscoImpl extends AbstractHandlerBehaviour {
29
30 @Deprecated
31 public List<PortDescription> getPorts() {
32 return new DeviceDescriptionDiscoveryCisco9kImpl().discoverPortDetails();
33 }
34}