Browse Source

Updated license header

pull/4012/head
Vladyslav_Prykhodko 5 years ago
parent
commit
2b47fe9202
  1. 2
      application/src/main/java/org/thingsboard/server/controller/DeviceLwm2mController.java
  2. 2
      application/src/main/java/org/thingsboard/server/service/lwm2m/LwM2MModelsRepository.java
  3. 2
      common/data/src/main/java/org/thingsboard/server/common/data/lwm2m/LwM2mInstance.java
  4. 2
      common/data/src/main/java/org/thingsboard/server/common/data/lwm2m/LwM2mObject.java
  5. 2
      common/data/src/main/java/org/thingsboard/server/common/data/lwm2m/LwM2mResource.java
  6. 2
      common/data/src/main/java/org/thingsboard/server/common/data/lwm2m/ServerSecurityConfig.java
  7. 17
      common/transport/lwm2m/pom.xml
  8. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/bootstrap/LwM2MTransportBootstrapServerConfiguration.java
  9. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/bootstrap/LwM2MTransportBootstrapServerInitializer.java
  10. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/bootstrap/LwM2MTransportContextBootstrap.java
  11. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/bootstrap/secure/LwM2MBootstrapConfig.java
  12. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/bootstrap/secure/LwM2MBootstrapSecurityStore.java
  13. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/bootstrap/secure/LwM2MBootstrapServers.java
  14. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/bootstrap/secure/LwM2MInMemoryBootstrapConfigStore.java
  15. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/bootstrap/secure/LwM2MServerBootstrap.java
  16. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/bootstrap/secure/LwM2mDefaultBootstrapSessionManager.java
  17. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/secure/LWM2MGenerationPSkRPkECC.java
  18. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/secure/LwM2MSecurityMode.java
  19. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/secure/LwM2mCredentialsSecurityInfoValidator.java
  20. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/secure/LwM2mRPkCredentials.java
  21. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/secure/ReadResultSecurityStore.java
  22. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/LwM2MSessionMsgListener.java
  23. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/LwM2MTransportContextServer.java
  24. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/LwM2MTransportHandler.java
  25. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/LwM2MTransportRequest.java
  26. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/LwM2MTransportServerConfiguration.java
  27. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/LwM2MTransportServerInitializer.java
  28. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/LwM2MTransportService.java
  29. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/LwM2MTransportServiceImpl.java
  30. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/LwM2mServerListener.java
  31. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/adaptors/LwM2MJsonAdaptor.java
  32. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/adaptors/LwM2MTransportAdaptor.java
  33. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/client/AttrTelemetryObserveValue.java
  34. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/client/LwM2MClient.java
  35. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/client/ModelObject.java
  36. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/client/ResourceValue.java
  37. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/client/ResultsAnalyzerParameters.java
  38. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/secure/LwM2mInMemorySecurityStore.java
  39. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/utils/LwM2mValueConverterImpl.java
  40. 2
      common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/utils/TypeServer.java
  41. 2
      common/transport/lwm2m/src/main/resources/credentials/shell/lwM2M_credentials.sh
  42. 2
      common/transport/transport-api/src/main/java/org/thingsboard/server/common/transport/lwm2m/LwM2MTransportConfigBootstrap.java
  43. 2
      common/transport/transport-api/src/main/java/org/thingsboard/server/common/transport/lwm2m/LwM2MTransportConfigServer.java
  44. 2
      docker/tb-transports/lwm2m/conf/logback.xml
  45. 2
      docker/tb-transports/lwm2m/conf/tb-lwm2m-transport.conf
  46. 2
      msa/transport/lwm2m/docker/Dockerfile
  47. 2
      msa/transport/lwm2m/docker/start-tb-lwm2m-transport.sh
  48. 2
      msa/transport/lwm2m/pom.xml
  49. 2
      transport/lwm2m/pom.xml
  50. 2
      transport/lwm2m/src/main/conf/logback.xml
  51. 2
      transport/lwm2m/src/main/conf/tb-lwm2m-transport.conf
  52. 2
      transport/lwm2m/src/main/data/credentials/shell/lwM2M_credentials.sh
  53. 2
      transport/lwm2m/src/main/data/models/10241.xml
  54. 2
      transport/lwm2m/src/main/data/models/10242.xml
  55. 2
      transport/lwm2m/src/main/data/models/10243.xml
  56. 2
      transport/lwm2m/src/main/data/models/10244.xml
  57. 2
      transport/lwm2m/src/main/data/models/10245.xml
  58. 2
      transport/lwm2m/src/main/data/models/10246.xml
  59. 2
      transport/lwm2m/src/main/data/models/10247.xml
  60. 2
      transport/lwm2m/src/main/data/models/10248.xml
  61. 2
      transport/lwm2m/src/main/data/models/10249.xml
  62. 2
      transport/lwm2m/src/main/data/models/10250.xml
  63. 2
      transport/lwm2m/src/main/data/models/10251.xml
  64. 2
      transport/lwm2m/src/main/data/models/10252.xml
  65. 2
      transport/lwm2m/src/main/data/models/10253.xml
  66. 2
      transport/lwm2m/src/main/data/models/10254.xml
  67. 2
      transport/lwm2m/src/main/data/models/10255.xml
  68. 2
      transport/lwm2m/src/main/data/models/10256.xml
  69. 2
      transport/lwm2m/src/main/data/models/10257.xml
  70. 2
      transport/lwm2m/src/main/data/models/10258.xml
  71. 2
      transport/lwm2m/src/main/data/models/10259.xml
  72. 2
      transport/lwm2m/src/main/data/models/10260-2_0.xml
  73. 2
      transport/lwm2m/src/main/data/models/10262.xml
  74. 2
      transport/lwm2m/src/main/data/models/10263.xml
  75. 2
      transport/lwm2m/src/main/data/models/10264.xml
  76. 2
      transport/lwm2m/src/main/data/models/10265.xml
  77. 2
      transport/lwm2m/src/main/data/models/10266.xml
  78. 2
      transport/lwm2m/src/main/data/models/10267.xml
  79. 2
      transport/lwm2m/src/main/data/models/10268.xml
  80. 2
      transport/lwm2m/src/main/data/models/10269.xml
  81. 2
      transport/lwm2m/src/main/data/models/10270.xml
  82. 2
      transport/lwm2m/src/main/data/models/10271.xml
  83. 2
      transport/lwm2m/src/main/data/models/10272.xml
  84. 2
      transport/lwm2m/src/main/data/models/10273.xml
  85. 2
      transport/lwm2m/src/main/data/models/10274.xml
  86. 2
      transport/lwm2m/src/main/data/models/10275.xml
  87. 2
      transport/lwm2m/src/main/data/models/10276.xml
  88. 2
      transport/lwm2m/src/main/data/models/10277.xml
  89. 2
      transport/lwm2m/src/main/data/models/10278.xml
  90. 2
      transport/lwm2m/src/main/data/models/10279.xml
  91. 2
      transport/lwm2m/src/main/data/models/10280.xml
  92. 2
      transport/lwm2m/src/main/data/models/10281.xml
  93. 2
      transport/lwm2m/src/main/data/models/10282.xml
  94. 2
      transport/lwm2m/src/main/data/models/10283.xml
  95. 2
      transport/lwm2m/src/main/data/models/10284.xml
  96. 2
      transport/lwm2m/src/main/data/models/10286.xml
  97. 2
      transport/lwm2m/src/main/data/models/10290.xml
  98. 2
      transport/lwm2m/src/main/data/models/10291.xml
  99. 2
      transport/lwm2m/src/main/data/models/10292.xml
  100. 2
      transport/lwm2m/src/main/data/models/10299.xml

2
application/src/main/java/org/thingsboard/server/controller/DeviceLwm2mController.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
application/src/main/java/org/thingsboard/server/service/lwm2m/LwM2MModelsRepository.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/data/src/main/java/org/thingsboard/server/common/data/lwm2m/LwM2mInstance.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/data/src/main/java/org/thingsboard/server/common/data/lwm2m/LwM2mObject.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/data/src/main/java/org/thingsboard/server/common/data/lwm2m/LwM2mResource.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/data/src/main/java/org/thingsboard/server/common/data/lwm2m/ServerSecurityConfig.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

17
common/transport/lwm2m/pom.xml

@ -1,3 +1,20 @@
<!--
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!--

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/bootstrap/LwM2MTransportBootstrapServerConfiguration.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/bootstrap/LwM2MTransportBootstrapServerInitializer.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/bootstrap/LwM2MTransportContextBootstrap.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/bootstrap/secure/LwM2MBootstrapConfig.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/bootstrap/secure/LwM2MBootstrapSecurityStore.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/bootstrap/secure/LwM2MBootstrapServers.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/bootstrap/secure/LwM2MInMemoryBootstrapConfigStore.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/bootstrap/secure/LwM2MServerBootstrap.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/bootstrap/secure/LwM2mDefaultBootstrapSessionManager.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/secure/LWM2MGenerationPSkRPkECC.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/secure/LwM2MSecurityMode.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/secure/LwM2mCredentialsSecurityInfoValidator.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/secure/LwM2mRPkCredentials.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/secure/ReadResultSecurityStore.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/LwM2MSessionMsgListener.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/LwM2MTransportContextServer.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/LwM2MTransportHandler.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/LwM2MTransportRequest.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/LwM2MTransportServerConfiguration.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/LwM2MTransportServerInitializer.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/LwM2MTransportService.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/LwM2MTransportServiceImpl.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/LwM2mServerListener.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/adaptors/LwM2MJsonAdaptor.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/adaptors/LwM2MTransportAdaptor.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/client/AttrTelemetryObserveValue.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/client/LwM2MClient.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/client/ModelObject.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/client/ResourceValue.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/client/ResultsAnalyzerParameters.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/server/secure/LwM2mInMemorySecurityStore.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/utils/LwM2mValueConverterImpl.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/java/org/thingsboard/server/transport/lwm2m/utils/TypeServer.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/lwm2m/src/main/resources/credentials/shell/lwM2M_credentials.sh

@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright © 2016-2020 The Thingsboard Authors
# Copyright © 2016-2021 The Thingsboard Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.

2
common/transport/transport-api/src/main/java/org/thingsboard/server/common/transport/lwm2m/LwM2MTransportConfigBootstrap.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
common/transport/transport-api/src/main/java/org/thingsboard/server/common/transport/lwm2m/LwM2MTransportConfigServer.java

@ -1,5 +1,5 @@
/**
* Copyright © 2016-2020 The Thingsboard Authors
* Copyright © 2016-2021 The Thingsboard Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

2
docker/tb-transports/lwm2m/conf/logback.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
docker/tb-transports/lwm2m/conf/tb-lwm2m-transport.conf

@ -1,5 +1,5 @@
#
# Copyright © 2016-2020 The Thingsboard Authors
# Copyright © 2016-2021 The Thingsboard Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.

2
msa/transport/lwm2m/docker/Dockerfile

@ -1,5 +1,5 @@
#
# Copyright © 2016-2020 The Thingsboard Authors
# Copyright © 2016-2021 The Thingsboard Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.

2
msa/transport/lwm2m/docker/start-tb-lwm2m-transport.sh

@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright © 2016-2020 The Thingsboard Authors
# Copyright © 2016-2021 The Thingsboard Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.

2
msa/transport/lwm2m/pom.xml

@ -1,6 +1,6 @@
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/pom.xml

@ -1,6 +1,6 @@
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/conf/logback.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/conf/tb-lwm2m-transport.conf

@ -1,5 +1,5 @@
#
# Copyright © 2016-2020 The Thingsboard Authors
# Copyright © 2016-2021 The Thingsboard Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/credentials/shell/lwM2M_credentials.sh

@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright © 2016-2020 The Thingsboard Authors
# Copyright © 2016-2021 The Thingsboard Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10241.xml

@ -1,6 +1,6 @@
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10242.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10243.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10244.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?><LWM2M xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://openmobilealliance.org/tech/profiles/LWM2M.xsd">
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10245.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10246.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10247.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10248.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10249.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10250.xml

@ -1,6 +1,6 @@
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10251.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10252.xml

@ -1,6 +1,6 @@
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10253.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10254.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10255.xml

@ -1,6 +1,6 @@
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10256.xml

@ -1,6 +1,6 @@
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10257.xml

@ -1,6 +1,6 @@
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10258.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10259.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10260-2_0.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10262.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10263.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10264.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10265.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10266.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10267.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10268.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10269.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10270.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10271.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10272.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10273.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10274.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10275.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10276.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10277.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10278.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10279.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10280.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10281.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10282.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10283.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10284.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10286.xml

@ -1,6 +1,6 @@
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10290.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10291.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10292.xml

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

2
transport/lwm2m/src/main/data/models/10299.xml

@ -1,6 +1,6 @@
<!--
Copyright © 2016-2020 The Thingsboard Authors
Copyright © 2016-2021 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

Some files were not shown because too many files changed in this diff

Loading…
Cancel
Save