Fix Logger use
[openflowjava.git] / simple-client / src / main / java / org / opendaylight / openflowjava / protocol / impl / clients / SleepEvent.java
index eb496ab3d369944a0a5ff738d04be6a3f9e3a0d5..b1e1a50c64f5e5ebda864be74763050a440ea58d 100644 (file)
@@ -1,14 +1,30 @@
-/* Copyright (C)2013 Pantheon Technologies, s.r.o. 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.clients;
 
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
+/**
+ * Class representing sleep (wait) event
+ *
+ * @author michal.polkorab
+ */
 public class SleepEvent implements ClientEvent {
 
     private static final Logger LOGGER = LoggerFactory.getLogger(SleepEvent.class);
     private long sleepTime;
-    
+
+    /**
+     *
+     * @param sleepTime time of {@link Thread#sleep(long)} in milliseconds
+     */
     public SleepEvent(long sleepTime) {
         this.sleepTime = sleepTime;
     }