From 8443e9a32187eff55d68167fc9bf4338d2725512 Mon Sep 17 00:00:00 2001 From: Craig Everett Date: Tue, 1 Sep 2026 15:44:48 +0900 Subject: [PATCH] WIP --- README.md | 6 +++--- bin/compile | 2 +- bin/run | 2 +- src/main/java/swiss/qpq/gajumaru/core/crypto/Blake2b.java | 6 +++--- src/main/java/swiss/qpq/gajumaru/core/crypto/Ed25519.java | 6 +++--- src/main/java/swiss/qpq/gajumaru/core/crypto/Keccak256.java | 6 +++--- src/main/java/swiss/qpq/gajumaru/core/crypto/Vault.java | 6 +++--- src/main/java/swiss/qpq/gajumaru/core/data/Id.java | 6 +++--- src/main/java/swiss/qpq/gajumaru/core/data/SignedTx.java | 6 +++--- src/main/java/swiss/qpq/gajumaru/core/data/SpendTx.java | 6 +++--- .../java/swiss/qpq/gajumaru/core/encoding/ApiEncoder.java | 6 +++--- src/main/java/swiss/qpq/gajumaru/core/encoding/Base58.java | 6 +++--- .../java/swiss/qpq/gajumaru/core/encoding/ChainObjects.java | 6 +++--- src/main/java/swiss/qpq/gajumaru/core/encoding/Gf256.java | 6 +++--- .../java/swiss/qpq/gajumaru/core/encoding/Mnemonic.java | 6 +++--- src/main/java/swiss/qpq/gajumaru/core/encoding/QR.java | 6 +++--- src/main/java/swiss/qpq/gajumaru/core/encoding/RLP.java | 6 +++--- src/main/java/swiss/qpq/gajumaru/core/encoding/ZJ.java | 6 +++--- .../java/swiss/qpq/gajumaru/core/formatting/GajuFormat.java | 6 +++--- .../java/swiss/qpq/gajumaru/core/tools/CryptoUtils.java | 6 +++--- src/main/java/swiss/qpq/gajumaru/core/tools/Grids.java | 6 +++--- src/main/java/swiss/qpq/gajumaru/core/tools/Http.java | 6 +++--- .../swiss/qpq/gajumaru/core/tools/JavaSigningProvider.java | 6 +++--- src/main/java/swiss/qpq/gajumaru/core/tools/NodeClient.java | 6 +++--- .../java/swiss/qpq/gajumaru/core/tools/SigningProvider.java | 6 +++--- .../swiss/qpq/gajumaru/core/tools/TransactionService.java | 6 +++--- src/main/java/swiss/qpq/gajumaru/core/tools/VarInt.java | 6 +++--- 27 files changed, 77 insertions(+), 77 deletions(-) diff --git a/README.md b/README.md index eb370f1..9979cdf 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ does not have floats, and they do not exist at all in the Sophia language. ## Terms -Copyright (c) 2026 QPQ AG . All rights reserved. +Copyright (c) 2026 QPQ IaaS AG . All rights reserved. Project: Gajumaru Core Java Libraries This program is dual-licensed: @@ -38,10 +38,10 @@ This program is dual-licensed: Software Foundation, either version 3 of the License, or (at your option) any later version (AGPL-3.0-or-later). (See LICENSE file.) -2) Under a commercial/proprietary license available directly from QPQ AG. +2) Under a commercial/proprietary license available directly from QPQ IaaS AG. If you wish to use this software outside the strict constraints of the AGPLv3 (e.g. within a closed-source or proprietary product), you must - purchase a commercial license from QPQ AG. + purchase a commercial license from QPQ IaaS AG. Authors: - Craig Everett diff --git a/bin/compile b/bin/compile index ccd245c..4390be5 100755 --- a/bin/compile +++ b/bin/compile @@ -1,6 +1,6 @@ #! /usr/bin/env bash -# Copyright (c) 2026 QPQ AG . All rights reserved. +# Copyright (c) 2026 QPQ IaaS AG . All rights reserved. # SPDX-License-Identifier: AGPL-3.0-or-later OR LicenseRef-QPQ-Commercial set -e diff --git a/bin/run b/bin/run index 79f9fc7..f51087e 100755 --- a/bin/run +++ b/bin/run @@ -1,6 +1,6 @@ #! /usr/bin/env bash -# Copyright (c) 2026 QPQ AG . All rights reserved. +# Copyright (c) 2026 QPQ IaaS AG . All rights reserved. # SPDX-License-Identifier: AGPL-3.0-or-later OR LicenseRef-QPQ-Commercial set -e diff --git a/src/main/java/swiss/qpq/gajumaru/core/crypto/Blake2b.java b/src/main/java/swiss/qpq/gajumaru/core/crypto/Blake2b.java index 2343481..c91f0ca 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/crypto/Blake2b.java +++ b/src/main/java/swiss/qpq/gajumaru/core/crypto/Blake2b.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/crypto/Ed25519.java b/src/main/java/swiss/qpq/gajumaru/core/crypto/Ed25519.java index a7ce088..e76aecb 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/crypto/Ed25519.java +++ b/src/main/java/swiss/qpq/gajumaru/core/crypto/Ed25519.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/crypto/Keccak256.java b/src/main/java/swiss/qpq/gajumaru/core/crypto/Keccak256.java index b628919..4df77f5 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/crypto/Keccak256.java +++ b/src/main/java/swiss/qpq/gajumaru/core/crypto/Keccak256.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/crypto/Vault.java b/src/main/java/swiss/qpq/gajumaru/core/crypto/Vault.java index 63b7895..5b4f3cd 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/crypto/Vault.java +++ b/src/main/java/swiss/qpq/gajumaru/core/crypto/Vault.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/data/Id.java b/src/main/java/swiss/qpq/gajumaru/core/data/Id.java index 41c8513..9f12f5e 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/data/Id.java +++ b/src/main/java/swiss/qpq/gajumaru/core/data/Id.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/data/SignedTx.java b/src/main/java/swiss/qpq/gajumaru/core/data/SignedTx.java index c2bf33e..a054784 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/data/SignedTx.java +++ b/src/main/java/swiss/qpq/gajumaru/core/data/SignedTx.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/data/SpendTx.java b/src/main/java/swiss/qpq/gajumaru/core/data/SpendTx.java index d5be9e7..70cefb2 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/data/SpendTx.java +++ b/src/main/java/swiss/qpq/gajumaru/core/data/SpendTx.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/encoding/ApiEncoder.java b/src/main/java/swiss/qpq/gajumaru/core/encoding/ApiEncoder.java index 0c4597d..58829a4 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/encoding/ApiEncoder.java +++ b/src/main/java/swiss/qpq/gajumaru/core/encoding/ApiEncoder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/encoding/Base58.java b/src/main/java/swiss/qpq/gajumaru/core/encoding/Base58.java index 3cc9872..b7cb6a5 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/encoding/Base58.java +++ b/src/main/java/swiss/qpq/gajumaru/core/encoding/Base58.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/encoding/ChainObjects.java b/src/main/java/swiss/qpq/gajumaru/core/encoding/ChainObjects.java index 80897a4..708212a 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/encoding/ChainObjects.java +++ b/src/main/java/swiss/qpq/gajumaru/core/encoding/ChainObjects.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/encoding/Gf256.java b/src/main/java/swiss/qpq/gajumaru/core/encoding/Gf256.java index b9d653f..7b75cce 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/encoding/Gf256.java +++ b/src/main/java/swiss/qpq/gajumaru/core/encoding/Gf256.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/encoding/Mnemonic.java b/src/main/java/swiss/qpq/gajumaru/core/encoding/Mnemonic.java index 51ffec0..2db6509 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/encoding/Mnemonic.java +++ b/src/main/java/swiss/qpq/gajumaru/core/encoding/Mnemonic.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/encoding/QR.java b/src/main/java/swiss/qpq/gajumaru/core/encoding/QR.java index 9bfe5fc..81b3a1e 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/encoding/QR.java +++ b/src/main/java/swiss/qpq/gajumaru/core/encoding/QR.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/encoding/RLP.java b/src/main/java/swiss/qpq/gajumaru/core/encoding/RLP.java index bb9ef95..5aa0e71 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/encoding/RLP.java +++ b/src/main/java/swiss/qpq/gajumaru/core/encoding/RLP.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/encoding/ZJ.java b/src/main/java/swiss/qpq/gajumaru/core/encoding/ZJ.java index fd2ed2a..fd82988 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/encoding/ZJ.java +++ b/src/main/java/swiss/qpq/gajumaru/core/encoding/ZJ.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/formatting/GajuFormat.java b/src/main/java/swiss/qpq/gajumaru/core/formatting/GajuFormat.java index cbbd49a..4980e6f 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/formatting/GajuFormat.java +++ b/src/main/java/swiss/qpq/gajumaru/core/formatting/GajuFormat.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/tools/CryptoUtils.java b/src/main/java/swiss/qpq/gajumaru/core/tools/CryptoUtils.java index 7163d5d..76de91f 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/tools/CryptoUtils.java +++ b/src/main/java/swiss/qpq/gajumaru/core/tools/CryptoUtils.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/tools/Grids.java b/src/main/java/swiss/qpq/gajumaru/core/tools/Grids.java index 2723412..b78375b 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/tools/Grids.java +++ b/src/main/java/swiss/qpq/gajumaru/core/tools/Grids.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/tools/Http.java b/src/main/java/swiss/qpq/gajumaru/core/tools/Http.java index 58b5352..550f302 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/tools/Http.java +++ b/src/main/java/swiss/qpq/gajumaru/core/tools/Http.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/tools/JavaSigningProvider.java b/src/main/java/swiss/qpq/gajumaru/core/tools/JavaSigningProvider.java index e272235..a763990 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/tools/JavaSigningProvider.java +++ b/src/main/java/swiss/qpq/gajumaru/core/tools/JavaSigningProvider.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/tools/NodeClient.java b/src/main/java/swiss/qpq/gajumaru/core/tools/NodeClient.java index 462a9ab..3394c45 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/tools/NodeClient.java +++ b/src/main/java/swiss/qpq/gajumaru/core/tools/NodeClient.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/tools/SigningProvider.java b/src/main/java/swiss/qpq/gajumaru/core/tools/SigningProvider.java index 95d6b8c..f0dc522 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/tools/SigningProvider.java +++ b/src/main/java/swiss/qpq/gajumaru/core/tools/SigningProvider.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/tools/TransactionService.java b/src/main/java/swiss/qpq/gajumaru/core/tools/TransactionService.java index eaf7df1..2081a2a 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/tools/TransactionService.java +++ b/src/main/java/swiss/qpq/gajumaru/core/tools/TransactionService.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett diff --git a/src/main/java/swiss/qpq/gajumaru/core/tools/VarInt.java b/src/main/java/swiss/qpq/gajumaru/core/tools/VarInt.java index daabf53..d6414d6 100644 --- a/src/main/java/swiss/qpq/gajumaru/core/tools/VarInt.java +++ b/src/main/java/swiss/qpq/gajumaru/core/tools/VarInt.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2026 QPQ AG . All rights reserved. + * Copyright (c) 2026 QPQ IaaS AG . All rights reserved. * Project: Gajumaru Core Java Libraries * * This program is dual-licensed: @@ -7,10 +7,10 @@ * Software Foundation, either version 3 of the License, or (at your option) * any later version (AGPL-3.0-or-later). * - * 2) Under a commercial/proprietary license available directly from QPQ AG. + * 2) Under a commercial/proprietary license available directly from QPQ IaaS AG. * If you wish to use this software outside the strict constraints of the * AGPLv3 (e.g. within a closed-source or proprietary product), you must - * purchase a commercial license from QPQ AG. + * purchase a commercial license from QPQ IaaS AG. * * Authors: * - Craig Everett