blob: ff33bbf44873d9a6d8b241575ccf7c8b24232d7e [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 */
tom9710fb42014-09-29 11:35:28 -070019package org.onlab.onos.cli;
20
21import org.apache.karaf.shell.commands.Argument;
22import org.apache.karaf.shell.commands.Command;
23import org.onlab.onos.cluster.ClusterAdminService;
24import org.onlab.onos.cluster.NodeId;
25
26/**
27 * Removes a controller cluster node.
28 */
29@Command(scope = "onos", name = "remove-node",
30 description = "Removes a new controller cluster node")
31public class NodeRemoveCommand extends AbstractShellCommand {
32
33 @Argument(index = 0, name = "nodeId", description = "Node ID",
34 required = true, multiValued = false)
35 String nodeId = null;
36
37 @Override
38 protected void execute() {
39 ClusterAdminService service = get(ClusterAdminService.class);
40 service.removeNode(new NodeId(nodeId));
41 }
42
43}