blob: e689a4ddff1cda861f13e5c982c1476352a42ab3 [file] [log] [blame]
Andrea Campanellad8d92db2016-01-14 16:24:41 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Andrea Campanellad8d92db2016-01-14 16:24:41 -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 */
16package org.onosproject.cli.net;
17
18import org.apache.karaf.shell.commands.Argument;
19import org.apache.karaf.shell.commands.Command;
20import org.onosproject.cli.AbstractShellCommand;
21import org.onosproject.net.DeviceId;
22import org.onosproject.net.behaviour.PortDiscovery;
23import org.onosproject.net.driver.DriverHandler;
24import org.onosproject.net.driver.DriverService;
25
26/**
27 * Command that gets the configuration of the specified type from the specified
28 * device. If configuration cannot be retrieved it prints an error string.
29 *
30 * This is a temporary development tool for use until yang integration is complete.
31 * This uses a not properly specified behavior. DO NOT USE AS AN EXAMPLE.
Yuta HIGUCHI57ba1e12017-04-26 15:51:47 -070032 *
33 * @deprecated in 1.10.0
Andrea Campanellad8d92db2016-01-14 16:24:41 -080034 */
Yuta HIGUCHI57ba1e12017-04-26 15:51:47 -070035@Deprecated
Andrea Campanellad8d92db2016-01-14 16:24:41 -080036@Command(scope = "onos", name = "device-ports",
Yuta HIGUCHI57ba1e12017-04-26 15:51:47 -070037 description = "[Deprecated]Gets the ports of the specified device.")
Andrea Campanellad8d92db2016-01-14 16:24:41 -080038public class DevicePortGetterCommand extends AbstractShellCommand {
39
40 @Argument(index = 0, name = "uri", description = "Device ID",
41 required = true, multiValued = false)
42 String uri = null;
43 private DeviceId deviceId;
44
45 @Override
46 protected void execute() {
Yuta HIGUCHI57ba1e12017-04-26 15:51:47 -070047 print("[WARN] This command was marked deprecated in 1.10.0");
Andrea Campanellad8d92db2016-01-14 16:24:41 -080048 DriverService service = get(DriverService.class);
49 deviceId = DeviceId.deviceId(uri);
50 DriverHandler h = service.createHandler(deviceId);
51 PortDiscovery portConfig = h.behaviour(PortDiscovery.class);
52 print(portConfig.getPorts().toString());
53 }
54
Aaron Kruglikov17b4c852016-01-15 16:37:04 -080055}