blob: e23b6c2d1fcc78176cbb650a61ef8f0698f7d1d8 [file] [log] [blame]
Thomas Vachuska33601602014-11-19 03:32:15 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Thomas Vachuska33601602014-11-19 03:32:15 -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 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.cli.net;
Thomas Vachuska33601602014-11-19 03:32:15 -080017
18import org.apache.karaf.shell.commands.Argument;
19import org.apache.karaf.shell.commands.Command;
Brian O'Connorabafb502014-12-02 22:26:20 -080020import org.onosproject.cli.AbstractShellCommand;
21import org.onosproject.net.HostId;
22import org.onosproject.net.host.HostAdminService;
Thomas Vachuska33601602014-11-19 03:32:15 -080023
24/**
25 * Removes an end-station host.
26 */
27@Command(scope = "onos", name = "host-remove",
28 description = "Removes an end-station host")
29public class HostRemoveCommand extends AbstractShellCommand {
30
31 @Argument(index = 0, name = "id", description = "Host ID",
32 required = true, multiValued = false)
33 String id = null;
34
35 @Override
36 protected void execute() {
37 get(HostAdminService.class).removeHost(HostId.hostId(id));
38 }
39
40}