blob: 80dd25d7454d5e4b8b408f985426a005dd4b2cf4 [file] [log] [blame]
Ray Milkeyd84f89b2018-08-17 14:54:17 -07001/*
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.cli2;
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.cluster.ClusterAdminService;
23import org.onosproject.cluster.NodeId;
24
25/**
26 * Removes a controller cluster node.
27 */
28@Service
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 @Completion(NodeIdCompleter.class)
36 String nodeId = null;
37
38 @Override
39 protected void doExecute() {
40 ClusterAdminService service = get(ClusterAdminService.class);
41 service.removeNode(new NodeId(nodeId));
42 }
43
44}