Introduce cli commands for cluster-admin
[controller.git] / opendaylight / md-sal / sal-cluster-admin-karaf-cli / src / main / java / org / opendaylight / controller / cluster / datastore / admin / command / RemoveAllShardReplicasCommand.java
1 /*
2  * Copyright (c) 2021 PANTHEON.tech, s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.cluster.datastore.admin.command;
9
10 import com.google.common.util.concurrent.ListenableFuture;
11 import org.apache.karaf.shell.api.action.Argument;
12 import org.apache.karaf.shell.api.action.Command;
13 import org.apache.karaf.shell.api.action.lifecycle.Reference;
14 import org.apache.karaf.shell.api.action.lifecycle.Service;
15 import org.opendaylight.mdsal.binding.api.RpcConsumerRegistry;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.cluster.admin.rev151013.ClusterAdminService;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.cluster.admin.rev151013.RemoveAllShardReplicasInputBuilder;
18 import org.opendaylight.yangtools.yang.common.RpcResult;
19
20 @Service
21 @Command(scope = "cluster-admin", name = "remove-all-shard-replicas",
22         description = "Run a remove-all-shard-replicas test")
23 public class RemoveAllShardReplicasCommand extends AbstractRpcAction {
24     @Reference
25     private RpcConsumerRegistry rpcConsumerRegistry;
26     @Argument(index = 0, name = "member-name",required = true)
27     private String memberName;
28
29     @Override
30     protected ListenableFuture<? extends RpcResult<?>> invokeRpc() {
31         return rpcConsumerRegistry.getRpcService(ClusterAdminService.class)
32                 .removeAllShardReplicas(new RemoveAllShardReplicasInputBuilder()
33                         .setMemberName(memberName)
34                         .build());
35     }
36 }