blob: a0431d65938a19114898347365cba616d1cef711 [file] [log] [blame]
Thomas Vachuska7d693f52014-10-21 19:17:57 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Thomas Vachuska7d693f52014-10-21 19:17:57 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * 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
Thomas Vachuska7d693f52014-10-21 19:17:57 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * 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.
Thomas Vachuska7d693f52014-10-21 19:17:57 -070015 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.cli;
tom9710fb42014-09-29 11:35:28 -070017
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.cluster.ClusterAdminService;
21import org.onosproject.cluster.NodeId;
tom9710fb42014-09-29 11:35:28 -070022
23/**
24 * Removes a controller cluster node.
25 */
26@Command(scope = "onos", name = "remove-node",
27 description = "Removes a new controller cluster node")
28public class NodeRemoveCommand extends AbstractShellCommand {
29
30 @Argument(index = 0, name = "nodeId", description = "Node ID",
31 required = true, multiValued = false)
32 String nodeId = null;
33
34 @Override
35 protected void execute() {
36 ClusterAdminService service = get(ClusterAdminService.class);
37 service.removeNode(new NodeId(nodeId));
38 }
39
40}