blob: 7ca48703f618c3edf232e31862e00d0e3b35c9c4 [file] [log] [blame]
Thomas Vachuska7d693f52014-10-21 19:17:57 -07001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
tomc290a122014-09-08 14:27:13 -070019package org.onlab.onos.cli.net;
20
21import org.apache.karaf.shell.commands.Argument;
22import org.apache.karaf.shell.commands.Command;
23import org.onlab.onos.cli.AbstractShellCommand;
24import org.onlab.onos.net.DeviceId;
25import org.onlab.onos.net.device.DeviceAdminService;
26
27/**
28 * Removes an infrastructure device.
29 */
30@Command(scope = "onos", name = "device-remove",
31 description = "Removes an infrastructure device")
32public class DeviceRemoveCommand extends AbstractShellCommand {
33
34 @Argument(index = 0, name = "uri", description = "Device ID",
35 required = true, multiValued = false)
36 String uri = null;
37
38 @Override
tom0872a172014-09-23 11:24:26 -070039 protected void execute() {
tomcaf3bf72014-09-23 13:20:53 -070040 get(DeviceAdminService.class).removeDevice(DeviceId.deviceId(uri));
tomc290a122014-09-08 14:27:13 -070041 }
42
43}