Added device transaction log cli
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-impl / src / main / java / org / opendaylight / ovsdb / hwvtepsouthbound / events / ClientConnected.java
1 /*
2  * Copyright (c) 2017 Ericsson India Global Services Pvt Ltd. 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 package org.opendaylight.ovsdb.hwvtepsouthbound.events;
9
10 public class ClientConnected {
11
12     private final int port;
13
14     public ClientConnected(int port) {
15         this.port = port;
16     }
17
18     @Override
19     public String toString() {
20         return "ClientConnected{" +
21                 "port=" + port +
22                 '}';
23     }
24 }