Teach sal-remoterpc-connector to route actions
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / src / main / java / org / opendaylight / controller / remote / rpc / registry / mbeans / RemoteRpcRegistryMXBean.java
1 /*
2  * Copyright (c) 2015, 2017 Cisco Systems, Inc. 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.remote.rpc.registry.mbeans;
9
10 import java.util.Map;
11 import java.util.Set;
12
13 /**
14  * JMX bean to check remote rpc registry.
15  */
16 public interface RemoteRpcRegistryMXBean {
17
18     Set<String> getGlobalRpc();
19
20     String getBucketVersions();
21
22     Set<String> getLocalRegisteredRoutedRpc();
23
24     Map<String, String> findRpcByName(String name);
25
26     Map<String, String> findRpcByRoute(String route);
27 }