Added Yang code generation for Multipart messages
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / connection / MessageConsumer.java
index 3f1bf2d8250df11dbf1d5b71f03965be508c65ea..3243a82f44c8ab5e0c9eebbf692ea4d6691ae956 100644 (file)
@@ -1,15 +1,7 @@
-/**
- * Copyright (c) 2013 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
- */
+/* Copyright (C)2013 Pantheon Technologies, s.r.o. All rights reserved. */
 
 package org.opendaylight.openflowjava.protocol.impl.connection;
 
-import io.netty.channel.Channel;
-
 import org.opendaylight.yangtools.yang.binding.DataObject;
 
 /**
@@ -22,9 +14,5 @@ public interface MessageConsumer {
      * @param message to process
      */
     public void consume(DataObject message);
-    
-    /**
-     * @param channel sets processing channel
-     */
-    public void setChannel(Channel channel);
+
 }