Bug 5566: BGP listener TCP MD5 support is not working
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / spi / BGPSessionProposal.java
index aea5cbda4f08b6f99b187a93fb2401235c96a15f..23b8fae274f9c5abf356172f99cd26be3eb4f42d 100644 (file)
@@ -11,11 +11,10 @@ package org.opendaylight.protocol.bgp.rib.impl.spi;
  * Interface that provides the initial acceptable session characteristics with which the session should be started.
  */
 public interface BGPSessionProposal {
-       /**
-        * Returns BGPSessionPreferences for this IP address.
-        * 
-        * @param address serves as constraint, the implementation can also take time into consideration
-        * @return BGPSessionPreferences with acceptable session characteristics
-        */
-       BGPSessionPreferences getProposal();
+    /**
+     * Returns BGPSessionPreferences for this IP address.
+     *
+     * @return BGPSessionPreferences with acceptable session characteristics
+     */
+    BGPSessionPreferences getProposal();
 }