Fix checkstyle warnings
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / md / core / NotificationQueueWrapper.java
index 81d740fea96c6320730b575e73a45ec83c60489d..6d50a22859dd6276d288dfbe5661749b8036e3a6 100644 (file)
@@ -1,6 +1,6 @@
-/**
+/*
  * Copyright (c) 2014 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
@@ -12,24 +12,22 @@ import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731
 import org.opendaylight.yangtools.yang.binding.DataContainer;
 import org.opendaylight.yangtools.yang.binding.Notification;
 
-/**
- * 
- */
 public class NotificationQueueWrapper implements OfHeader {
-    
+
     private final Notification notification;
     private final Short version;
     private Long xid = -1L;
 
-    
+
     /**
-     * @param notification
-     * @param version 
+     * Notofication queue wrapper.
+     * @param notification notofication
+     * @param version version
      */
     public NotificationQueueWrapper(final Notification notification, final Short version) {
         Preconditions.checkArgument(notification != null, "wrapped notification must not be null");
         Preconditions.checkArgument(version != null, "message version of wrapped notification must not be null");
-        this.notification = notification; 
+        this.notification = notification;
         this.version = version;
     }
 
@@ -49,13 +47,14 @@ public class NotificationQueueWrapper implements OfHeader {
     }
 
     /**
-     * @return the notification
+     * return the notification.
      */
     public Notification getNotification() {
         return notification;
     }
 
     /**
+     * Setter.
      * @param xid the xid to set
      */
     public void setXid(Long xid) {