BUG-58: refactor to take advantage of netty
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / spi / BGPSessionProposal.java
index fa07dceabbc89ff497e77243591c2d761387ff59..ae4b0cb286e4ae118bd34df61695b996059d5025 100644 (file)
@@ -7,18 +7,16 @@
  */
 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 {
+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
         */
-       @Override
-       public abstract BGPSessionPreferences getProposal();
+       public BGPSessionPreferences getProposal();
 }