atomic-storage: remove type dependency at segment level I/O
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / src / main / java / org / opendaylight / controller / remote / rpc / registry / mbeans / RemoteRpcRegistryMXBean.java
index ddd33336ed094ffaa2e77b000b8c912eb19517ce..dc4ee8fd8635818c4d407a1d47a405b31145f5f8 100644 (file)
@@ -1,13 +1,18 @@
+/*
+ * Copyright (c) 2015, 2017 Cisco Systems, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
 package org.opendaylight.controller.remote.rpc.registry.mbeans;
 
-
 import java.util.Map;
 import java.util.Set;
 
 /**
- * JMX bean to check remote rpc registry
+ * JMX bean to check remote rpc registry.
  */
-
 public interface RemoteRpcRegistryMXBean {
 
     Set<String> getGlobalRpc();
@@ -16,7 +21,7 @@ public interface RemoteRpcRegistryMXBean {
 
     Set<String> getLocalRegisteredRoutedRpc();
 
-    Map<String,String> findRpcByName(String name);
+    Map<String, String> findRpcByName(String name);
 
-    Map<String,String> findRpcByRoute(String route);
+    Map<String, String> findRpcByRoute(String route);
 }