blob: ec335b01490ce3f4eb31911585319ef72593c1b1 [file] [log] [blame]
Thomas Vachuska811ea2b2020-02-11 10:20:10 -08001/*
2 * Copyright 2014-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.cli.net;
17
18import org.apache.karaf.shell.api.action.Argument;
19import org.apache.karaf.shell.api.action.Command;
20import org.apache.karaf.shell.api.action.Completion;
21import org.apache.karaf.shell.api.action.lifecycle.Service;
22import org.onosproject.cli.AbstractShellCommand;
23import org.onosproject.net.DeviceId;
24import org.onosproject.net.device.DeviceAdminService;
25
26/**
27 * Removes an infrastructure device.
28 */
29@Service
30@Command(scope = "onos", name = "device-ports-remove",
31 description = "Removes ports of an infrastructure device")
32public class DevicePortsRemoveCommand extends AbstractShellCommand {
33
34 @Argument(index = 0, name = "uri", description = "Device ID",
35 required = true, multiValued = false)
36 @Completion(DeviceIdCompleter.class)
37 String uri = null;
38
39 @Override
40 protected void doExecute() {
41 try {
42 get(DeviceAdminService.class).removeDevicePorts(DeviceId.deviceId(uri));
43 } catch (IllegalStateException e) {
44 print("There was some issue in removing device ports, please try again");
45 }
46 }
47
48}