Fix checkstyle
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / md / core / HandshakeListener.java
index 5140977e4feadaa388c7f32bd68c134f9a5b5f8d..42fa37e9e6a2f40ea71371bb5accb6f64df6d354 100644 (file)
@@ -1,4 +1,4 @@
-/**
+/*
  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
  *
  * This program and the accompanying materials are made available under the
@@ -10,13 +10,10 @@ package org.opendaylight.openflowplugin.api.openflow.md.core;
 import org.opendaylight.openflowplugin.api.openflow.connection.HandshakeContext;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.GetFeaturesOutput;
 
-/**
- * @author mirehak
- *
- */
 public interface HandshakeListener {
 
     /**
+     * Handshake successfull.
      * @param featureOutput obtained
      * @param version negotiated
      */
@@ -29,7 +26,8 @@ public interface HandshakeListener {
     void onHandshakeFailure();
 
     /**
-     * @param handshakeContext
+     * Setter.
+     * @param handshakeContext context
      */
     void setHandshakeContext(HandshakeContext handshakeContext);
 }