From 019c83107b99a6c3d7f59f2e6d0cc73672ce0f47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janne=20Kiiskil=C3=A4?= Date: Thu, 14 Sep 2023 17:27:06 +0300 Subject: [PATCH] License upgrade --- .github/workflows/PR-check.yml | 13 +++++++++ .../java/com/mbed/coap/CoapConstants.java | 3 ++ .../java/com/mbed/coap/client/CoapClient.java | 3 ++ .../mbed/coap/client/CoapClientBuilder.java | 3 ++ .../mbed/coap/client/CoapRequestTarget.java | 3 ++ .../coap/client/ObservationHandlerImpl.java | 3 ++ .../mbed/coap/client/ObservationListener.java | 3 ++ .../mbed/coap/client/RegistrationManager.java | 3 ++ .../mbed/coap/client/SyncRequestTarget.java | 3 ++ .../coap/exception/CoapBlockException.java | 3 ++ .../CoapBlockTooLargeEntityException.java | 3 ++ .../coap/exception/CoapCodeException.java | 3 ++ .../mbed/coap/exception/CoapException.java | 3 ++ .../exception/CoapMessageFormatException.java | 3 ++ .../CoapRequestEntityIncomplete.java | 3 ++ .../exception/CoapRequestEntityTooLarge.java | 3 ++ .../coap/exception/CoapTimeoutException.java | 3 ++ .../exception/CoapUnknownOptionException.java | 3 ++ .../ObservationNotEstablishedException.java | 3 ++ .../ObservationTerminatedException.java | 3 ++ .../TooManyRequestsForEndpointException.java | 3 ++ .../com/mbed/coap/linkformat/LinkFormat.java | 3 ++ .../coap/linkformat/LinkFormatBuilder.java | 3 ++ .../java/com/mbed/coap/linkformat/PToken.java | 3 ++ .../observe/AbstractObservableResource.java | 3 ++ .../coap/observe/NotificationAckCallback.java | 3 ++ .../observe/NotificationDeliveryListener.java | 3 ++ .../NotificationDeliveryListenerNULL.java | 3 ++ .../coap/observe/ObservationRelation.java | 3 ++ .../observe/SimpleObservableResource.java | 3 ++ .../mbed/coap/packet/BasicHeaderOptions.java | 3 ++ .../com/mbed/coap/packet/BlockOption.java | 3 ++ .../java/com/mbed/coap/packet/BlockSize.java | 3 ++ .../java/com/mbed/coap/packet/CoapPacket.java | 3 ++ .../coap/packet/CoapTcpPacketSerializer.java | 3 ++ .../main/java/com/mbed/coap/packet/Code.java | 3 ++ .../coap/packet/DataConvertingUtility.java | 3 ++ .../com/mbed/coap/packet/HeaderOptions.java | 3 ++ .../java/com/mbed/coap/packet/MediaTypes.java | 3 ++ .../com/mbed/coap/packet/MessageType.java | 3 ++ .../java/com/mbed/coap/packet/Method.java | 3 ++ .../com/mbed/coap/packet/PacketUtils.java | 3 ++ .../java/com/mbed/coap/packet/RawOption.java | 3 ++ .../mbed/coap/packet/SignalingOptions.java | 3 ++ .../mbed/coap/packet/StrictInputStream.java | 3 ++ .../com/mbed/coap/server/CoapExchange.java | 3 ++ .../com/mbed/coap/server/CoapHandler.java | 3 ++ .../com/mbed/coap/server/CoapRequestId.java | 3 ++ .../java/com/mbed/coap/server/CoapServer.java | 3 ++ .../mbed/coap/server/CoapServerBuilder.java | 3 ++ .../mbed/coap/server/CoapTcpCSMStorage.java | 3 ++ .../coap/server/CoapTransactionCallback.java | 3 ++ .../server/DuplicatedCoapMessageCallback.java | 3 ++ .../mbed/coap/server/MessageIdSupplier.java | 3 ++ .../coap/server/MessageIdSupplierImpl.java | 3 ++ .../mbed/coap/server/ObservationHandler.java | 3 ++ .../coap/server/ObservationIDGenerator.java | 3 ++ .../java/com/mbed/coap/server/PutOnlyMap.java | 3 ++ .../server/SimpleObservationIDGenerator.java | 3 ++ .../coap/server/internal/BlockRequestId.java | 3 ++ .../server/internal/BlockWiseCallback.java | 3 ++ .../BlockWiseIncomingTransaction.java | 3 ++ .../server/internal/BlockWiseTransfer.java | 3 ++ .../server/internal/CoapExchangeImpl.java | 3 ++ .../coap/server/internal/CoapMessaging.java | 3 ++ .../server/internal/CoapRequestHandler.java | 3 ++ .../server/internal/CoapServerBlocks.java | 3 ++ .../coap/server/internal/CoapServerUtils.java | 3 ++ .../mbed/coap/server/internal/CoapTcpCSM.java | 3 ++ .../internal/CoapTcpCSMStorageImpl.java | 3 ++ .../server/internal/CoapTcpMessaging.java | 3 ++ .../coap/server/internal/CoapTransaction.java | 3 ++ .../server/internal/CoapTransactionId.java | 3 ++ .../server/internal/CoapUdpMessaging.java | 3 ++ .../DefaultDuplicateDetectorCache.java | 3 ++ .../server/internal/DelayedTransactionId.java | 3 ++ .../internal/DelayedTransactionManager.java | 3 ++ .../server/internal/DuplicationDetector.java | 3 ++ .../coap/server/internal/ResourceLinks.java | 3 ++ .../server/internal/TransactionManager.java | 3 ++ .../server/internal/TransactionQueue.java | 3 ++ .../mbed/coap/server/internal/UriMatcher.java | 3 ++ .../mbed/coap/transmission/CoapTimeout.java | 3 ++ .../mbed/coap/transmission/SingleTimeout.java | 3 ++ .../transmission/TransmissionTimeout.java | 3 ++ .../coap/transport/BlockingCoapTransport.java | 3 ++ .../com/mbed/coap/transport/CoapReceiver.java | 3 ++ .../mbed/coap/transport/CoapTransport.java | 3 ++ .../coap/transport/InMemoryCoapTransport.java | 3 ++ .../mbed/coap/transport/TransportContext.java | 3 ++ .../coap/transport/TransportExecutors.java | 3 ++ .../transport/javassl/CoapSerializer.java | 3 ++ .../javassl/SSLSocketClientTransport.java | 3 ++ .../javassl/SocketClientTransport.java | 3 ++ .../coap/transport/udp/BlockingSocket.java | 3 ++ .../transport/udp/DatagramSocketAdapter.java | 3 ++ .../udp/DatagramSocketTransport.java | 3 ++ .../java/com/mbed/coap/utils/Callback.java | 3 ++ .../com/mbed/coap/utils/CoapResource.java | 3 ++ .../coap/utils/FutureCallbackAdapter.java | 3 ++ .../java/com/mbed/coap/utils/HexArray.java | 3 ++ .../com/mbed/coap/utils/IpPortAddress.java | 3 ++ .../mbed/coap/utils/ReadOnlyCoapResource.java | 3 ++ .../com/mbed/coap/utils/RequestCallback.java | 3 ++ .../main/java/com/mbed/coap/utils/Token.java | 3 ++ .../com/mbed/coap/client/CoapClientTest.java | 3 ++ .../coap/client/CoapRequestTargetTest.java | 3 ++ .../coap/client/RegistrationManagerTest.java | 3 ++ .../mbed/coap/linkformat/LinkFormatTest.java | 3 ++ .../AbstractObservableResourceTest.java | 3 ++ .../observe/SimpleObservableResourceTest.java | 3 ++ .../com/mbed/coap/packet/BlockOptionTest.java | 3 ++ .../com/mbed/coap/packet/BlockSizeTest.java | 3 ++ .../com/mbed/coap/packet/CoapPacketTest.java | 3 ++ .../mbed/coap/packet/CoapPacketTestBase.java | 3 ++ .../coap/packet/CoapPacketToStringTest.java | 3 ++ .../packet/CoapTcpPacketSerializerTest.java | 3 ++ .../java/com/mbed/coap/packet/CodeTest.java | 3 ++ .../packet/DataConvertingUtilityTest.java | 3 ++ .../mbed/coap/packet/HeaderOptionTest.java | 3 ++ .../com/mbed/coap/packet/MediaTypesTest.java | 3 ++ .../com/mbed/coap/packet/RawOptionTest.java | 3 ++ .../coap/packet/SignalingOptionsTest.java | 3 ++ .../coap/packet/StrictInputStreamTest.java | 3 ++ .../mbed/coap/server/CoapRequestIdTest.java | 3 ++ .../coap/server/CoapServerBuilderTest.java | 3 ++ .../com/mbed/coap/server/CoapServerTest.java | 3 ++ .../coap/server/ServerIntegrationTest.java | 3 ++ .../internal/BlockWiseCallbackTest.java | 3 ++ .../BlockWiseIncomingTransactionTest.java | 3 ++ .../internal/BlockWiseTransferTest.java | 3 ++ .../server/internal/CoapServerBlocksTest.java | 3 ++ .../internal/CoapServerBlocksUnitTest.java | 3 ++ .../CoapServerDuplicateErrorsTest.java | 3 ++ .../internal/CoapServerDuplicateTest.java | 3 ++ .../CoapServerTransportContextTest.java | 3 ++ .../internal/CoapTcpCSMStorageImplTest.java | 3 ++ .../coap/server/internal/CoapTcpCSMTest.java | 3 ++ .../server/internal/CoapTcpMessagingTest.java | 3 ++ .../internal/CoapTransactionIdTest.java | 3 ++ .../server/internal/CoapUdpMessagingTest.java | 3 ++ .../internal/DuplicationDetectorTest.java | 3 ++ .../server/internal/MockCoapTransport.java | 3 ++ .../internal/TransactionManagerTest.java | 3 ++ .../server/internal/TransactionQueueTest.java | 3 ++ .../transmission/TransmissionTimeoutTest.java | 3 ++ .../coap/transport/TransportContextTest.java | 3 ++ .../transport/TransportExecutorsTest.java | 3 ++ .../javassl/SSLSocketClientTransportTest.java | 3 ++ .../mbed/coap/transport/javassl/SSLUtils.java | 3 ++ ...gleConnectionSSLSocketServerTransport.java | 3 ++ ...SingleConnectionSocketServerTransport.java | 3 ++ .../udp/DatagramSocketTransportTest.java | 3 ++ .../coap/utils/FutureCallbackAdapterTest.java | 3 ++ .../com/mbed/coap/utils/HexArrayTest.java | 3 ++ .../mbed/coap/utils/IpPortAddressTest.java | 3 ++ .../coap/utils/ReadOnlyCoapResourceTest.java | 3 ++ .../java/microbenchmark/ParsingBenchmark.java | 3 ++ .../java/microbenchmark/ServerBenchmark.java | 3 ++ .../microbenchmark/ServerBenchmarkBase.java | 3 ++ .../ServerCachedThreadBenchmarkIgn.java | 3 ++ .../ServerMultiThreadBenchmarkIgn.java | 3 ++ ...verMultiThreadDuplicationBenchmarkIgn.java | 3 ++ .../microbenchmark/ServerNotifBenchmark.java | 3 ++ .../ServerSingleThreadBenchmark.java | 3 ++ .../Block1TransferMaxSizeTest.java | 3 ++ .../Block2TransferMaxSizeTest.java | 3 ++ .../test/java/protocolTests/BlockTest.java | 3 ++ .../BlockTransferOnDemandTest.java | 3 ++ .../BlockwiseTransferWithTest.java | 3 ++ .../protocolTests/ClientServerNONTest.java | 3 ++ .../java/protocolTests/ClientServerTest.java | 3 ++ .../ClientServerWithBlocksTest.java | 3 ++ .../protocolTests/MalformedPacketTest.java | 3 ++ .../java/protocolTests/Observation2Test.java | 3 ++ .../java/protocolTests/ObservationTest.java | 3 ++ .../ObservationWithBlockTest.java | 3 ++ .../java/protocolTests/QueueRequestsTest.java | 3 ++ .../protocolTests/SeparateResponseTest.java | 3 ++ .../protocolTests/TcpIntegrationTest.java | 3 ++ .../test/java/protocolTests/TimeoutTest.java | 3 ++ .../utils/CoapPacketBuilder.java | 3 ++ .../utils/TransportConnectorMock.java | 3 ++ .../test/resources/regenerate-keystores.sh | 28 +++++++++---------- deploy.sh | 5 +++- example-client/pom.xml | 3 ++ .../main/java/com/mbed/coap/cli/CoapCli.java | 3 ++ .../java/com/mbed/coap/cli/CoapSchemes.java | 3 ++ .../com/mbed/coap/cli/DeviceEmulator.java | 3 ++ .../com/mbed/coap/cli/TransportProvider.java | 3 ++ .../mbed/coap/cli/providers/JdkProvider.java | 3 ++ .../coap/cli/providers/OpensslProvider.java | 3 ++ .../coap/cli/providers/PlainTextProvider.java | 3 ++ .../cli/providers/StandardIoProvider.java | 3 ++ .../stdio/OpensslProcessTransport.java | 3 ++ .../stdio/StreamBlockingTransport.java | 3 ++ .../com/mbed/coap/cli/DeviceEmulatorTest.java | 3 ++ .../stdio/StreamBlockingTransportTest.java | 3 ++ license-header.txt | 3 ++ .../src/main/java/com/mbed/lwm2m/LWM2MID.java | 3 ++ .../main/java/com/mbed/lwm2m/LWM2MObject.java | 3 ++ .../com/mbed/lwm2m/LWM2MObjectInstance.java | 3 ++ .../java/com/mbed/lwm2m/LWM2MResource.java | 3 ++ .../com/mbed/lwm2m/LWM2MResourceInstance.java | 3 ++ .../com/mbed/lwm2m/LWM2MResourceType.java | 3 ++ .../com/mbed/lwm2m/json/JsonDeserializer.java | 3 ++ .../com/mbed/lwm2m/json/JsonResource.java | 3 ++ .../mbed/lwm2m/json/JsonResourceArray.java | 3 ++ .../com/mbed/lwm2m/json/JsonSerializer.java | 3 ++ .../mbed/lwm2m/json/NumberTypeAdapter.java | 3 ++ .../lwm2m/model/DefaultResourceValidator.java | 3 ++ .../java/com/mbed/lwm2m/model/Instances.java | 3 ++ .../lwm2m/model/IntegerResourceValidator.java | 3 ++ .../model/InvalidResourceURIException.java | 3 ++ .../mbed/lwm2m/model/NotFoundException.java | 3 ++ .../com/mbed/lwm2m/model/ObjectModel.java | 3 ++ .../com/mbed/lwm2m/model/ObjectRegistry.java | 3 ++ .../lwm2m/model/OpaqueResourceValidator.java | 3 ++ .../com/mbed/lwm2m/model/ResourceModel.java | 3 ++ .../mbed/lwm2m/model/ResourceValidator.java | 3 ++ .../lwm2m/model/StringResourceValidator.java | 3 ++ .../main/java/com/mbed/lwm2m/model/Type.java | 3 ++ .../src/main/java/com/mbed/lwm2m/tlv/TLV.java | 3 ++ .../com/mbed/lwm2m/tlv/TLVDeserializer.java | 3 ++ .../com/mbed/lwm2m/tlv/TLVSerializer.java | 3 ++ .../lwm2m/transport/TransportBinding.java | 3 ++ .../TransportBindingParseException.java | 3 ++ .../java/com/mbed/lwm2m/utils/HexArray.java | 3 ++ .../test/java/com/mbed/lwm2m/LWM2MIDTest.java | 3 ++ .../mbed/lwm2m/LWM2MObjectInstanceTest.java | 3 ++ .../java/com/mbed/lwm2m/LWM2MObjectTest.java | 3 ++ .../mbed/lwm2m/LWM2MResourceInstanceTest.java | 3 ++ .../com/mbed/lwm2m/LWM2MResourceTest.java | 3 ++ .../mbed/lwm2m/json/JsonDeserializerTest.java | 3 ++ .../lwm2m/json/JsonResourceArrayTest.java | 3 ++ .../com/mbed/lwm2m/json/JsonResourceTest.java | 3 ++ .../mbed/lwm2m/json/JsonSerializerTest.java | 3 ++ .../mbed/lwm2m/model/ObjectRegistryTest.java | 3 ++ .../mbed/lwm2m/model/ResourceModelTest.java | 3 ++ .../mbed/lwm2m/tlv/TLVDeserializerTest.java | 3 ++ .../com/mbed/lwm2m/tlv/TLVSerializerTest.java | 3 ++ .../lwm2m/transport/TransportBindingTest.java | 3 ++ pmd-rules.xml | 3 ++ pom.xml | 3 ++ spotbugs-exlude.xml | 3 ++ 245 files changed, 757 insertions(+), 15 deletions(-) diff --git a/.github/workflows/PR-check.yml b/.github/workflows/PR-check.yml index 6f653bf0..1e8b0518 100644 --- a/.github/workflows/PR-check.yml +++ b/.github/workflows/PR-check.yml @@ -28,7 +28,20 @@ jobs: run: | cd $PDM_BINARY_ARTIFACTS_DIR bash init.sh --force + - name: Check hostname + run: | + HOST=$(hostname) + echo "Hostname is $HOST" + if [ "$HOST" != "localhost" ]; then + echo "Changing hostname to localhost, tests will fail otherwise." + sudo hostname localhost + fi - run: mvn clean install -P ci + - name: Publish Test Report + if: success() || failure() + uses: scacap/action-surefire-report@v1 + with: + check_name: mvn clean install -P ci test report pysh-check: runs-on: ubuntu-22.04 diff --git a/coap-core/src/main/java/com/mbed/coap/CoapConstants.java b/coap-core/src/main/java/com/mbed/coap/CoapConstants.java index ca989051..563f6c9e 100644 --- a/coap-core/src/main/java/com/mbed/coap/CoapConstants.java +++ b/coap-core/src/main/java/com/mbed/coap/CoapConstants.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/client/CoapClient.java b/coap-core/src/main/java/com/mbed/coap/client/CoapClient.java index 37527745..59f63bad 100644 --- a/coap-core/src/main/java/com/mbed/coap/client/CoapClient.java +++ b/coap-core/src/main/java/com/mbed/coap/client/CoapClient.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/client/CoapClientBuilder.java b/coap-core/src/main/java/com/mbed/coap/client/CoapClientBuilder.java index 915f51b6..5b1d5322 100644 --- a/coap-core/src/main/java/com/mbed/coap/client/CoapClientBuilder.java +++ b/coap-core/src/main/java/com/mbed/coap/client/CoapClientBuilder.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/client/CoapRequestTarget.java b/coap-core/src/main/java/com/mbed/coap/client/CoapRequestTarget.java index 7fbedce0..1665eb37 100644 --- a/coap-core/src/main/java/com/mbed/coap/client/CoapRequestTarget.java +++ b/coap-core/src/main/java/com/mbed/coap/client/CoapRequestTarget.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/client/ObservationHandlerImpl.java b/coap-core/src/main/java/com/mbed/coap/client/ObservationHandlerImpl.java index bafeb1d5..a28a8d52 100644 --- a/coap-core/src/main/java/com/mbed/coap/client/ObservationHandlerImpl.java +++ b/coap-core/src/main/java/com/mbed/coap/client/ObservationHandlerImpl.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/client/ObservationListener.java b/coap-core/src/main/java/com/mbed/coap/client/ObservationListener.java index 13c0aa1e..c5337af1 100644 --- a/coap-core/src/main/java/com/mbed/coap/client/ObservationListener.java +++ b/coap-core/src/main/java/com/mbed/coap/client/ObservationListener.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/client/RegistrationManager.java b/coap-core/src/main/java/com/mbed/coap/client/RegistrationManager.java index ec63bdca..2ea97585 100644 --- a/coap-core/src/main/java/com/mbed/coap/client/RegistrationManager.java +++ b/coap-core/src/main/java/com/mbed/coap/client/RegistrationManager.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/client/SyncRequestTarget.java b/coap-core/src/main/java/com/mbed/coap/client/SyncRequestTarget.java index 8115917f..04de7715 100644 --- a/coap-core/src/main/java/com/mbed/coap/client/SyncRequestTarget.java +++ b/coap-core/src/main/java/com/mbed/coap/client/SyncRequestTarget.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/exception/CoapBlockException.java b/coap-core/src/main/java/com/mbed/coap/exception/CoapBlockException.java index a9906ffb..b6a86984 100644 --- a/coap-core/src/main/java/com/mbed/coap/exception/CoapBlockException.java +++ b/coap-core/src/main/java/com/mbed/coap/exception/CoapBlockException.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/exception/CoapBlockTooLargeEntityException.java b/coap-core/src/main/java/com/mbed/coap/exception/CoapBlockTooLargeEntityException.java index 48e2b6ee..ec6da653 100644 --- a/coap-core/src/main/java/com/mbed/coap/exception/CoapBlockTooLargeEntityException.java +++ b/coap-core/src/main/java/com/mbed/coap/exception/CoapBlockTooLargeEntityException.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/exception/CoapCodeException.java b/coap-core/src/main/java/com/mbed/coap/exception/CoapCodeException.java index 9faf9fa2..b933d5cc 100644 --- a/coap-core/src/main/java/com/mbed/coap/exception/CoapCodeException.java +++ b/coap-core/src/main/java/com/mbed/coap/exception/CoapCodeException.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/exception/CoapException.java b/coap-core/src/main/java/com/mbed/coap/exception/CoapException.java index 2a17e01d..3126a6e1 100644 --- a/coap-core/src/main/java/com/mbed/coap/exception/CoapException.java +++ b/coap-core/src/main/java/com/mbed/coap/exception/CoapException.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/exception/CoapMessageFormatException.java b/coap-core/src/main/java/com/mbed/coap/exception/CoapMessageFormatException.java index cca9ce71..846c6455 100644 --- a/coap-core/src/main/java/com/mbed/coap/exception/CoapMessageFormatException.java +++ b/coap-core/src/main/java/com/mbed/coap/exception/CoapMessageFormatException.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/exception/CoapRequestEntityIncomplete.java b/coap-core/src/main/java/com/mbed/coap/exception/CoapRequestEntityIncomplete.java index 42a55d9d..58e15ac7 100644 --- a/coap-core/src/main/java/com/mbed/coap/exception/CoapRequestEntityIncomplete.java +++ b/coap-core/src/main/java/com/mbed/coap/exception/CoapRequestEntityIncomplete.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/exception/CoapRequestEntityTooLarge.java b/coap-core/src/main/java/com/mbed/coap/exception/CoapRequestEntityTooLarge.java index ab007cd4..e9a3cb81 100644 --- a/coap-core/src/main/java/com/mbed/coap/exception/CoapRequestEntityTooLarge.java +++ b/coap-core/src/main/java/com/mbed/coap/exception/CoapRequestEntityTooLarge.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/exception/CoapTimeoutException.java b/coap-core/src/main/java/com/mbed/coap/exception/CoapTimeoutException.java index 2dabcf69..b2e34397 100644 --- a/coap-core/src/main/java/com/mbed/coap/exception/CoapTimeoutException.java +++ b/coap-core/src/main/java/com/mbed/coap/exception/CoapTimeoutException.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/exception/CoapUnknownOptionException.java b/coap-core/src/main/java/com/mbed/coap/exception/CoapUnknownOptionException.java index c5ee1bba..514fa977 100644 --- a/coap-core/src/main/java/com/mbed/coap/exception/CoapUnknownOptionException.java +++ b/coap-core/src/main/java/com/mbed/coap/exception/CoapUnknownOptionException.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/exception/ObservationNotEstablishedException.java b/coap-core/src/main/java/com/mbed/coap/exception/ObservationNotEstablishedException.java index 7a92ccb4..ccfa52ca 100644 --- a/coap-core/src/main/java/com/mbed/coap/exception/ObservationNotEstablishedException.java +++ b/coap-core/src/main/java/com/mbed/coap/exception/ObservationNotEstablishedException.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/exception/ObservationTerminatedException.java b/coap-core/src/main/java/com/mbed/coap/exception/ObservationTerminatedException.java index e0f1f34f..cd758138 100644 --- a/coap-core/src/main/java/com/mbed/coap/exception/ObservationTerminatedException.java +++ b/coap-core/src/main/java/com/mbed/coap/exception/ObservationTerminatedException.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/exception/TooManyRequestsForEndpointException.java b/coap-core/src/main/java/com/mbed/coap/exception/TooManyRequestsForEndpointException.java index 7f64ced1..cc85f3f9 100644 --- a/coap-core/src/main/java/com/mbed/coap/exception/TooManyRequestsForEndpointException.java +++ b/coap-core/src/main/java/com/mbed/coap/exception/TooManyRequestsForEndpointException.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/linkformat/LinkFormat.java b/coap-core/src/main/java/com/mbed/coap/linkformat/LinkFormat.java index 9d8746bb..cae5345a 100644 --- a/coap-core/src/main/java/com/mbed/coap/linkformat/LinkFormat.java +++ b/coap-core/src/main/java/com/mbed/coap/linkformat/LinkFormat.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/linkformat/LinkFormatBuilder.java b/coap-core/src/main/java/com/mbed/coap/linkformat/LinkFormatBuilder.java index 4b0abd33..0e250de6 100644 --- a/coap-core/src/main/java/com/mbed/coap/linkformat/LinkFormatBuilder.java +++ b/coap-core/src/main/java/com/mbed/coap/linkformat/LinkFormatBuilder.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/linkformat/PToken.java b/coap-core/src/main/java/com/mbed/coap/linkformat/PToken.java index 52ee0f59..9832d7d3 100644 --- a/coap-core/src/main/java/com/mbed/coap/linkformat/PToken.java +++ b/coap-core/src/main/java/com/mbed/coap/linkformat/PToken.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/observe/AbstractObservableResource.java b/coap-core/src/main/java/com/mbed/coap/observe/AbstractObservableResource.java index 90c0444f..3cc27b75 100644 --- a/coap-core/src/main/java/com/mbed/coap/observe/AbstractObservableResource.java +++ b/coap-core/src/main/java/com/mbed/coap/observe/AbstractObservableResource.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/observe/NotificationAckCallback.java b/coap-core/src/main/java/com/mbed/coap/observe/NotificationAckCallback.java index 4cc0423f..cb5790b5 100644 --- a/coap-core/src/main/java/com/mbed/coap/observe/NotificationAckCallback.java +++ b/coap-core/src/main/java/com/mbed/coap/observe/NotificationAckCallback.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/observe/NotificationDeliveryListener.java b/coap-core/src/main/java/com/mbed/coap/observe/NotificationDeliveryListener.java index 57d3f39b..9bedd218 100644 --- a/coap-core/src/main/java/com/mbed/coap/observe/NotificationDeliveryListener.java +++ b/coap-core/src/main/java/com/mbed/coap/observe/NotificationDeliveryListener.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/observe/NotificationDeliveryListenerNULL.java b/coap-core/src/main/java/com/mbed/coap/observe/NotificationDeliveryListenerNULL.java index 803b4118..ca2eb49c 100644 --- a/coap-core/src/main/java/com/mbed/coap/observe/NotificationDeliveryListenerNULL.java +++ b/coap-core/src/main/java/com/mbed/coap/observe/NotificationDeliveryListenerNULL.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/observe/ObservationRelation.java b/coap-core/src/main/java/com/mbed/coap/observe/ObservationRelation.java index 6339d6cc..fd7d89e5 100644 --- a/coap-core/src/main/java/com/mbed/coap/observe/ObservationRelation.java +++ b/coap-core/src/main/java/com/mbed/coap/observe/ObservationRelation.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/observe/SimpleObservableResource.java b/coap-core/src/main/java/com/mbed/coap/observe/SimpleObservableResource.java index cc7c5f4d..a85ea430 100644 --- a/coap-core/src/main/java/com/mbed/coap/observe/SimpleObservableResource.java +++ b/coap-core/src/main/java/com/mbed/coap/observe/SimpleObservableResource.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/packet/BasicHeaderOptions.java b/coap-core/src/main/java/com/mbed/coap/packet/BasicHeaderOptions.java index 74b3f621..c49cd6bf 100644 --- a/coap-core/src/main/java/com/mbed/coap/packet/BasicHeaderOptions.java +++ b/coap-core/src/main/java/com/mbed/coap/packet/BasicHeaderOptions.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/packet/BlockOption.java b/coap-core/src/main/java/com/mbed/coap/packet/BlockOption.java index e00aeb04..7ebf682e 100644 --- a/coap-core/src/main/java/com/mbed/coap/packet/BlockOption.java +++ b/coap-core/src/main/java/com/mbed/coap/packet/BlockOption.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/packet/BlockSize.java b/coap-core/src/main/java/com/mbed/coap/packet/BlockSize.java index a6c757a0..de6372b0 100644 --- a/coap-core/src/main/java/com/mbed/coap/packet/BlockSize.java +++ b/coap-core/src/main/java/com/mbed/coap/packet/BlockSize.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/packet/CoapPacket.java b/coap-core/src/main/java/com/mbed/coap/packet/CoapPacket.java index 71a9c63b..fd172d70 100644 --- a/coap-core/src/main/java/com/mbed/coap/packet/CoapPacket.java +++ b/coap-core/src/main/java/com/mbed/coap/packet/CoapPacket.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/packet/CoapTcpPacketSerializer.java b/coap-core/src/main/java/com/mbed/coap/packet/CoapTcpPacketSerializer.java index 58a3fcd2..b8e85843 100644 --- a/coap-core/src/main/java/com/mbed/coap/packet/CoapTcpPacketSerializer.java +++ b/coap-core/src/main/java/com/mbed/coap/packet/CoapTcpPacketSerializer.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/packet/Code.java b/coap-core/src/main/java/com/mbed/coap/packet/Code.java index 9594f9db..48721d2b 100644 --- a/coap-core/src/main/java/com/mbed/coap/packet/Code.java +++ b/coap-core/src/main/java/com/mbed/coap/packet/Code.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/packet/DataConvertingUtility.java b/coap-core/src/main/java/com/mbed/coap/packet/DataConvertingUtility.java index 203bfed9..1450f4db 100644 --- a/coap-core/src/main/java/com/mbed/coap/packet/DataConvertingUtility.java +++ b/coap-core/src/main/java/com/mbed/coap/packet/DataConvertingUtility.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/packet/HeaderOptions.java b/coap-core/src/main/java/com/mbed/coap/packet/HeaderOptions.java index e5063d5b..0221ffe4 100644 --- a/coap-core/src/main/java/com/mbed/coap/packet/HeaderOptions.java +++ b/coap-core/src/main/java/com/mbed/coap/packet/HeaderOptions.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/packet/MediaTypes.java b/coap-core/src/main/java/com/mbed/coap/packet/MediaTypes.java index 84d2c13b..d0c4d7ee 100644 --- a/coap-core/src/main/java/com/mbed/coap/packet/MediaTypes.java +++ b/coap-core/src/main/java/com/mbed/coap/packet/MediaTypes.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/packet/MessageType.java b/coap-core/src/main/java/com/mbed/coap/packet/MessageType.java index cca4b274..7382577a 100644 --- a/coap-core/src/main/java/com/mbed/coap/packet/MessageType.java +++ b/coap-core/src/main/java/com/mbed/coap/packet/MessageType.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/packet/Method.java b/coap-core/src/main/java/com/mbed/coap/packet/Method.java index 3c56d51e..f7ccec3d 100644 --- a/coap-core/src/main/java/com/mbed/coap/packet/Method.java +++ b/coap-core/src/main/java/com/mbed/coap/packet/Method.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/packet/PacketUtils.java b/coap-core/src/main/java/com/mbed/coap/packet/PacketUtils.java index 1f2c2c30..c5f79258 100644 --- a/coap-core/src/main/java/com/mbed/coap/packet/PacketUtils.java +++ b/coap-core/src/main/java/com/mbed/coap/packet/PacketUtils.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/packet/RawOption.java b/coap-core/src/main/java/com/mbed/coap/packet/RawOption.java index 2a231c60..8d8878cb 100644 --- a/coap-core/src/main/java/com/mbed/coap/packet/RawOption.java +++ b/coap-core/src/main/java/com/mbed/coap/packet/RawOption.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/packet/SignalingOptions.java b/coap-core/src/main/java/com/mbed/coap/packet/SignalingOptions.java index 1c690761..e6eff2c1 100644 --- a/coap-core/src/main/java/com/mbed/coap/packet/SignalingOptions.java +++ b/coap-core/src/main/java/com/mbed/coap/packet/SignalingOptions.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/packet/StrictInputStream.java b/coap-core/src/main/java/com/mbed/coap/packet/StrictInputStream.java index 490bb077..1fde0070 100644 --- a/coap-core/src/main/java/com/mbed/coap/packet/StrictInputStream.java +++ b/coap-core/src/main/java/com/mbed/coap/packet/StrictInputStream.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/CoapExchange.java b/coap-core/src/main/java/com/mbed/coap/server/CoapExchange.java index 7e6a7bdc..d7306701 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/CoapExchange.java +++ b/coap-core/src/main/java/com/mbed/coap/server/CoapExchange.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/CoapHandler.java b/coap-core/src/main/java/com/mbed/coap/server/CoapHandler.java index 64d56723..69583922 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/CoapHandler.java +++ b/coap-core/src/main/java/com/mbed/coap/server/CoapHandler.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/CoapRequestId.java b/coap-core/src/main/java/com/mbed/coap/server/CoapRequestId.java index a507ea20..87b98c55 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/CoapRequestId.java +++ b/coap-core/src/main/java/com/mbed/coap/server/CoapRequestId.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/CoapServer.java b/coap-core/src/main/java/com/mbed/coap/server/CoapServer.java index e0125071..ba226e5e 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/CoapServer.java +++ b/coap-core/src/main/java/com/mbed/coap/server/CoapServer.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/CoapServerBuilder.java b/coap-core/src/main/java/com/mbed/coap/server/CoapServerBuilder.java index 889a06e6..e6a7a609 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/CoapServerBuilder.java +++ b/coap-core/src/main/java/com/mbed/coap/server/CoapServerBuilder.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/CoapTcpCSMStorage.java b/coap-core/src/main/java/com/mbed/coap/server/CoapTcpCSMStorage.java index 84879545..26261cad 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/CoapTcpCSMStorage.java +++ b/coap-core/src/main/java/com/mbed/coap/server/CoapTcpCSMStorage.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/CoapTransactionCallback.java b/coap-core/src/main/java/com/mbed/coap/server/CoapTransactionCallback.java index c159c71c..cc00b6a8 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/CoapTransactionCallback.java +++ b/coap-core/src/main/java/com/mbed/coap/server/CoapTransactionCallback.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/DuplicatedCoapMessageCallback.java b/coap-core/src/main/java/com/mbed/coap/server/DuplicatedCoapMessageCallback.java index d11579d5..748f8cd6 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/DuplicatedCoapMessageCallback.java +++ b/coap-core/src/main/java/com/mbed/coap/server/DuplicatedCoapMessageCallback.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/MessageIdSupplier.java b/coap-core/src/main/java/com/mbed/coap/server/MessageIdSupplier.java index c64708b2..4723331b 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/MessageIdSupplier.java +++ b/coap-core/src/main/java/com/mbed/coap/server/MessageIdSupplier.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/MessageIdSupplierImpl.java b/coap-core/src/main/java/com/mbed/coap/server/MessageIdSupplierImpl.java index 7a335d1b..f83e2958 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/MessageIdSupplierImpl.java +++ b/coap-core/src/main/java/com/mbed/coap/server/MessageIdSupplierImpl.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/ObservationHandler.java b/coap-core/src/main/java/com/mbed/coap/server/ObservationHandler.java index cf9c9926..11e25931 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/ObservationHandler.java +++ b/coap-core/src/main/java/com/mbed/coap/server/ObservationHandler.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/ObservationIDGenerator.java b/coap-core/src/main/java/com/mbed/coap/server/ObservationIDGenerator.java index ebf63eaa..bafe590c 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/ObservationIDGenerator.java +++ b/coap-core/src/main/java/com/mbed/coap/server/ObservationIDGenerator.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/PutOnlyMap.java b/coap-core/src/main/java/com/mbed/coap/server/PutOnlyMap.java index 62668331..3347b145 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/PutOnlyMap.java +++ b/coap-core/src/main/java/com/mbed/coap/server/PutOnlyMap.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/SimpleObservationIDGenerator.java b/coap-core/src/main/java/com/mbed/coap/server/SimpleObservationIDGenerator.java index 71fb3ed8..5beb5e2a 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/SimpleObservationIDGenerator.java +++ b/coap-core/src/main/java/com/mbed/coap/server/SimpleObservationIDGenerator.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/BlockRequestId.java b/coap-core/src/main/java/com/mbed/coap/server/internal/BlockRequestId.java index 18ffe83e..e82d7d6a 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/BlockRequestId.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/BlockRequestId.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/BlockWiseCallback.java b/coap-core/src/main/java/com/mbed/coap/server/internal/BlockWiseCallback.java index 447c5e13..f005e735 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/BlockWiseCallback.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/BlockWiseCallback.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/BlockWiseIncomingTransaction.java b/coap-core/src/main/java/com/mbed/coap/server/internal/BlockWiseIncomingTransaction.java index f7d144fe..d734b21c 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/BlockWiseIncomingTransaction.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/BlockWiseIncomingTransaction.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/BlockWiseTransfer.java b/coap-core/src/main/java/com/mbed/coap/server/internal/BlockWiseTransfer.java index 130946e3..619ba556 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/BlockWiseTransfer.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/BlockWiseTransfer.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/CoapExchangeImpl.java b/coap-core/src/main/java/com/mbed/coap/server/internal/CoapExchangeImpl.java index 7d6dd567..26b8fad3 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/CoapExchangeImpl.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/CoapExchangeImpl.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/CoapMessaging.java b/coap-core/src/main/java/com/mbed/coap/server/internal/CoapMessaging.java index 73bfe49b..faf6dc63 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/CoapMessaging.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/CoapMessaging.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/CoapRequestHandler.java b/coap-core/src/main/java/com/mbed/coap/server/internal/CoapRequestHandler.java index 16489e93..4c0aa302 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/CoapRequestHandler.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/CoapRequestHandler.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/CoapServerBlocks.java b/coap-core/src/main/java/com/mbed/coap/server/internal/CoapServerBlocks.java index a218df85..a0353331 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/CoapServerBlocks.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/CoapServerBlocks.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/CoapServerUtils.java b/coap-core/src/main/java/com/mbed/coap/server/internal/CoapServerUtils.java index dfdf0f1d..de46c0aa 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/CoapServerUtils.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/CoapServerUtils.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/CoapTcpCSM.java b/coap-core/src/main/java/com/mbed/coap/server/internal/CoapTcpCSM.java index d1246df8..81948759 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/CoapTcpCSM.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/CoapTcpCSM.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/CoapTcpCSMStorageImpl.java b/coap-core/src/main/java/com/mbed/coap/server/internal/CoapTcpCSMStorageImpl.java index c76e6b30..91e8516a 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/CoapTcpCSMStorageImpl.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/CoapTcpCSMStorageImpl.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/CoapTcpMessaging.java b/coap-core/src/main/java/com/mbed/coap/server/internal/CoapTcpMessaging.java index fe48e8f9..18d6e793 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/CoapTcpMessaging.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/CoapTcpMessaging.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/CoapTransaction.java b/coap-core/src/main/java/com/mbed/coap/server/internal/CoapTransaction.java index 494db6b1..47846a5e 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/CoapTransaction.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/CoapTransaction.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/CoapTransactionId.java b/coap-core/src/main/java/com/mbed/coap/server/internal/CoapTransactionId.java index 21d2cf48..64cc6d8d 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/CoapTransactionId.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/CoapTransactionId.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/CoapUdpMessaging.java b/coap-core/src/main/java/com/mbed/coap/server/internal/CoapUdpMessaging.java index cada1f95..1a262714 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/CoapUdpMessaging.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/CoapUdpMessaging.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/DefaultDuplicateDetectorCache.java b/coap-core/src/main/java/com/mbed/coap/server/internal/DefaultDuplicateDetectorCache.java index 6f588bd9..3d979d14 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/DefaultDuplicateDetectorCache.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/DefaultDuplicateDetectorCache.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/DelayedTransactionId.java b/coap-core/src/main/java/com/mbed/coap/server/internal/DelayedTransactionId.java index 520f99fe..4cf37a85 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/DelayedTransactionId.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/DelayedTransactionId.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/DelayedTransactionManager.java b/coap-core/src/main/java/com/mbed/coap/server/internal/DelayedTransactionManager.java index f4a8ffbe..97e53024 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/DelayedTransactionManager.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/DelayedTransactionManager.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/DuplicationDetector.java b/coap-core/src/main/java/com/mbed/coap/server/internal/DuplicationDetector.java index b4eb362e..5b01fa37 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/DuplicationDetector.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/DuplicationDetector.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/ResourceLinks.java b/coap-core/src/main/java/com/mbed/coap/server/internal/ResourceLinks.java index 6df1d572..d65d2c33 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/ResourceLinks.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/ResourceLinks.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/TransactionManager.java b/coap-core/src/main/java/com/mbed/coap/server/internal/TransactionManager.java index 91602449..a3a815d9 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/TransactionManager.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/TransactionManager.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/TransactionQueue.java b/coap-core/src/main/java/com/mbed/coap/server/internal/TransactionQueue.java index da64fafa..a9258067 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/TransactionQueue.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/TransactionQueue.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/server/internal/UriMatcher.java b/coap-core/src/main/java/com/mbed/coap/server/internal/UriMatcher.java index 6545cb98..a82da732 100644 --- a/coap-core/src/main/java/com/mbed/coap/server/internal/UriMatcher.java +++ b/coap-core/src/main/java/com/mbed/coap/server/internal/UriMatcher.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/transmission/CoapTimeout.java b/coap-core/src/main/java/com/mbed/coap/transmission/CoapTimeout.java index 6eb218b7..822dc450 100644 --- a/coap-core/src/main/java/com/mbed/coap/transmission/CoapTimeout.java +++ b/coap-core/src/main/java/com/mbed/coap/transmission/CoapTimeout.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/transmission/SingleTimeout.java b/coap-core/src/main/java/com/mbed/coap/transmission/SingleTimeout.java index 57203e90..0d0c135b 100644 --- a/coap-core/src/main/java/com/mbed/coap/transmission/SingleTimeout.java +++ b/coap-core/src/main/java/com/mbed/coap/transmission/SingleTimeout.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/transmission/TransmissionTimeout.java b/coap-core/src/main/java/com/mbed/coap/transmission/TransmissionTimeout.java index adfee3f9..b8328657 100644 --- a/coap-core/src/main/java/com/mbed/coap/transmission/TransmissionTimeout.java +++ b/coap-core/src/main/java/com/mbed/coap/transmission/TransmissionTimeout.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/transport/BlockingCoapTransport.java b/coap-core/src/main/java/com/mbed/coap/transport/BlockingCoapTransport.java index 066c4903..d1e58c69 100644 --- a/coap-core/src/main/java/com/mbed/coap/transport/BlockingCoapTransport.java +++ b/coap-core/src/main/java/com/mbed/coap/transport/BlockingCoapTransport.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/transport/CoapReceiver.java b/coap-core/src/main/java/com/mbed/coap/transport/CoapReceiver.java index f38a55fe..686b4da9 100644 --- a/coap-core/src/main/java/com/mbed/coap/transport/CoapReceiver.java +++ b/coap-core/src/main/java/com/mbed/coap/transport/CoapReceiver.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/transport/CoapTransport.java b/coap-core/src/main/java/com/mbed/coap/transport/CoapTransport.java index bda56157..edf48253 100644 --- a/coap-core/src/main/java/com/mbed/coap/transport/CoapTransport.java +++ b/coap-core/src/main/java/com/mbed/coap/transport/CoapTransport.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/transport/InMemoryCoapTransport.java b/coap-core/src/main/java/com/mbed/coap/transport/InMemoryCoapTransport.java index 68522654..f1d0934f 100644 --- a/coap-core/src/main/java/com/mbed/coap/transport/InMemoryCoapTransport.java +++ b/coap-core/src/main/java/com/mbed/coap/transport/InMemoryCoapTransport.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/transport/TransportContext.java b/coap-core/src/main/java/com/mbed/coap/transport/TransportContext.java index 46ba2300..7cc46ef3 100644 --- a/coap-core/src/main/java/com/mbed/coap/transport/TransportContext.java +++ b/coap-core/src/main/java/com/mbed/coap/transport/TransportContext.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/transport/TransportExecutors.java b/coap-core/src/main/java/com/mbed/coap/transport/TransportExecutors.java index a1a92c28..a28614b5 100644 --- a/coap-core/src/main/java/com/mbed/coap/transport/TransportExecutors.java +++ b/coap-core/src/main/java/com/mbed/coap/transport/TransportExecutors.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/transport/javassl/CoapSerializer.java b/coap-core/src/main/java/com/mbed/coap/transport/javassl/CoapSerializer.java index 075f00d0..31f5b762 100644 --- a/coap-core/src/main/java/com/mbed/coap/transport/javassl/CoapSerializer.java +++ b/coap-core/src/main/java/com/mbed/coap/transport/javassl/CoapSerializer.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/transport/javassl/SSLSocketClientTransport.java b/coap-core/src/main/java/com/mbed/coap/transport/javassl/SSLSocketClientTransport.java index e47a965f..fd0d9e92 100644 --- a/coap-core/src/main/java/com/mbed/coap/transport/javassl/SSLSocketClientTransport.java +++ b/coap-core/src/main/java/com/mbed/coap/transport/javassl/SSLSocketClientTransport.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/transport/javassl/SocketClientTransport.java b/coap-core/src/main/java/com/mbed/coap/transport/javassl/SocketClientTransport.java index 3b9f604e..fb2e2511 100644 --- a/coap-core/src/main/java/com/mbed/coap/transport/javassl/SocketClientTransport.java +++ b/coap-core/src/main/java/com/mbed/coap/transport/javassl/SocketClientTransport.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/transport/udp/BlockingSocket.java b/coap-core/src/main/java/com/mbed/coap/transport/udp/BlockingSocket.java index deefaee1..e47b19bf 100644 --- a/coap-core/src/main/java/com/mbed/coap/transport/udp/BlockingSocket.java +++ b/coap-core/src/main/java/com/mbed/coap/transport/udp/BlockingSocket.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/transport/udp/DatagramSocketAdapter.java b/coap-core/src/main/java/com/mbed/coap/transport/udp/DatagramSocketAdapter.java index 30c0748f..b8ad0f97 100644 --- a/coap-core/src/main/java/com/mbed/coap/transport/udp/DatagramSocketAdapter.java +++ b/coap-core/src/main/java/com/mbed/coap/transport/udp/DatagramSocketAdapter.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/transport/udp/DatagramSocketTransport.java b/coap-core/src/main/java/com/mbed/coap/transport/udp/DatagramSocketTransport.java index c4b68523..f0b3547d 100644 --- a/coap-core/src/main/java/com/mbed/coap/transport/udp/DatagramSocketTransport.java +++ b/coap-core/src/main/java/com/mbed/coap/transport/udp/DatagramSocketTransport.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/utils/Callback.java b/coap-core/src/main/java/com/mbed/coap/utils/Callback.java index f50ccb55..78e822c0 100644 --- a/coap-core/src/main/java/com/mbed/coap/utils/Callback.java +++ b/coap-core/src/main/java/com/mbed/coap/utils/Callback.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/utils/CoapResource.java b/coap-core/src/main/java/com/mbed/coap/utils/CoapResource.java index eedcc387..534a8d84 100644 --- a/coap-core/src/main/java/com/mbed/coap/utils/CoapResource.java +++ b/coap-core/src/main/java/com/mbed/coap/utils/CoapResource.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/utils/FutureCallbackAdapter.java b/coap-core/src/main/java/com/mbed/coap/utils/FutureCallbackAdapter.java index ded0cdab..437ff53a 100644 --- a/coap-core/src/main/java/com/mbed/coap/utils/FutureCallbackAdapter.java +++ b/coap-core/src/main/java/com/mbed/coap/utils/FutureCallbackAdapter.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/utils/HexArray.java b/coap-core/src/main/java/com/mbed/coap/utils/HexArray.java index d39e1858..346e3cd1 100644 --- a/coap-core/src/main/java/com/mbed/coap/utils/HexArray.java +++ b/coap-core/src/main/java/com/mbed/coap/utils/HexArray.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/utils/IpPortAddress.java b/coap-core/src/main/java/com/mbed/coap/utils/IpPortAddress.java index 2248b22c..1a417f7b 100644 --- a/coap-core/src/main/java/com/mbed/coap/utils/IpPortAddress.java +++ b/coap-core/src/main/java/com/mbed/coap/utils/IpPortAddress.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/utils/ReadOnlyCoapResource.java b/coap-core/src/main/java/com/mbed/coap/utils/ReadOnlyCoapResource.java index 411c202c..fd7bdd0d 100644 --- a/coap-core/src/main/java/com/mbed/coap/utils/ReadOnlyCoapResource.java +++ b/coap-core/src/main/java/com/mbed/coap/utils/ReadOnlyCoapResource.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/utils/RequestCallback.java b/coap-core/src/main/java/com/mbed/coap/utils/RequestCallback.java index 9c8c6979..06a8493f 100644 --- a/coap-core/src/main/java/com/mbed/coap/utils/RequestCallback.java +++ b/coap-core/src/main/java/com/mbed/coap/utils/RequestCallback.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/main/java/com/mbed/coap/utils/Token.java b/coap-core/src/main/java/com/mbed/coap/utils/Token.java index 455b8d81..36124626 100644 --- a/coap-core/src/main/java/com/mbed/coap/utils/Token.java +++ b/coap-core/src/main/java/com/mbed/coap/utils/Token.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/client/CoapClientTest.java b/coap-core/src/test/java/com/mbed/coap/client/CoapClientTest.java index 9499e796..5ad8f73c 100644 --- a/coap-core/src/test/java/com/mbed/coap/client/CoapClientTest.java +++ b/coap-core/src/test/java/com/mbed/coap/client/CoapClientTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/client/CoapRequestTargetTest.java b/coap-core/src/test/java/com/mbed/coap/client/CoapRequestTargetTest.java index fde97f8c..0c0dbd59 100644 --- a/coap-core/src/test/java/com/mbed/coap/client/CoapRequestTargetTest.java +++ b/coap-core/src/test/java/com/mbed/coap/client/CoapRequestTargetTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/client/RegistrationManagerTest.java b/coap-core/src/test/java/com/mbed/coap/client/RegistrationManagerTest.java index 384c8649..f5d5b381 100644 --- a/coap-core/src/test/java/com/mbed/coap/client/RegistrationManagerTest.java +++ b/coap-core/src/test/java/com/mbed/coap/client/RegistrationManagerTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/linkformat/LinkFormatTest.java b/coap-core/src/test/java/com/mbed/coap/linkformat/LinkFormatTest.java index 9647b6c2..c27edd9b 100644 --- a/coap-core/src/test/java/com/mbed/coap/linkformat/LinkFormatTest.java +++ b/coap-core/src/test/java/com/mbed/coap/linkformat/LinkFormatTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/observe/AbstractObservableResourceTest.java b/coap-core/src/test/java/com/mbed/coap/observe/AbstractObservableResourceTest.java index 73a98fd5..5fe79648 100644 --- a/coap-core/src/test/java/com/mbed/coap/observe/AbstractObservableResourceTest.java +++ b/coap-core/src/test/java/com/mbed/coap/observe/AbstractObservableResourceTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/observe/SimpleObservableResourceTest.java b/coap-core/src/test/java/com/mbed/coap/observe/SimpleObservableResourceTest.java index faf6be85..a256a2f4 100644 --- a/coap-core/src/test/java/com/mbed/coap/observe/SimpleObservableResourceTest.java +++ b/coap-core/src/test/java/com/mbed/coap/observe/SimpleObservableResourceTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/packet/BlockOptionTest.java b/coap-core/src/test/java/com/mbed/coap/packet/BlockOptionTest.java index b0ef775b..5c22677b 100644 --- a/coap-core/src/test/java/com/mbed/coap/packet/BlockOptionTest.java +++ b/coap-core/src/test/java/com/mbed/coap/packet/BlockOptionTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/packet/BlockSizeTest.java b/coap-core/src/test/java/com/mbed/coap/packet/BlockSizeTest.java index 57f00c86..940298ef 100644 --- a/coap-core/src/test/java/com/mbed/coap/packet/BlockSizeTest.java +++ b/coap-core/src/test/java/com/mbed/coap/packet/BlockSizeTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/packet/CoapPacketTest.java b/coap-core/src/test/java/com/mbed/coap/packet/CoapPacketTest.java index 79bfa2fd..93709995 100644 --- a/coap-core/src/test/java/com/mbed/coap/packet/CoapPacketTest.java +++ b/coap-core/src/test/java/com/mbed/coap/packet/CoapPacketTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/packet/CoapPacketTestBase.java b/coap-core/src/test/java/com/mbed/coap/packet/CoapPacketTestBase.java index e0c7b29e..8deb0444 100644 --- a/coap-core/src/test/java/com/mbed/coap/packet/CoapPacketTestBase.java +++ b/coap-core/src/test/java/com/mbed/coap/packet/CoapPacketTestBase.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/packet/CoapPacketToStringTest.java b/coap-core/src/test/java/com/mbed/coap/packet/CoapPacketToStringTest.java index b78b4c0e..1ad96924 100644 --- a/coap-core/src/test/java/com/mbed/coap/packet/CoapPacketToStringTest.java +++ b/coap-core/src/test/java/com/mbed/coap/packet/CoapPacketToStringTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/packet/CoapTcpPacketSerializerTest.java b/coap-core/src/test/java/com/mbed/coap/packet/CoapTcpPacketSerializerTest.java index 641714e0..ed0625b0 100644 --- a/coap-core/src/test/java/com/mbed/coap/packet/CoapTcpPacketSerializerTest.java +++ b/coap-core/src/test/java/com/mbed/coap/packet/CoapTcpPacketSerializerTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/packet/CodeTest.java b/coap-core/src/test/java/com/mbed/coap/packet/CodeTest.java index 5d45643b..f88ac6cd 100644 --- a/coap-core/src/test/java/com/mbed/coap/packet/CodeTest.java +++ b/coap-core/src/test/java/com/mbed/coap/packet/CodeTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/packet/DataConvertingUtilityTest.java b/coap-core/src/test/java/com/mbed/coap/packet/DataConvertingUtilityTest.java index 85f7d754..d2172d9a 100644 --- a/coap-core/src/test/java/com/mbed/coap/packet/DataConvertingUtilityTest.java +++ b/coap-core/src/test/java/com/mbed/coap/packet/DataConvertingUtilityTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/packet/HeaderOptionTest.java b/coap-core/src/test/java/com/mbed/coap/packet/HeaderOptionTest.java index e00014c9..4d96af43 100644 --- a/coap-core/src/test/java/com/mbed/coap/packet/HeaderOptionTest.java +++ b/coap-core/src/test/java/com/mbed/coap/packet/HeaderOptionTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/packet/MediaTypesTest.java b/coap-core/src/test/java/com/mbed/coap/packet/MediaTypesTest.java index ca140122..3c292334 100644 --- a/coap-core/src/test/java/com/mbed/coap/packet/MediaTypesTest.java +++ b/coap-core/src/test/java/com/mbed/coap/packet/MediaTypesTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/packet/RawOptionTest.java b/coap-core/src/test/java/com/mbed/coap/packet/RawOptionTest.java index 4d4cc1e5..2bdb0432 100644 --- a/coap-core/src/test/java/com/mbed/coap/packet/RawOptionTest.java +++ b/coap-core/src/test/java/com/mbed/coap/packet/RawOptionTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/packet/SignalingOptionsTest.java b/coap-core/src/test/java/com/mbed/coap/packet/SignalingOptionsTest.java index 5461627f..b2fa4cc1 100644 --- a/coap-core/src/test/java/com/mbed/coap/packet/SignalingOptionsTest.java +++ b/coap-core/src/test/java/com/mbed/coap/packet/SignalingOptionsTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/packet/StrictInputStreamTest.java b/coap-core/src/test/java/com/mbed/coap/packet/StrictInputStreamTest.java index 5e7e2778..01d3eda6 100644 --- a/coap-core/src/test/java/com/mbed/coap/packet/StrictInputStreamTest.java +++ b/coap-core/src/test/java/com/mbed/coap/packet/StrictInputStreamTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/server/CoapRequestIdTest.java b/coap-core/src/test/java/com/mbed/coap/server/CoapRequestIdTest.java index 228f5462..186af7ae 100644 --- a/coap-core/src/test/java/com/mbed/coap/server/CoapRequestIdTest.java +++ b/coap-core/src/test/java/com/mbed/coap/server/CoapRequestIdTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/server/CoapServerBuilderTest.java b/coap-core/src/test/java/com/mbed/coap/server/CoapServerBuilderTest.java index 5a42dc56..e0a7e001 100644 --- a/coap-core/src/test/java/com/mbed/coap/server/CoapServerBuilderTest.java +++ b/coap-core/src/test/java/com/mbed/coap/server/CoapServerBuilderTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/server/CoapServerTest.java b/coap-core/src/test/java/com/mbed/coap/server/CoapServerTest.java index 2b047363..732bf4b7 100644 --- a/coap-core/src/test/java/com/mbed/coap/server/CoapServerTest.java +++ b/coap-core/src/test/java/com/mbed/coap/server/CoapServerTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/server/ServerIntegrationTest.java b/coap-core/src/test/java/com/mbed/coap/server/ServerIntegrationTest.java index 39dc003d..143fd358 100644 --- a/coap-core/src/test/java/com/mbed/coap/server/ServerIntegrationTest.java +++ b/coap-core/src/test/java/com/mbed/coap/server/ServerIntegrationTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/server/internal/BlockWiseCallbackTest.java b/coap-core/src/test/java/com/mbed/coap/server/internal/BlockWiseCallbackTest.java index bdff0c4e..90376f0d 100644 --- a/coap-core/src/test/java/com/mbed/coap/server/internal/BlockWiseCallbackTest.java +++ b/coap-core/src/test/java/com/mbed/coap/server/internal/BlockWiseCallbackTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/server/internal/BlockWiseIncomingTransactionTest.java b/coap-core/src/test/java/com/mbed/coap/server/internal/BlockWiseIncomingTransactionTest.java index 2f55a4f7..ad6f8bb5 100644 --- a/coap-core/src/test/java/com/mbed/coap/server/internal/BlockWiseIncomingTransactionTest.java +++ b/coap-core/src/test/java/com/mbed/coap/server/internal/BlockWiseIncomingTransactionTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/server/internal/BlockWiseTransferTest.java b/coap-core/src/test/java/com/mbed/coap/server/internal/BlockWiseTransferTest.java index fc7a5c8e..d6dba3ec 100644 --- a/coap-core/src/test/java/com/mbed/coap/server/internal/BlockWiseTransferTest.java +++ b/coap-core/src/test/java/com/mbed/coap/server/internal/BlockWiseTransferTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/server/internal/CoapServerBlocksTest.java b/coap-core/src/test/java/com/mbed/coap/server/internal/CoapServerBlocksTest.java index d03ee551..cad735b9 100644 --- a/coap-core/src/test/java/com/mbed/coap/server/internal/CoapServerBlocksTest.java +++ b/coap-core/src/test/java/com/mbed/coap/server/internal/CoapServerBlocksTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/server/internal/CoapServerBlocksUnitTest.java b/coap-core/src/test/java/com/mbed/coap/server/internal/CoapServerBlocksUnitTest.java index 2fcbdf5b..02cc9e89 100644 --- a/coap-core/src/test/java/com/mbed/coap/server/internal/CoapServerBlocksUnitTest.java +++ b/coap-core/src/test/java/com/mbed/coap/server/internal/CoapServerBlocksUnitTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/server/internal/CoapServerDuplicateErrorsTest.java b/coap-core/src/test/java/com/mbed/coap/server/internal/CoapServerDuplicateErrorsTest.java index 16ce9765..3b66c2df 100644 --- a/coap-core/src/test/java/com/mbed/coap/server/internal/CoapServerDuplicateErrorsTest.java +++ b/coap-core/src/test/java/com/mbed/coap/server/internal/CoapServerDuplicateErrorsTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/server/internal/CoapServerDuplicateTest.java b/coap-core/src/test/java/com/mbed/coap/server/internal/CoapServerDuplicateTest.java index 0354c01b..6e64407d 100644 --- a/coap-core/src/test/java/com/mbed/coap/server/internal/CoapServerDuplicateTest.java +++ b/coap-core/src/test/java/com/mbed/coap/server/internal/CoapServerDuplicateTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/server/internal/CoapServerTransportContextTest.java b/coap-core/src/test/java/com/mbed/coap/server/internal/CoapServerTransportContextTest.java index 0931ff82..ea8ffd42 100644 --- a/coap-core/src/test/java/com/mbed/coap/server/internal/CoapServerTransportContextTest.java +++ b/coap-core/src/test/java/com/mbed/coap/server/internal/CoapServerTransportContextTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/server/internal/CoapTcpCSMStorageImplTest.java b/coap-core/src/test/java/com/mbed/coap/server/internal/CoapTcpCSMStorageImplTest.java index bee52d46..f36fea2b 100644 --- a/coap-core/src/test/java/com/mbed/coap/server/internal/CoapTcpCSMStorageImplTest.java +++ b/coap-core/src/test/java/com/mbed/coap/server/internal/CoapTcpCSMStorageImplTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/server/internal/CoapTcpCSMTest.java b/coap-core/src/test/java/com/mbed/coap/server/internal/CoapTcpCSMTest.java index 79ea4edf..1df80aee 100644 --- a/coap-core/src/test/java/com/mbed/coap/server/internal/CoapTcpCSMTest.java +++ b/coap-core/src/test/java/com/mbed/coap/server/internal/CoapTcpCSMTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/server/internal/CoapTcpMessagingTest.java b/coap-core/src/test/java/com/mbed/coap/server/internal/CoapTcpMessagingTest.java index c1d882b2..ae8952ad 100644 --- a/coap-core/src/test/java/com/mbed/coap/server/internal/CoapTcpMessagingTest.java +++ b/coap-core/src/test/java/com/mbed/coap/server/internal/CoapTcpMessagingTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/server/internal/CoapTransactionIdTest.java b/coap-core/src/test/java/com/mbed/coap/server/internal/CoapTransactionIdTest.java index 7a8a0aa2..3b70f041 100644 --- a/coap-core/src/test/java/com/mbed/coap/server/internal/CoapTransactionIdTest.java +++ b/coap-core/src/test/java/com/mbed/coap/server/internal/CoapTransactionIdTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/server/internal/CoapUdpMessagingTest.java b/coap-core/src/test/java/com/mbed/coap/server/internal/CoapUdpMessagingTest.java index fbc70bf1..5b1e718b 100644 --- a/coap-core/src/test/java/com/mbed/coap/server/internal/CoapUdpMessagingTest.java +++ b/coap-core/src/test/java/com/mbed/coap/server/internal/CoapUdpMessagingTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/server/internal/DuplicationDetectorTest.java b/coap-core/src/test/java/com/mbed/coap/server/internal/DuplicationDetectorTest.java index bb676cd3..a427c811 100644 --- a/coap-core/src/test/java/com/mbed/coap/server/internal/DuplicationDetectorTest.java +++ b/coap-core/src/test/java/com/mbed/coap/server/internal/DuplicationDetectorTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/server/internal/MockCoapTransport.java b/coap-core/src/test/java/com/mbed/coap/server/internal/MockCoapTransport.java index 6b8f8fed..c5e22bb9 100644 --- a/coap-core/src/test/java/com/mbed/coap/server/internal/MockCoapTransport.java +++ b/coap-core/src/test/java/com/mbed/coap/server/internal/MockCoapTransport.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/server/internal/TransactionManagerTest.java b/coap-core/src/test/java/com/mbed/coap/server/internal/TransactionManagerTest.java index 2aa49a6e..54677039 100644 --- a/coap-core/src/test/java/com/mbed/coap/server/internal/TransactionManagerTest.java +++ b/coap-core/src/test/java/com/mbed/coap/server/internal/TransactionManagerTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/server/internal/TransactionQueueTest.java b/coap-core/src/test/java/com/mbed/coap/server/internal/TransactionQueueTest.java index e4503ba2..3fd23588 100644 --- a/coap-core/src/test/java/com/mbed/coap/server/internal/TransactionQueueTest.java +++ b/coap-core/src/test/java/com/mbed/coap/server/internal/TransactionQueueTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/transmission/TransmissionTimeoutTest.java b/coap-core/src/test/java/com/mbed/coap/transmission/TransmissionTimeoutTest.java index 4922ddc9..fe9ff37e 100644 --- a/coap-core/src/test/java/com/mbed/coap/transmission/TransmissionTimeoutTest.java +++ b/coap-core/src/test/java/com/mbed/coap/transmission/TransmissionTimeoutTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/transport/TransportContextTest.java b/coap-core/src/test/java/com/mbed/coap/transport/TransportContextTest.java index 1617177a..f08c461f 100644 --- a/coap-core/src/test/java/com/mbed/coap/transport/TransportContextTest.java +++ b/coap-core/src/test/java/com/mbed/coap/transport/TransportContextTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/transport/TransportExecutorsTest.java b/coap-core/src/test/java/com/mbed/coap/transport/TransportExecutorsTest.java index 5d419c64..737c580e 100644 --- a/coap-core/src/test/java/com/mbed/coap/transport/TransportExecutorsTest.java +++ b/coap-core/src/test/java/com/mbed/coap/transport/TransportExecutorsTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/transport/javassl/SSLSocketClientTransportTest.java b/coap-core/src/test/java/com/mbed/coap/transport/javassl/SSLSocketClientTransportTest.java index 09a7a0ae..65920984 100644 --- a/coap-core/src/test/java/com/mbed/coap/transport/javassl/SSLSocketClientTransportTest.java +++ b/coap-core/src/test/java/com/mbed/coap/transport/javassl/SSLSocketClientTransportTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/transport/javassl/SSLUtils.java b/coap-core/src/test/java/com/mbed/coap/transport/javassl/SSLUtils.java index c84aec00..298ad036 100644 --- a/coap-core/src/test/java/com/mbed/coap/transport/javassl/SSLUtils.java +++ b/coap-core/src/test/java/com/mbed/coap/transport/javassl/SSLUtils.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/transport/javassl/SingleConnectionSSLSocketServerTransport.java b/coap-core/src/test/java/com/mbed/coap/transport/javassl/SingleConnectionSSLSocketServerTransport.java index 2c7a8430..618fd8e2 100644 --- a/coap-core/src/test/java/com/mbed/coap/transport/javassl/SingleConnectionSSLSocketServerTransport.java +++ b/coap-core/src/test/java/com/mbed/coap/transport/javassl/SingleConnectionSSLSocketServerTransport.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/transport/javassl/SingleConnectionSocketServerTransport.java b/coap-core/src/test/java/com/mbed/coap/transport/javassl/SingleConnectionSocketServerTransport.java index 49e7bc65..01bee7a2 100644 --- a/coap-core/src/test/java/com/mbed/coap/transport/javassl/SingleConnectionSocketServerTransport.java +++ b/coap-core/src/test/java/com/mbed/coap/transport/javassl/SingleConnectionSocketServerTransport.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/transport/udp/DatagramSocketTransportTest.java b/coap-core/src/test/java/com/mbed/coap/transport/udp/DatagramSocketTransportTest.java index 31581159..d897d9ea 100644 --- a/coap-core/src/test/java/com/mbed/coap/transport/udp/DatagramSocketTransportTest.java +++ b/coap-core/src/test/java/com/mbed/coap/transport/udp/DatagramSocketTransportTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/utils/FutureCallbackAdapterTest.java b/coap-core/src/test/java/com/mbed/coap/utils/FutureCallbackAdapterTest.java index e29e406f..49426ea9 100644 --- a/coap-core/src/test/java/com/mbed/coap/utils/FutureCallbackAdapterTest.java +++ b/coap-core/src/test/java/com/mbed/coap/utils/FutureCallbackAdapterTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/utils/HexArrayTest.java b/coap-core/src/test/java/com/mbed/coap/utils/HexArrayTest.java index 1243c24f..a1dd1a5c 100644 --- a/coap-core/src/test/java/com/mbed/coap/utils/HexArrayTest.java +++ b/coap-core/src/test/java/com/mbed/coap/utils/HexArrayTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/utils/IpPortAddressTest.java b/coap-core/src/test/java/com/mbed/coap/utils/IpPortAddressTest.java index 4a5bb4ec..b05c4b82 100644 --- a/coap-core/src/test/java/com/mbed/coap/utils/IpPortAddressTest.java +++ b/coap-core/src/test/java/com/mbed/coap/utils/IpPortAddressTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/com/mbed/coap/utils/ReadOnlyCoapResourceTest.java b/coap-core/src/test/java/com/mbed/coap/utils/ReadOnlyCoapResourceTest.java index 87768508..4666ba0b 100644 --- a/coap-core/src/test/java/com/mbed/coap/utils/ReadOnlyCoapResourceTest.java +++ b/coap-core/src/test/java/com/mbed/coap/utils/ReadOnlyCoapResourceTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/microbenchmark/ParsingBenchmark.java b/coap-core/src/test/java/microbenchmark/ParsingBenchmark.java index f272782a..8ad2d1c9 100644 --- a/coap-core/src/test/java/microbenchmark/ParsingBenchmark.java +++ b/coap-core/src/test/java/microbenchmark/ParsingBenchmark.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/microbenchmark/ServerBenchmark.java b/coap-core/src/test/java/microbenchmark/ServerBenchmark.java index 3dcd4299..b36bf96c 100644 --- a/coap-core/src/test/java/microbenchmark/ServerBenchmark.java +++ b/coap-core/src/test/java/microbenchmark/ServerBenchmark.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/microbenchmark/ServerBenchmarkBase.java b/coap-core/src/test/java/microbenchmark/ServerBenchmarkBase.java index 3ea4ac43..98788bd4 100644 --- a/coap-core/src/test/java/microbenchmark/ServerBenchmarkBase.java +++ b/coap-core/src/test/java/microbenchmark/ServerBenchmarkBase.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/microbenchmark/ServerCachedThreadBenchmarkIgn.java b/coap-core/src/test/java/microbenchmark/ServerCachedThreadBenchmarkIgn.java index c8d35540..8a2571fe 100644 --- a/coap-core/src/test/java/microbenchmark/ServerCachedThreadBenchmarkIgn.java +++ b/coap-core/src/test/java/microbenchmark/ServerCachedThreadBenchmarkIgn.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/microbenchmark/ServerMultiThreadBenchmarkIgn.java b/coap-core/src/test/java/microbenchmark/ServerMultiThreadBenchmarkIgn.java index f5957ea2..ff2a4e23 100644 --- a/coap-core/src/test/java/microbenchmark/ServerMultiThreadBenchmarkIgn.java +++ b/coap-core/src/test/java/microbenchmark/ServerMultiThreadBenchmarkIgn.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/microbenchmark/ServerMultiThreadDuplicationBenchmarkIgn.java b/coap-core/src/test/java/microbenchmark/ServerMultiThreadDuplicationBenchmarkIgn.java index e7d5c3c2..68a6a55f 100644 --- a/coap-core/src/test/java/microbenchmark/ServerMultiThreadDuplicationBenchmarkIgn.java +++ b/coap-core/src/test/java/microbenchmark/ServerMultiThreadDuplicationBenchmarkIgn.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/microbenchmark/ServerNotifBenchmark.java b/coap-core/src/test/java/microbenchmark/ServerNotifBenchmark.java index 23a3303b..0254d546 100644 --- a/coap-core/src/test/java/microbenchmark/ServerNotifBenchmark.java +++ b/coap-core/src/test/java/microbenchmark/ServerNotifBenchmark.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/microbenchmark/ServerSingleThreadBenchmark.java b/coap-core/src/test/java/microbenchmark/ServerSingleThreadBenchmark.java index 5f84b2de..0bf97bc4 100644 --- a/coap-core/src/test/java/microbenchmark/ServerSingleThreadBenchmark.java +++ b/coap-core/src/test/java/microbenchmark/ServerSingleThreadBenchmark.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/protocolTests/Block1TransferMaxSizeTest.java b/coap-core/src/test/java/protocolTests/Block1TransferMaxSizeTest.java index c3fe2111..3a64ee84 100644 --- a/coap-core/src/test/java/protocolTests/Block1TransferMaxSizeTest.java +++ b/coap-core/src/test/java/protocolTests/Block1TransferMaxSizeTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/protocolTests/Block2TransferMaxSizeTest.java b/coap-core/src/test/java/protocolTests/Block2TransferMaxSizeTest.java index 0366db4a..1393a989 100644 --- a/coap-core/src/test/java/protocolTests/Block2TransferMaxSizeTest.java +++ b/coap-core/src/test/java/protocolTests/Block2TransferMaxSizeTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/protocolTests/BlockTest.java b/coap-core/src/test/java/protocolTests/BlockTest.java index c56b52f6..d7180076 100644 --- a/coap-core/src/test/java/protocolTests/BlockTest.java +++ b/coap-core/src/test/java/protocolTests/BlockTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/protocolTests/BlockTransferOnDemandTest.java b/coap-core/src/test/java/protocolTests/BlockTransferOnDemandTest.java index e9d5d883..c1bcd933 100644 --- a/coap-core/src/test/java/protocolTests/BlockTransferOnDemandTest.java +++ b/coap-core/src/test/java/protocolTests/BlockTransferOnDemandTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/protocolTests/BlockwiseTransferWithTest.java b/coap-core/src/test/java/protocolTests/BlockwiseTransferWithTest.java index d75fcf9c..51a6fbd1 100644 --- a/coap-core/src/test/java/protocolTests/BlockwiseTransferWithTest.java +++ b/coap-core/src/test/java/protocolTests/BlockwiseTransferWithTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/protocolTests/ClientServerNONTest.java b/coap-core/src/test/java/protocolTests/ClientServerNONTest.java index 710de644..f908127c 100644 --- a/coap-core/src/test/java/protocolTests/ClientServerNONTest.java +++ b/coap-core/src/test/java/protocolTests/ClientServerNONTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/protocolTests/ClientServerTest.java b/coap-core/src/test/java/protocolTests/ClientServerTest.java index f2f47863..96ee35d2 100644 --- a/coap-core/src/test/java/protocolTests/ClientServerTest.java +++ b/coap-core/src/test/java/protocolTests/ClientServerTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/protocolTests/ClientServerWithBlocksTest.java b/coap-core/src/test/java/protocolTests/ClientServerWithBlocksTest.java index d8bf22ae..5b06172c 100644 --- a/coap-core/src/test/java/protocolTests/ClientServerWithBlocksTest.java +++ b/coap-core/src/test/java/protocolTests/ClientServerWithBlocksTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/protocolTests/MalformedPacketTest.java b/coap-core/src/test/java/protocolTests/MalformedPacketTest.java index d51645dd..ecd31a12 100644 --- a/coap-core/src/test/java/protocolTests/MalformedPacketTest.java +++ b/coap-core/src/test/java/protocolTests/MalformedPacketTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/protocolTests/Observation2Test.java b/coap-core/src/test/java/protocolTests/Observation2Test.java index d9fc8236..a25f839d 100644 --- a/coap-core/src/test/java/protocolTests/Observation2Test.java +++ b/coap-core/src/test/java/protocolTests/Observation2Test.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/protocolTests/ObservationTest.java b/coap-core/src/test/java/protocolTests/ObservationTest.java index bb3a20b0..0b0fb98d 100644 --- a/coap-core/src/test/java/protocolTests/ObservationTest.java +++ b/coap-core/src/test/java/protocolTests/ObservationTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/protocolTests/ObservationWithBlockTest.java b/coap-core/src/test/java/protocolTests/ObservationWithBlockTest.java index baba971f..49ad0653 100644 --- a/coap-core/src/test/java/protocolTests/ObservationWithBlockTest.java +++ b/coap-core/src/test/java/protocolTests/ObservationWithBlockTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/protocolTests/QueueRequestsTest.java b/coap-core/src/test/java/protocolTests/QueueRequestsTest.java index 9bca7dd4..7b72bd0f 100644 --- a/coap-core/src/test/java/protocolTests/QueueRequestsTest.java +++ b/coap-core/src/test/java/protocolTests/QueueRequestsTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/protocolTests/SeparateResponseTest.java b/coap-core/src/test/java/protocolTests/SeparateResponseTest.java index a0936f7d..6daa8dd9 100644 --- a/coap-core/src/test/java/protocolTests/SeparateResponseTest.java +++ b/coap-core/src/test/java/protocolTests/SeparateResponseTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/protocolTests/TcpIntegrationTest.java b/coap-core/src/test/java/protocolTests/TcpIntegrationTest.java index 4c1eb963..3b52b07b 100644 --- a/coap-core/src/test/java/protocolTests/TcpIntegrationTest.java +++ b/coap-core/src/test/java/protocolTests/TcpIntegrationTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/protocolTests/TimeoutTest.java b/coap-core/src/test/java/protocolTests/TimeoutTest.java index bdc3c141..54ab5d3e 100644 --- a/coap-core/src/test/java/protocolTests/TimeoutTest.java +++ b/coap-core/src/test/java/protocolTests/TimeoutTest.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/protocolTests/utils/CoapPacketBuilder.java b/coap-core/src/test/java/protocolTests/utils/CoapPacketBuilder.java index 7c5d67c8..e2fed3f0 100644 --- a/coap-core/src/test/java/protocolTests/utils/CoapPacketBuilder.java +++ b/coap-core/src/test/java/protocolTests/utils/CoapPacketBuilder.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/java/protocolTests/utils/TransportConnectorMock.java b/coap-core/src/test/java/protocolTests/utils/TransportConnectorMock.java index abc620d8..f0ff7b7b 100644 --- a/coap-core/src/test/java/protocolTests/utils/TransportConnectorMock.java +++ b/coap-core/src/test/java/protocolTests/utils/TransportConnectorMock.java @@ -1,6 +1,9 @@ /** * Copyright (C) 2011-2018 ARM Limited. All rights reserved. + * Copyright (c) 2023 Izuma Networks. All rights reserved. + * * SPDX-License-Identifier: Apache-2.0 + * * 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 diff --git a/coap-core/src/test/resources/regenerate-keystores.sh b/coap-core/src/test/resources/regenerate-keystores.sh index 10ece2de..61fe19fb 100755 --- a/coap-core/src/test/resources/regenerate-keystores.sh +++ b/coap-core/src/test/resources/regenerate-keystores.sh @@ -6,23 +6,23 @@ CLI_KS="-keystore test-client.jks -storepass secret" mkdir -p target # server -keytool $SRV_KS -genkey -keyalg EC -keysize 256 -alias server-ca -validity 3600 -keypass secret -dname "CN=server-ca" -ext bc=ca:true -deststoretype pkcs12 -keytool $SRV_KS -genkeypair -keyalg EC -keysize 256 -alias server -validity 3600 -dname "CN=server" -keypass secret -keytool $SRV_KS -certreq -alias server -file target/server.csr -keytool $SRV_KS -gencert -alias server-ca -infile target/server.csr -outfile target/server.cer -validity 3600 -keytool $SRV_KS -importcert -file target/server.cer -alias server -keytool $SRV_KS -export -alias server-ca -file target/server-ca.cer +keytool "$SRV_KS" -genkey -keyalg EC -keysize 256 -alias server-ca -validity 3600 -keypass secret -dname "CN=server-ca" -ext bc=ca:true -deststoretype pkcs12 +keytool "$SRV_KS" -genkeypair -keyalg EC -keysize 256 -alias server -validity 3600 -dname "CN=server" -keypass secret +keytool "$SRV_KS" -certreq -alias server -file target/server.csr +keytool "$SRV_KS" -gencert -alias server-ca -infile target/server.csr -outfile target/server.cer -validity 3600 +keytool "$SRV_KS" -importcert -file target/server.cer -alias server +keytool "$SRV_KS" -export -alias server-ca -file target/server-ca.cer # client -keytool $CLI_KS -genkey -keyalg EC -keysize 256 -alias client-ca -validity 3600 -keypass secret -dname "CN=client-ca" -ext bc=ca:true -deststoretype pkcs12 -keytool $CLI_KS -genkeypair -keyalg EC -keysize 256 -alias client -validity 3600 -dname "CN=client" -keypass secret -keytool $CLI_KS -certreq -alias client -file target/client.csr -keytool $CLI_KS -gencert -alias client-ca -infile target/client.csr -outfile target/client.cer -validity 3600 -keytool $CLI_KS -importcert -file target/client.cer -alias client -keytool $CLI_KS -export -alias client-ca -file target/client-ca.cer +keytool "$CLI_KS" -genkey -keyalg EC -keysize 256 -alias client-ca -validity 3600 -keypass secret -dname "CN=client-ca" -ext bc=ca:true -deststoretype pkcs12 +keytool "$CLI_KS" -genkeypair -keyalg EC -keysize 256 -alias client -validity 3600 -dname "CN=client" -keypass secret +keytool "$CLI_KS" -certreq -alias client -file target/client.csr +keytool "$CLI_KS" -gencert -alias client-ca -infile target/client.csr -outfile target/client.cer -validity 3600 +keytool "$CLI_KS" -importcert -file target/client.cer -alias client +keytool "$CLI_KS" -export -alias client-ca -file target/client-ca.cer # add trusted -keytool $SRV_KS -import -alias client-ca -file target/client-ca.cer -noprompt -keytool $CLI_KS -import -alias server-ca -file target/server-ca.cer -noprompt +keytool "$SRV_KS" -import -alias client-ca -file target/client-ca.cer -noprompt +keytool "$CLI_KS" -import -alias server-ca -file target/server-ca.cer -noprompt diff --git a/deploy.sh b/deploy.sh index 92edd16f..533b15cd 100755 --- a/deploy.sh +++ b/deploy.sh @@ -1,7 +1,10 @@ #!/usr/bin/env bash # # Copyright (C) 2011-2018 ARM Limited. All rights reserved. +# Copyright (c) 2023 Izuma Networks. All rights reserved. +# # SPDX-License-Identifier: Apache-2.0 +# # 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 @@ -24,7 +27,7 @@ [[ -z $(git status -s) ]] || exit 1 VER="5.1.0-`git log --format="%cd-%h" --date=format:%Y%m%d -n 1`" -mvn versions:set -DnewVersion=$VER -DgenerateBackupPoms=false +mvn versions:set -DnewVersion="$VER" -DgenerateBackupPoms=false mvn -DskipTests deploy -P ci $@ git reset --hard diff --git a/example-client/pom.xml b/example-client/pom.xml index 37c9da06..3ebf6a26 100644 --- a/example-client/pom.xml +++ b/example-client/pom.xml @@ -1,7 +1,10 @@