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 fa07dceabbc89ff497e77243591c2d761387ff59..23b8fae274f9c5abf356172f99cd26be3eb4f42d 100644 (file)
@@ -7,18 +7,14 @@
  */
 package org.opendaylight.protocol.bgp.rib.impl.spi;
 
-import org.opendaylight.protocol.framework.SessionProposal;
-
 /**
  * Interface that provides the initial acceptable session characteristics with which the session should be started.
  */
-public abstract class BGPSessionProposal implements SessionProposal {
-       /**
-        * 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
-        */
-       @Override
-       public abstract BGPSessionPreferences getProposal();
+public interface BGPSessionProposal {
+    /**
+     * Returns BGPSessionPreferences for this IP address.
+     *
+     * @return BGPSessionPreferences with acceptable session characteristics
+     */
+    BGPSessionPreferences getProposal();
 }