Fix missing Copyrights

Change-Id: Ica3a5d829cbb8a402be125a8d38f48a785811491
Signed-off-by: Guillaume Garzone <guillaume.garzone@laas.fr>
diff --git a/org.eclipse.om2m.binding.mqtt/pom.xml b/org.eclipse.om2m.binding.mqtt/pom.xml
index 254787e..46e30e6 100644
--- a/org.eclipse.om2m.binding.mqtt/pom.xml
+++ b/org.eclipse.om2m.binding.mqtt/pom.xml
@@ -1,3 +1,22 @@
+<!--
+     Copyright (c) 2013-2016 LAAS-CNRS (www.laas.fr)
+     7 Colonel Roche 31077 Toulouse - France
+     
+     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
+     
+     Initial Contributors:
+         Thierry Monteil : Project manager, technical co-manager
+         Mahdi Ben Alaya : Technical co-manager
+         Samir Medjiah : Technical co-manager
+         Khalil Drira : Strategy expert
+         Guillaume Garzone : Developer
+         François Aïssaoui : Developer
+   
+      New contributors :
+ -->
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 	<modelVersion>4.0.0</modelVersion>
diff --git a/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/Activator.java b/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/Activator.java
index 0a74e78..c8f126f 100644
--- a/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/Activator.java
+++ b/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/Activator.java
@@ -1,3 +1,22 @@
+/*******************************************************************************
+ *  Copyright (c) 2013-2016 LAAS-CNRS (www.laas.fr)
+ *  7 Colonel Roche 31077 Toulouse - France
+ *  
+ *  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
+ *  
+ *  Initial Contributors:
+ *      Thierry Monteil : Project manager, technical co-manager
+ *      Mahdi Ben Alaya : Technical co-manager
+ *      Samir Medjiah : Technical co-manager
+ *      Khalil Drira : Strategy expert
+ *      Guillaume Garzone : Developer
+ *      François Aïssaoui : Developer
+ *
+ *   New contributors :
+ *******************************************************************************/
 package org.eclipse.om2m.binding.mqtt;
 
 import org.apache.commons.logging.Log;
diff --git a/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/MqttRequestHandler.java b/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/MqttRequestHandler.java
index 1105a89..779e4de 100644
--- a/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/MqttRequestHandler.java
+++ b/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/MqttRequestHandler.java
@@ -1,3 +1,22 @@
+/*******************************************************************************
+ *  Copyright (c) 2013-2016 LAAS-CNRS (www.laas.fr)
+ *  7 Colonel Roche 31077 Toulouse - France
+ *  
+ *  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
+ *  
+ *  Initial Contributors:
+ *      Thierry Monteil : Project manager, technical co-manager
+ *      Mahdi Ben Alaya : Technical co-manager
+ *      Samir Medjiah : Technical co-manager
+ *      Khalil Drira : Strategy expert
+ *      Guillaume Garzone : Developer
+ *      François Aïssaoui : Developer
+ *
+ *   New contributors :
+ *******************************************************************************/
 package org.eclipse.om2m.binding.mqtt;
 
 import java.math.BigInteger;
diff --git a/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/MqttRestClient.java b/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/MqttRestClient.java
index 7936749..95ba01c 100644
--- a/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/MqttRestClient.java
+++ b/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/MqttRestClient.java
@@ -1,3 +1,22 @@
+/*******************************************************************************
+ *  Copyright (c) 2013-2016 LAAS-CNRS (www.laas.fr)
+ *  7 Colonel Roche 31077 Toulouse - France
+ *  
+ *  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
+ *  
+ *  Initial Contributors:
+ *      Thierry Monteil : Project manager, technical co-manager
+ *      Mahdi Ben Alaya : Technical co-manager
+ *      Samir Medjiah : Technical co-manager
+ *      Khalil Drira : Strategy expert
+ *      Guillaume Garzone : Developer
+ *      François Aïssaoui : Developer
+ *
+ *   New contributors :
+ *******************************************************************************/
 package org.eclipse.om2m.binding.mqtt;
 
 import java.util.UUID;
diff --git a/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/DataMapperRegistry.java b/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/DataMapperRegistry.java
index 18127ab..d4e4741 100644
--- a/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/DataMapperRegistry.java
+++ b/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/DataMapperRegistry.java
@@ -1,3 +1,22 @@
+/*******************************************************************************
+ *  Copyright (c) 2013-2016 LAAS-CNRS (www.laas.fr)
+ *  7 Colonel Roche 31077 Toulouse - France
+ *  
+ *  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
+ *  
+ *  Initial Contributors:
+ *      Thierry Monteil : Project manager, technical co-manager
+ *      Mahdi Ben Alaya : Technical co-manager
+ *      Samir Medjiah : Technical co-manager
+ *      Khalil Drira : Strategy expert
+ *      Guillaume Garzone : Developer
+ *      François Aïssaoui : Developer
+ *
+ *   New contributors :
+ *******************************************************************************/
 package org.eclipse.om2m.binding.mqtt.util;
 
 import java.util.HashMap;
diff --git a/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/MqttConstants.java b/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/MqttConstants.java
index 24fceff..5f0f546 100644
--- a/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/MqttConstants.java
+++ b/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/MqttConstants.java
@@ -1,3 +1,22 @@
+/*******************************************************************************
+ *  Copyright (c) 2013-2016 LAAS-CNRS (www.laas.fr)
+ *  7 Colonel Roche 31077 Toulouse - France
+ *  
+ *  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
+ *  
+ *  Initial Contributors:
+ *      Thierry Monteil : Project manager, technical co-manager
+ *      Mahdi Ben Alaya : Technical co-manager
+ *      Samir Medjiah : Technical co-manager
+ *      Khalil Drira : Strategy expert
+ *      Guillaume Garzone : Developer
+ *      François Aïssaoui : Developer
+ *
+ *   New contributors :
+ *******************************************************************************/
 package org.eclipse.om2m.binding.mqtt.util;
 
 import java.util.regex.Pattern;
diff --git a/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/QueueSender.java b/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/QueueSender.java
index 43be0ec..d6db359 100644
--- a/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/QueueSender.java
+++ b/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/QueueSender.java
@@ -1,3 +1,22 @@
+/*******************************************************************************
+ *  Copyright (c) 2013-2016 LAAS-CNRS (www.laas.fr)
+ *  7 Colonel Roche 31077 Toulouse - France
+ *  
+ *  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
+ *  
+ *  Initial Contributors:
+ *      Thierry Monteil : Project manager, technical co-manager
+ *      Mahdi Ben Alaya : Technical co-manager
+ *      Samir Medjiah : Technical co-manager
+ *      Khalil Drira : Strategy expert
+ *      Guillaume Garzone : Developer
+ *      François Aïssaoui : Developer
+ *
+ *   New contributors :
+ *******************************************************************************/
 package org.eclipse.om2m.binding.mqtt.util;
 
 import java.util.concurrent.ExecutorService;
diff --git a/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/ResponseRegistry.java b/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/ResponseRegistry.java
index 20c7f24..b77bf73 100644
--- a/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/ResponseRegistry.java
+++ b/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/ResponseRegistry.java
@@ -1,3 +1,22 @@
+/*******************************************************************************
+ *  Copyright (c) 2013-2016 LAAS-CNRS (www.laas.fr)
+ *  7 Colonel Roche 31077 Toulouse - France
+ *  
+ *  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
+ *  
+ *  Initial Contributors:
+ *      Thierry Monteil : Project manager, technical co-manager
+ *      Mahdi Ben Alaya : Technical co-manager
+ *      Samir Medjiah : Technical co-manager
+ *      Khalil Drira : Strategy expert
+ *      Guillaume Garzone : Developer
+ *      François Aïssaoui : Developer
+ *
+ *   New contributors :
+ *******************************************************************************/
 package org.eclipse.om2m.binding.mqtt.util;
 
 import java.util.HashMap;
diff --git a/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/ResponseSemaphore.java b/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/ResponseSemaphore.java
index 7588712..037c336 100644
--- a/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/ResponseSemaphore.java
+++ b/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/ResponseSemaphore.java
@@ -1,3 +1,22 @@
+/*******************************************************************************

+ *  Copyright (c) 2013-2016 LAAS-CNRS (www.laas.fr)

+ *  7 Colonel Roche 31077 Toulouse - France

+ *  

+ *  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

+ *  

+ *  Initial Contributors:

+ *      Thierry Monteil : Project manager, technical co-manager

+ *      Mahdi Ben Alaya : Technical co-manager

+ *      Samir Medjiah : Technical co-manager

+ *      Khalil Drira : Strategy expert

+ *      Guillaume Garzone : Developer

+ *      François Aïssaoui : Developer

+ *

+ *   New contributors :

+ *******************************************************************************/

 package org.eclipse.om2m.binding.mqtt.util;

 

 import java.util.concurrent.Semaphore;

diff --git a/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/Utils.java b/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/Utils.java
index 219fa66..56766fd 100644
--- a/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/Utils.java
+++ b/org.eclipse.om2m.binding.mqtt/src/main/java/org/eclipse/om2m/binding/mqtt/util/Utils.java
@@ -1,3 +1,22 @@
+/*******************************************************************************
+ *  Copyright (c) 2013-2016 LAAS-CNRS (www.laas.fr)
+ *  7 Colonel Roche 31077 Toulouse - France
+ *  
+ *  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
+ *  
+ *  Initial Contributors:
+ *      Thierry Monteil : Project manager, technical co-manager
+ *      Mahdi Ben Alaya : Technical co-manager
+ *      Samir Medjiah : Technical co-manager
+ *      Khalil Drira : Strategy expert
+ *      Guillaume Garzone : Developer
+ *      François Aïssaoui : Developer
+ *
+ *   New contributors :
+ *******************************************************************************/
 package org.eclipse.om2m.binding.mqtt.util;
 
 import org.eclipse.om2m.commons.resource.ResponsePrimitive;