package org.opendaylight.controller.remote.rpc.registry.mbeans; import java.util.Map; import java.util.Set; /** * JMX bean to check remote rpc registry */ public interface RemoteRpcRegistryMXBean { Set getGlobalRpc(); String getBucketVersions(); Set getLocalRegisteredRoutedRpc(); Map findRpcByName(String name); Map findRpcByRoute(String route); }