Bug 6554 Fix rejecting connections
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / device / DeviceContext.java
index 8114ff0dbcff7f57352650bfe3e3304c5cfdd9b4..676c21c780ba112cc69264d4d2b192c0b30d58e1 100644 (file)
@@ -23,7 +23,6 @@ import org.opendaylight.openflowplugin.api.openflow.statistics.ofpspecific.Messa
 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.MultipartReply;
 
 /**
- * <p>
  * The central entity of OFP is the Device Context, which encapsulate the logical state of a switch
  * as seen by the controller. Each OpenFlow session is tracked by a Connection Context.
  * These attach to a particular Device Context in such a way, that there is at most one primary
@@ -36,7 +35,6 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731
  * which is enforced by keeping a cap on the number of outstanding requests a particular Request
  * Context can have at any point in time. Should this quota be exceeded, any further attempt to make
  * a request to the switch will fail immediately, with proper error indication.
- * </p>
  */
 public interface DeviceContext extends
         OFPContext,
@@ -50,11 +48,6 @@ public interface DeviceContext extends
      */
     void shutdownConnection();
 
-    /**
-     * Initial submit transaction
-     */
-    void initialSubmitTransaction();
-
     /**
      * Method add auxiliary connection contexts to this context representing single device connection.
      * @param connectionContext new connection context
@@ -88,7 +81,7 @@ public interface DeviceContext extends
     /**
      * @return current devices auxiliary connection contexts
      */
-    ConnectionContext getAuxiliaryConnectiobContexts(BigInteger cookie);
+    ConnectionContext getAuxiliaryConnectionContexts(BigInteger cookie);
 
 
     /**
@@ -137,5 +130,7 @@ public interface DeviceContext extends
     void putLifecycleServiceIntoTxChainManager(LifecycleService lifecycleService);
 
     void replaceConnectionContext(ConnectionContext connectionContext);
+
+    boolean isSkipTableFeatures();
 }