Browse Source

edited readme, changed licence header in files

Lukas Cerny 5 years ago
parent
commit
2fbcfbc0c4
88 changed files with 179 additions and 180 deletions
  1. 5 5
      README.md
  2. 2 2
      connector-app/src/main/java/io/connector/app/AppConfig.java
  3. 2 2
      connector-app/src/main/java/io/connector/app/Application.java
  4. 2 2
      connector-app/src/main/java/io/connector/app/Parameters.java
  5. 2 2
      connector-core/src/main/java/io/connector/core/AbstractGateway.java
  6. 2 2
      connector-core/src/main/java/io/connector/core/AbstractModule.java
  7. 2 2
      connector-core/src/main/java/io/connector/core/AddressPath.java
  8. 2 2
      connector-core/src/main/java/io/connector/core/DataCollection.java
  9. 2 2
      connector-core/src/main/java/io/connector/core/EventInfo.java
  10. 2 2
      connector-core/src/main/java/io/connector/core/Fail.java
  11. 2 2
      connector-core/src/main/java/io/connector/core/Handler.java
  12. 2 2
      connector-core/src/main/java/io/connector/core/Message.java
  13. 2 2
      connector-core/src/main/java/io/connector/core/MessageHeader.java
  14. 2 2
      connector-core/src/main/java/io/connector/core/Module.java
  15. 2 2
      connector-core/src/main/java/io/connector/core/ModuleDeployer.java
  16. 2 2
      connector-core/src/main/java/io/connector/core/ModuleDescriptor.java
  17. 2 2
      connector-core/src/main/java/io/connector/core/ModuleInfo.java
  18. 2 2
      connector-core/src/main/java/io/connector/core/ModuleLoader.java
  19. 2 2
      connector-core/src/main/java/io/connector/core/ModuleProvider.java
  20. 2 2
      connector-core/src/main/java/io/connector/core/Reply.java
  21. 2 2
      connector-core/src/main/java/io/connector/core/VertxHttpServer.java
  22. 2 2
      connector-core/src/main/java/io/connector/core/VertxScheduler.java
  23. 2 2
      connector-core/src/main/java/io/connector/core/config/ConfigurationService.java
  24. 2 2
      connector-core/src/main/java/io/connector/core/config/DefaultConfig.java
  25. 2 2
      connector-core/src/main/java/io/connector/core/config/HostConfig.java
  26. 2 2
      connector-core/src/main/java/io/connector/core/config/PropertyConfig.java
  27. 2 2
      connector-core/src/main/java/io/connector/core/config/SchedulerConfig.java
  28. 2 2
      connector-core/src/main/java/io/connector/core/config/database/DatabaseBuilder.java
  29. 2 2
      connector-core/src/main/java/io/connector/core/config/database/DatabaseBuilderImpl.java
  30. 2 2
      connector-core/src/main/java/io/connector/core/config/database/DatabaseConfigurationService.java
  31. 2 3
      connector-core/src/main/java/io/connector/core/config/database/DatabaseConfigurationServiceImpl.java
  32. 2 2
      connector-core/src/main/java/io/connector/core/config/file/FileBuilder.java
  33. 2 2
      connector-core/src/main/java/io/connector/core/config/file/FileBuilderImpl.java
  34. 2 2
      connector-core/src/main/java/io/connector/core/config/file/FileConfigurationService.java
  35. 2 2
      connector-core/src/main/java/io/connector/core/config/file/FileConfigurationServiceImpl.java
  36. 2 2
      connector-core/src/main/java/io/connector/core/http/ContentType.java
  37. 2 2
      connector-core/src/main/java/io/connector/core/http/Header.java
  38. 2 2
      connector-core/src/main/java/io/connector/core/http/HttpClient.java
  39. 2 2
      connector-core/src/main/java/io/connector/core/http/HttpCode.java
  40. 2 2
      connector-core/src/main/java/io/connector/core/http/HttpMethod.java
  41. 2 2
      connector-core/src/main/java/io/connector/core/http/HttpRequest.java
  42. 2 2
      connector-core/src/main/java/io/connector/core/http/HttpRequestBuilder.java
  43. 2 2
      connector-core/src/main/java/io/connector/core/http/HttpResponse.java
  44. 2 2
      connector-core/src/main/java/io/connector/core/http/HttpResponseBuilder.java
  45. 2 2
      connector-core/src/main/java/io/connector/core/http/RequestUriComponent.java
  46. 2 2
      connector-core/src/main/java/io/connector/core/http/RequestUriParser.java
  47. 2 2
      connector-core/src/main/java/io/connector/core/http/URLBuilder.java
  48. 2 2
      connector-core/src/main/java/io/connector/core/json/DeserializeFormatter.java
  49. 2 2
      connector-core/src/main/java/io/connector/core/json/JsonAttributeFormatter.java
  50. 2 2
      connector-core/src/main/java/io/connector/core/json/JsonDeserializer.java
  51. 2 2
      connector-core/src/main/java/io/connector/core/json/JsonSerializer.java
  52. 2 2
      connector-core/src/main/java/io/connector/core/json/SerializeFormatter.java
  53. 2 2
      connector-core/src/main/java/io/connector/core/util/StringUtils.java
  54. 2 2
      connector-model/src/main/java/io/connector/model/afarcloud/Location.java
  55. 2 2
      connector-model/src/main/java/io/connector/model/afarcloud/MultiSensor.java
  56. 2 2
      connector-model/src/main/java/io/connector/model/afarcloud/MultiSimpleObservation.java
  57. 2 2
      connector-model/src/main/java/io/connector/model/afarcloud/Observation.java
  58. 2 2
      connector-model/src/main/java/io/connector/model/afarcloud/ResourceMeasurement.java
  59. 2 2
      connector-model/src/main/java/io/connector/model/afarcloud/ResponseModel.java
  60. 2 2
      connector-model/src/main/java/io/connector/model/afarcloud/SensorTelemetry.java
  61. 2 2
      connector-model/src/main/java/io/connector/model/afarcloud/SimpleObservation.java
  62. 2 2
      connector-model/src/main/java/io/connector/model/ima/IMAModel.java
  63. 2 2
      connector-model/src/main/java/io/connector/model/senslog1/Observation.java
  64. 2 2
      connector-model/src/main/java/io/connector/model/senslog1/Phenomenon.java
  65. 2 2
      connector-model/src/main/java/io/connector/model/senslog1/Position.java
  66. 2 2
      connector-model/src/main/java/io/connector/model/senslog1/Sensor.java
  67. 2 2
      connector-model/src/main/java/io/connector/model/senslog1/SensorData.java
  68. 2 2
      connector-model/src/main/java/io/connector/model/senslog1/SensorInfo.java
  69. 2 2
      connector-model/src/main/java/io/connector/model/senslog1/Unit.java
  70. 2 2
      connector-model/src/main/java/io/connector/model/senslog1/UnitData.java
  71. 2 2
      connector-model/src/main/java/io/connector/model/senslog1/UnitInfo.java
  72. 2 2
      connector-model/src/main/java/io/connector/model/sensorthings/Datastream.java
  73. 2 2
      connector-model/src/main/java/io/connector/model/sensorthings/FeatureOfInterest.java
  74. 2 2
      connector-model/src/main/java/io/connector/model/sensorthings/Filter.java
  75. 2 2
      connector-model/src/main/java/io/connector/model/sensorthings/Geometry.java
  76. 2 2
      connector-model/src/main/java/io/connector/model/sensorthings/HistoricalLocation.java
  77. 2 2
      connector-model/src/main/java/io/connector/model/sensorthings/Location.java
  78. 2 2
      connector-model/src/main/java/io/connector/model/sensorthings/Observation.java
  79. 2 2
      connector-model/src/main/java/io/connector/model/sensorthings/ObservedProperty.java
  80. 2 2
      connector-model/src/main/java/io/connector/model/sensorthings/Sensor.java
  81. 2 2
      connector-model/src/main/java/io/connector/model/sensorthings/Thing.java
  82. 2 2
      connector-module-afarcloud/src/main/java/io/connector/module/afarcloud/AFCConfig.java
  83. 2 2
      connector-module-afarcloud/src/main/java/io/connector/module/afarcloud/AFCHttpClient.java
  84. 2 2
      connector-module-afarcloud/src/main/java/io/connector/module/afarcloud/AFCModule.java
  85. 2 2
      connector-module-afarcloud/src/main/java/io/connector/module/afarcloud/AFCModuleProvider.java
  86. 2 2
      connector-module-afarcloud/src/main/java/io/connector/module/afarcloud/Filter.java
  87. 2 2
      connector-module-afarcloud/src/main/java/io/connector/module/afarcloud/gateway/OGCSensorThingsGateway.java
  88. 2 2
      connector-module-afarcloud/src/main/java/io/connector/module/afarcloud/gateway/SensLog1Gateway.java

+ 5 - 5
README.md

@@ -2,12 +2,12 @@
 
 
 A connector providing standardized interface for components outside the AFarCloud
 A connector providing standardized interface for components outside the AFarCloud
 architecture and connecting internally to API of AFarCloud component will be designed and
 architecture and connecting internally to API of AFarCloud component will be designed and
-developed. The main goal of this OGC2AFC Connector will be to receive and publish sensor
-data e.g. from general sensors, collars. The OGC2AFC Connector will connect to the REST
-Server and will transform requests specified by the OGC SensorThings standard
+developed. The main goal of this OGC2AFC Connector is to receive and publish sensor
+data e.g. from general sensors, collars. The OGC2AFC Connector connects to the AFarCloud REST
+Server and transforms requests specified by the OGC SensorThings standard
 to the requests defined by the REST Server API.
 to the requests defined by the REST Server API.
-OGC SensorThings API interface, using OGC O&M + SensorThings data model (section Data
-format for communication with external systems). This project was created as a part of the project AS07.
+
+This software was created as a part of the ECSEL JU project 783221 Aggregate FARming in the CLOUD (AFarCloud).
 
 
 ### Build
 ### Build
 
 

+ 2 - 2
connector-app/src/main/java/io/connector/app/AppConfig.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.app;
 package io.connector.app;
 
 

+ 2 - 2
connector-app/src/main/java/io/connector/app/Application.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.app;
 package io.connector.app;
 
 

+ 2 - 2
connector-app/src/main/java/io/connector/app/Parameters.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.app;
 package io.connector.app;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/AbstractGateway.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core;
 package io.connector.core;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/AbstractModule.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core;
 package io.connector.core;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/AddressPath.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core;
 package io.connector.core;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/DataCollection.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core;
 package io.connector.core;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/EventInfo.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core;
 package io.connector.core;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/Fail.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core;
 package io.connector.core;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/Handler.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core;
 package io.connector.core;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/Message.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core;
 package io.connector.core;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/MessageHeader.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core;
 package io.connector.core;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/Module.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core;
 package io.connector.core;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/ModuleDeployer.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core;
 package io.connector.core;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/ModuleDescriptor.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core;
 package io.connector.core;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/ModuleInfo.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core;
 package io.connector.core;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/ModuleLoader.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core;
 package io.connector.core;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/ModuleProvider.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core;
 package io.connector.core;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/Reply.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core;
 package io.connector.core;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/VertxHttpServer.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core;
 package io.connector.core;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/VertxScheduler.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core;
 package io.connector.core;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/config/ConfigurationService.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.config;
 package io.connector.core.config;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/config/DefaultConfig.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.config;
 package io.connector.core.config;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/config/HostConfig.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.config;
 package io.connector.core.config;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/config/PropertyConfig.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.config;
 package io.connector.core.config;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/config/SchedulerConfig.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.config;
 package io.connector.core.config;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/config/database/DatabaseBuilder.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.config.database;
 package io.connector.core.config.database;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/config/database/DatabaseBuilderImpl.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.config.database;
 package io.connector.core.config.database;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/config/database/DatabaseConfigurationService.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.config.database;
 package io.connector.core.config.database;
 
 

+ 2 - 3
connector-core/src/main/java/io/connector/core/config/database/DatabaseConfigurationServiceImpl.java

@@ -1,11 +1,10 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.config.database;
 package io.connector.core.config.database;
 
 
 import io.connector.core.ModuleDescriptor;
 import io.connector.core.ModuleDescriptor;
 import io.connector.core.config.ConfigurationService;
 import io.connector.core.config.ConfigurationService;
-import io.connector.core.config.DefaultConfig;
 import org.apache.logging.log4j.LogManager;
 import org.apache.logging.log4j.LogManager;
 import org.apache.logging.log4j.Logger;
 import org.apache.logging.log4j.Logger;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/config/file/FileBuilder.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.config.file;
 package io.connector.core.config.file;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/config/file/FileBuilderImpl.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.config.file;
 package io.connector.core.config.file;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/config/file/FileConfigurationService.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.config.file;
 package io.connector.core.config.file;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/config/file/FileConfigurationServiceImpl.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.config.file;
 package io.connector.core.config.file;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/http/ContentType.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.http;
 package io.connector.core.http;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/http/Header.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.http;
 package io.connector.core.http;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/http/HttpClient.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.http;
 package io.connector.core.http;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/http/HttpCode.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.http;
 package io.connector.core.http;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/http/HttpMethod.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.http;
 package io.connector.core.http;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/http/HttpRequest.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.http;
 package io.connector.core.http;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/http/HttpRequestBuilder.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.http;
 package io.connector.core.http;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/http/HttpResponse.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.http;
 package io.connector.core.http;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/http/HttpResponseBuilder.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.http;
 package io.connector.core.http;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/http/RequestUriComponent.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.http;
 package io.connector.core.http;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/http/RequestUriParser.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.http;
 package io.connector.core.http;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/http/URLBuilder.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.http;
 package io.connector.core.http;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/json/DeserializeFormatter.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.json;
 package io.connector.core.json;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/json/JsonAttributeFormatter.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.json;
 package io.connector.core.json;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/json/JsonDeserializer.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.json;
 package io.connector.core.json;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/json/JsonSerializer.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.json;
 package io.connector.core.json;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/json/SerializeFormatter.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.json;
 package io.connector.core.json;
 
 

+ 2 - 2
connector-core/src/main/java/io/connector/core/util/StringUtils.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.core.util;
 package io.connector.core.util;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/afarcloud/Location.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.afarcloud;
 package io.connector.model.afarcloud;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/afarcloud/MultiSensor.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.afarcloud;
 package io.connector.model.afarcloud;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/afarcloud/MultiSimpleObservation.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.afarcloud;
 package io.connector.model.afarcloud;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/afarcloud/Observation.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.afarcloud;
 package io.connector.model.afarcloud;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/afarcloud/ResourceMeasurement.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.afarcloud;
 package io.connector.model.afarcloud;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/afarcloud/ResponseModel.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.afarcloud;
 package io.connector.model.afarcloud;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/afarcloud/SensorTelemetry.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.afarcloud;
 package io.connector.model.afarcloud;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/afarcloud/SimpleObservation.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.afarcloud;
 package io.connector.model.afarcloud;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/ima/IMAModel.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.ima;
 package io.connector.model.ima;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/senslog1/Observation.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.senslog1;
 package io.connector.model.senslog1;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/senslog1/Phenomenon.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.senslog1;
 package io.connector.model.senslog1;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/senslog1/Position.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.senslog1;
 package io.connector.model.senslog1;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/senslog1/Sensor.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.senslog1;
 package io.connector.model.senslog1;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/senslog1/SensorData.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.senslog1;
 package io.connector.model.senslog1;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/senslog1/SensorInfo.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.senslog1;
 package io.connector.model.senslog1;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/senslog1/Unit.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.senslog1;
 package io.connector.model.senslog1;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/senslog1/UnitData.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.senslog1;
 package io.connector.model.senslog1;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/senslog1/UnitInfo.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.senslog1;
 package io.connector.model.senslog1;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/sensorthings/Datastream.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.sensorthings;
 package io.connector.model.sensorthings;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/sensorthings/FeatureOfInterest.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.sensorthings;
 package io.connector.model.sensorthings;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/sensorthings/Filter.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.sensorthings;
 package io.connector.model.sensorthings;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/sensorthings/Geometry.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.sensorthings;
 package io.connector.model.sensorthings;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/sensorthings/HistoricalLocation.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.sensorthings;
 package io.connector.model.sensorthings;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/sensorthings/Location.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.sensorthings;
 package io.connector.model.sensorthings;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/sensorthings/Observation.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.sensorthings;
 package io.connector.model.sensorthings;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/sensorthings/ObservedProperty.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.sensorthings;
 package io.connector.model.sensorthings;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/sensorthings/Sensor.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.sensorthings;
 package io.connector.model.sensorthings;
 
 

+ 2 - 2
connector-model/src/main/java/io/connector/model/sensorthings/Thing.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.model.sensorthings;
 package io.connector.model.sensorthings;
 
 

+ 2 - 2
connector-module-afarcloud/src/main/java/io/connector/module/afarcloud/AFCConfig.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.module.afarcloud;
 package io.connector.module.afarcloud;
 
 

+ 2 - 2
connector-module-afarcloud/src/main/java/io/connector/module/afarcloud/AFCHttpClient.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.module.afarcloud;
 package io.connector.module.afarcloud;
 
 

+ 2 - 2
connector-module-afarcloud/src/main/java/io/connector/module/afarcloud/AFCModule.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.module.afarcloud;
 package io.connector.module.afarcloud;
 
 

+ 2 - 2
connector-module-afarcloud/src/main/java/io/connector/module/afarcloud/AFCModuleProvider.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.module.afarcloud;
 package io.connector.module.afarcloud;
 
 

+ 2 - 2
connector-module-afarcloud/src/main/java/io/connector/module/afarcloud/Filter.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.module.afarcloud;
 package io.connector.module.afarcloud;
 
 

+ 2 - 2
connector-module-afarcloud/src/main/java/io/connector/module/afarcloud/gateway/OGCSensorThingsGateway.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.module.afarcloud.gateway;
 package io.connector.module.afarcloud.gateway;
 
 

+ 2 - 2
connector-module-afarcloud/src/main/java/io/connector/module/afarcloud/gateway/SensLog1Gateway.java

@@ -1,5 +1,5 @@
-// Licensed to the UWB & LESP under one or more agreements.
-// The UWB & LESP licenses this file to you under the MIT license.
+// Copyright (c) 2020 UWB & LESP.
+// The UWB & LESP license this file to you under the MIT license.
 
 
 package io.connector.module.afarcloud.gateway;
 package io.connector.module.afarcloud.gateway;