Fixed netty & checkstyle failures
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / core / ConnectionInitializer.java
1 /*
2  * Copyright (c) 2015 Pantheon Technologies s.r.o. and others. All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.openflowjava.protocol.impl.core;
10
11 /**
12  * @author martin.uhlir
13  *
14  */
15 public interface ConnectionInitializer {
16
17     /**
18      * Initiates connection towards device
19      * @param host - host IP
20      * @param port - port number
21      */
22     void initiateConnection(String host, int port);
23
24 }