Copyright update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / connection / ConnectionAdapterFactory.java
index 2ca3dec6043dc89d047f3ac3aa9992533c7e8c39..241d12984c087ab965b440aec5b44f7d1b175ad6 100644 (file)
@@ -1,20 +1,19 @@
-/**
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
+/*
+ * Copyright (c) 2013 Pantheon Technologies s.r.o. 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
  */
 
+
 package org.opendaylight.openflowjava.protocol.impl.connection;
 
 import io.netty.channel.socket.SocketChannel;
 
-import org.opendaylight.openflowjava.protocol.api.connection.ConnectionAdapter;
-
 /**
  * @author mirehak
- *
+ * @author michal.polkorab
  */
 public abstract class ConnectionAdapterFactory {
 
@@ -22,7 +21,7 @@ public abstract class ConnectionAdapterFactory {
      * @param ch
      * @return connection adapter tcp-implementation
      */
-    public static ConnectionAdapter createConnectionAdapter(SocketChannel ch) {
+    public static ConnectionFacade createConnectionFacade(SocketChannel ch) {
         ConnectionAdapterImpl connectionAdapter = new ConnectionAdapterImpl();
         connectionAdapter.setChannel(ch);
         return connectionAdapter;