Fixup checkstyle
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / src / main / java / org / opendaylight / controller / remote / rpc / registry / mbeans / RemoteActionRegistryMXBean.java
1 /*
2  * Copyright (c) 2019 Nordix Foundation.  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 public interface RemoteActionRegistryMXBean {
14
15     String getBucketVersions();
16
17     Set<String> getLocalRegisteredAction();
18
19     Map<String, String> findActionByName(String name);
20
21     Map<String, String> findActionByRoute(String route);
22 }