From 273c1e9bda1ef5020ad2ce9d69c096fb0670606c Mon Sep 17 00:00:00 2001 From: hizmailovich Date: Mon, 26 Feb 2024 19:02:38 +0300 Subject: [PATCH 1/2] Resolved #62 --- LICENSE.txt | 13 +++++++--- .../java/git/tracehub/pmo/PmoApplication.java | 13 +++++++--- .../pmo/controller/AdviceController.java | 13 +++++++--- .../pmo/controller/ProjectController.java | 13 +++++++--- .../pmo/controller/SecretController.java | 13 +++++++--- .../pmo/controller/TicketController.java | 13 +++++++--- .../tracehub/pmo/controller/package-info.java | 13 +++++++--- .../controller/request/ProjectFromReq.java | 13 +++++++--- .../pmo/controller/request/RqProject.java | 13 +++++++--- .../pmo/controller/request/RqSecret.java | 13 +++++++--- .../pmo/controller/request/RqTicket.java | 13 +++++++--- .../pmo/controller/request/SecretFromReq.java | 13 +++++++--- .../pmo/controller/request/TicketFromReq.java | 13 +++++++--- .../pmo/controller/request/package-info.java | 13 +++++++--- .../git/tracehub/pmo/exception/Logged.java | 13 +++++++--- .../ResourceAlreadyExistsException.java | 13 +++++++--- .../exception/ResourceNotFoundException.java | 13 +++++++--- .../git/tracehub/pmo/exception/RestError.java | 13 +++++++--- .../tracehub/pmo/exception/package-info.java | 13 +++++++--- .../java/git/tracehub/pmo/package-info.java | 13 +++++++--- .../git/tracehub/pmo/platforms/Action.java | 13 +++++++--- .../tracehub/pmo/platforms/ColorInHex.java | 13 +++++++--- .../git/tracehub/pmo/platforms/Label.java | 13 +++++++--- .../git/tracehub/pmo/platforms/Platform.java | 13 +++++++--- .../git/tracehub/pmo/platforms/RepoPath.java | 13 +++++++--- .../pmo/platforms/github/CreateLabels.java | 13 +++++++--- .../tracehub/pmo/platforms/github/Github.java | 13 +++++++--- .../platforms/github/InviteCollaborator.java | 13 +++++++--- .../pmo/platforms/github/package-info.java | 13 +++++++--- .../github/webhook/CreateWebhook.java | 13 +++++++--- .../github/webhook/ExistsWebhook.java | 13 +++++++--- .../pmo/platforms/github/webhook/Webhook.java | 13 +++++++--- .../platforms/github/webhook/Webhooks.java | 13 +++++++--- .../github/webhook/package-info.java | 13 +++++++--- .../tracehub/pmo/platforms/package-info.java | 13 +++++++--- .../tracehub/pmo/project/AdjustedText.java | 13 +++++++--- .../java/git/tracehub/pmo/project/DateOf.java | 13 +++++++--- .../tracehub/pmo/project/DefaultProjects.java | 13 +++++++--- .../git/tracehub/pmo/project/Project.java | 13 +++++++--- .../git/tracehub/pmo/project/ProjectOf.java | 13 +++++++--- .../git/tracehub/pmo/project/Projects.java | 13 +++++++--- .../java/git/tracehub/pmo/project/Sql.java | 13 +++++++--- .../tracehub/pmo/project/SqlStatement.java | 13 +++++++--- .../tracehub/pmo/project/package-info.java | 13 +++++++--- .../git/tracehub/pmo/secret/DefaultKeys.java | 13 +++++++--- .../tracehub/pmo/secret/DefaultSecrets.java | 13 +++++++--- .../tracehub/pmo/secret/EncryptedSecrets.java | 13 +++++++--- .../java/git/tracehub/pmo/secret/Key.java | 13 +++++++--- .../java/git/tracehub/pmo/secret/KeyOf.java | 13 +++++++--- .../java/git/tracehub/pmo/secret/Keys.java | 13 +++++++--- .../java/git/tracehub/pmo/secret/Secret.java | 13 +++++++--- .../git/tracehub/pmo/secret/SecretOf.java | 13 +++++++--- .../java/git/tracehub/pmo/secret/Secrets.java | 13 +++++++--- .../tracehub/pmo/secret/ValidatedSecrets.java | 13 +++++++--- .../git/tracehub/pmo/secret/package-info.java | 13 +++++++--- .../pmo/security/AuthoritiesConverter.java | 13 +++++++--- .../git/tracehub/pmo/security/ClaimOf.java | 13 +++++++--- .../git/tracehub/pmo/security/IdProvider.java | 13 +++++++--- .../git/tracehub/pmo/security/IdpToken.java | 13 +++++++--- .../git/tracehub/pmo/security/WebConfig.java | 13 +++++++--- .../pmo/security/expression/Expression.java | 13 +++++++--- .../pmo/security/expression/HasProject.java | 13 +++++++--- .../pmo/security/expression/package-info.java | 13 +++++++--- .../tracehub/pmo/security/package-info.java | 13 +++++++--- .../tracehub/pmo/ticket/DefaultTickets.java | 13 +++++++--- .../java/git/tracehub/pmo/ticket/Ticket.java | 13 +++++++--- .../git/tracehub/pmo/ticket/TicketOf.java | 13 +++++++--- .../java/git/tracehub/pmo/ticket/Tickets.java | 13 +++++++--- .../git/tracehub/pmo/ticket/package-info.java | 13 +++++++--- .../db/changelog/2024/001-projects.sql | 13 +++++++--- .../db/changelog/2024/002-tickets.sql | 13 +++++++--- .../db/changelog/2024/003-naming.sql | 13 +++++++--- .../changelog/2024/004-performers-naming.sql | 13 +++++++--- .../db/changelog/2024/005-secrets.sql | 13 +++++++--- src/main/resources/sql/exists-key.sql | 24 ++++++++++++++++++ src/main/resources/sql/insert-project.sql | 13 +++++++--- src/main/resources/sql/insert-secret.sql | 13 +++++++--- src/main/resources/sql/insert-ticket.sql | 13 +++++++--- .../resources/sql/select-keys-by-project.sql | 13 +++++++--- .../resources/sql/select-project-by-id.sql | 13 +++++++--- .../sql/select-projects-by-user-login.sql | 13 +++++++--- .../resources/sql/select-secret-by-key.sql | 13 +++++++--- .../sql/select-ticket-by-job-and-repo.sql | 13 +++++++--- .../sql/select-ticket-by-number-and-repo.sql | 13 +++++++--- src/main/resources/sql/update-secret.sql | 13 +++++++--- .../pmo/controller/AdviceControllerTest.java | 13 +++++++--- .../pmo/controller/ProjectControllerTest.java | 13 +++++++--- .../pmo/controller/SecretControllerTest.java | 13 +++++++--- .../pmo/controller/TicketControllerTest.java | 13 +++++++--- .../tracehub/pmo/controller/package-info.java | 13 +++++++--- .../request/ProjectFromReqTest.java | 13 +++++++--- .../controller/request/SecretFromReqTest.java | 13 +++++++--- .../controller/request/TicketFromReqTest.java | 13 +++++++--- .../pmo/controller/request/package-info.java | 13 +++++++--- .../tracehub/pmo/exception/LoggedTest.java | 13 +++++++--- .../tracehub/pmo/exception/RestErrorTest.java | 13 +++++++--- .../tracehub/pmo/exception/package-info.java | 13 +++++++--- .../pmo/extensions/MkArgumentException.java | 13 +++++++--- .../tracehub/pmo/extensions/package-info.java | 13 +++++++--- .../java/git/tracehub/pmo/package-info.java | 13 +++++++--- .../pmo/platforms/ColorInHexTest.java | 13 +++++++--- .../tracehub/pmo/platforms/RepoPathTest.java | 13 +++++++--- .../platforms/github/CreateLabelsTest.java | 13 +++++++--- .../github/InviteCollaboratorTest.java | 13 +++++++--- .../pmo/platforms/github/package-info.java | 13 +++++++--- .../github/webhook/CreateWebhookTest.java | 13 +++++++--- .../github/webhook/ExistsWebhookTest.java | 13 +++++++--- .../platforms/github/webhook/WebhookTest.java | 13 +++++++--- .../github/webhook/WebhooksTest.java | 13 +++++++--- .../github/webhook/package-info.java | 13 +++++++--- .../tracehub/pmo/platforms/package-info.java | 13 +++++++--- .../pmo/project/AdjustedTextTest.java | 13 +++++++--- .../git/tracehub/pmo/project/DateOfTest.java | 13 +++++++--- .../pmo/project/DefaultProjectsTest.java | 13 +++++++--- .../git/tracehub/pmo/project/MockProject.java | 13 +++++++--- .../tracehub/pmo/project/ProjectOfTest.java | 13 +++++++--- .../pmo/project/SqlStatementTest.java | 13 +++++++--- .../tracehub/pmo/project/package-info.java | 13 +++++++--- .../tracehub/pmo/secret/DefaultKeysTest.java | 13 +++++++--- .../pmo/secret/DefaultSecretsTest.java | 13 +++++++--- .../pmo/secret/EncryptedSecretsTest.java | 13 +++++++--- .../git/tracehub/pmo/secret/KeyOfTest.java | 13 +++++++--- .../git/tracehub/pmo/secret/MockSecret.java | 13 +++++++--- .../git/tracehub/pmo/secret/SecretOfTest.java | 13 +++++++--- .../pmo/secret/ValidatedSecretsTest.java | 13 +++++++--- .../git/tracehub/pmo/secret/package-info.java | 13 +++++++--- .../security/AuthoritiesConverterTest.java | 13 +++++++--- .../tracehub/pmo/security/ClaimOfTest.java | 13 +++++++--- .../tracehub/pmo/security/IdProviderTest.java | 13 +++++++--- .../tracehub/pmo/security/IpdTokenTest.java | 13 +++++++--- .../security/expression/Authentication.java | 13 +++++++--- .../security/expression/HasProjectTest.java | 13 +++++++--- .../pmo/security/expression/package-info.java | 13 +++++++--- .../tracehub/pmo/security/package-info.java | 13 +++++++--- .../pmo/ticket/DefaultTicketsTest.java | 13 +++++++--- .../git/tracehub/pmo/ticket/MockTicket.java | 13 +++++++--- .../git/tracehub/pmo/ticket/TicketOfTest.java | 13 +++++++--- .../git/tracehub/pmo/ticket/package-info.java | 13 +++++++--- src/test/java/it/KeycloakIntegration.java | 13 +++++++--- src/test/java/it/PostgresIntegration.java | 13 +++++++--- src/test/java/it/database/DefaultKeysIT.java | 13 +++++++--- .../java/it/database/DefaultProjectsIT.java | 13 +++++++--- .../java/it/database/DefaultSecretsIT.java | 13 +++++++--- .../java/it/database/DefaultTicketsIT.java | 13 +++++++--- src/test/java/it/database/package-info.java | 13 +++++++--- src/test/java/it/package-info.java | 13 +++++++--- .../it/platforms/github/CreateLabelsIT.java | 13 +++++++--- .../github/InviteCollaboratorIT.java | 13 +++++++--- .../it/platforms/github/package-info.java | 13 +++++++--- .../github/webhook/CreateWebhookIT.java | 13 +++++++--- .../github/webhook/ExistsWebhookIT.java | 13 +++++++--- .../platforms/github/webhook/WebhooksIT.java | 13 +++++++--- .../github/webhook/package-info.java | 13 +++++++--- src/test/java/it/web/CreateSecretITCase.java | 13 +++++++--- src/test/java/it/web/CreateTicketITCase.java | 13 +++++++--- src/test/java/it/web/KeycloakToken.java | 13 +++++++--- .../it/web/RetrieveProjectByIdITCase.java | 13 +++++++--- .../it/web/RetrieveProjectsByUserITCase.java | 13 +++++++--- .../it/web/RetrieveSecretByKeyITCase.java | 13 +++++++--- .../web/RetrieveSecretsByProjectITCase.java | 13 +++++++--- .../it/web/RetrieveTicketByJobITCase.java | 13 +++++++--- .../it/web/RetrieveTicketByNumberITCase.java | 13 +++++++--- src/test/java/it/web/UpdateSecretITCase.java | 13 +++++++--- src/test/java/it/web/package-info.java | 13 +++++++--- src/test/resources/pre/sql/projects.sql | 25 ++++++++++++++++++- 165 files changed, 1678 insertions(+), 490 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index 968fc66..4086a36 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,9 +1,16 @@ +The MIT License (MIT) + Copyright (c) 2023-2024 Tracehub.git Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to read -the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, -merge, publish, distribute, sublicense, and/or sell copies of the Software. +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/PmoApplication.java b/src/main/java/git/tracehub/pmo/PmoApplication.java index d920235..e3c5694 100644 --- a/src/main/java/git/tracehub/pmo/PmoApplication.java +++ b/src/main/java/git/tracehub/pmo/PmoApplication.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/controller/AdviceController.java b/src/main/java/git/tracehub/pmo/controller/AdviceController.java index 2e423fd..0690b2a 100644 --- a/src/main/java/git/tracehub/pmo/controller/AdviceController.java +++ b/src/main/java/git/tracehub/pmo/controller/AdviceController.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/controller/ProjectController.java b/src/main/java/git/tracehub/pmo/controller/ProjectController.java index ba58223..0a37ce7 100644 --- a/src/main/java/git/tracehub/pmo/controller/ProjectController.java +++ b/src/main/java/git/tracehub/pmo/controller/ProjectController.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/controller/SecretController.java b/src/main/java/git/tracehub/pmo/controller/SecretController.java index 6f2b174..82c28c4 100644 --- a/src/main/java/git/tracehub/pmo/controller/SecretController.java +++ b/src/main/java/git/tracehub/pmo/controller/SecretController.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/controller/TicketController.java b/src/main/java/git/tracehub/pmo/controller/TicketController.java index fbef526..d003807 100644 --- a/src/main/java/git/tracehub/pmo/controller/TicketController.java +++ b/src/main/java/git/tracehub/pmo/controller/TicketController.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/controller/package-info.java b/src/main/java/git/tracehub/pmo/controller/package-info.java index aceb641..5c65cbe 100644 --- a/src/main/java/git/tracehub/pmo/controller/package-info.java +++ b/src/main/java/git/tracehub/pmo/controller/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/controller/request/ProjectFromReq.java b/src/main/java/git/tracehub/pmo/controller/request/ProjectFromReq.java index 5a2e016..85c2631 100644 --- a/src/main/java/git/tracehub/pmo/controller/request/ProjectFromReq.java +++ b/src/main/java/git/tracehub/pmo/controller/request/ProjectFromReq.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/controller/request/RqProject.java b/src/main/java/git/tracehub/pmo/controller/request/RqProject.java index ef1dd6d..eca4f90 100644 --- a/src/main/java/git/tracehub/pmo/controller/request/RqProject.java +++ b/src/main/java/git/tracehub/pmo/controller/request/RqProject.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/controller/request/RqSecret.java b/src/main/java/git/tracehub/pmo/controller/request/RqSecret.java index affa812..2798e4c 100644 --- a/src/main/java/git/tracehub/pmo/controller/request/RqSecret.java +++ b/src/main/java/git/tracehub/pmo/controller/request/RqSecret.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/controller/request/RqTicket.java b/src/main/java/git/tracehub/pmo/controller/request/RqTicket.java index afa27d3..90eea1d 100644 --- a/src/main/java/git/tracehub/pmo/controller/request/RqTicket.java +++ b/src/main/java/git/tracehub/pmo/controller/request/RqTicket.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/controller/request/SecretFromReq.java b/src/main/java/git/tracehub/pmo/controller/request/SecretFromReq.java index 1ef9f2f..12c95cf 100644 --- a/src/main/java/git/tracehub/pmo/controller/request/SecretFromReq.java +++ b/src/main/java/git/tracehub/pmo/controller/request/SecretFromReq.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/controller/request/TicketFromReq.java b/src/main/java/git/tracehub/pmo/controller/request/TicketFromReq.java index 302919f..0847254 100644 --- a/src/main/java/git/tracehub/pmo/controller/request/TicketFromReq.java +++ b/src/main/java/git/tracehub/pmo/controller/request/TicketFromReq.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/controller/request/package-info.java b/src/main/java/git/tracehub/pmo/controller/request/package-info.java index 85c64d6..7dd2694 100644 --- a/src/main/java/git/tracehub/pmo/controller/request/package-info.java +++ b/src/main/java/git/tracehub/pmo/controller/request/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/exception/Logged.java b/src/main/java/git/tracehub/pmo/exception/Logged.java index 4dc7012..389ee20 100644 --- a/src/main/java/git/tracehub/pmo/exception/Logged.java +++ b/src/main/java/git/tracehub/pmo/exception/Logged.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/exception/ResourceAlreadyExistsException.java b/src/main/java/git/tracehub/pmo/exception/ResourceAlreadyExistsException.java index b7ed8f9..d94646f 100644 --- a/src/main/java/git/tracehub/pmo/exception/ResourceAlreadyExistsException.java +++ b/src/main/java/git/tracehub/pmo/exception/ResourceAlreadyExistsException.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/exception/ResourceNotFoundException.java b/src/main/java/git/tracehub/pmo/exception/ResourceNotFoundException.java index eb86a43..397d7f2 100644 --- a/src/main/java/git/tracehub/pmo/exception/ResourceNotFoundException.java +++ b/src/main/java/git/tracehub/pmo/exception/ResourceNotFoundException.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/exception/RestError.java b/src/main/java/git/tracehub/pmo/exception/RestError.java index b52db4e..2d209a6 100644 --- a/src/main/java/git/tracehub/pmo/exception/RestError.java +++ b/src/main/java/git/tracehub/pmo/exception/RestError.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/exception/package-info.java b/src/main/java/git/tracehub/pmo/exception/package-info.java index 528b87a..0d1752f 100644 --- a/src/main/java/git/tracehub/pmo/exception/package-info.java +++ b/src/main/java/git/tracehub/pmo/exception/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/package-info.java b/src/main/java/git/tracehub/pmo/package-info.java index f99a595..550d5ad 100644 --- a/src/main/java/git/tracehub/pmo/package-info.java +++ b/src/main/java/git/tracehub/pmo/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/platforms/Action.java b/src/main/java/git/tracehub/pmo/platforms/Action.java index 2eab401..e3b5ea1 100644 --- a/src/main/java/git/tracehub/pmo/platforms/Action.java +++ b/src/main/java/git/tracehub/pmo/platforms/Action.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/platforms/ColorInHex.java b/src/main/java/git/tracehub/pmo/platforms/ColorInHex.java index 83bc130..5097284 100644 --- a/src/main/java/git/tracehub/pmo/platforms/ColorInHex.java +++ b/src/main/java/git/tracehub/pmo/platforms/ColorInHex.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/platforms/Label.java b/src/main/java/git/tracehub/pmo/platforms/Label.java index aab1eab..3f9daa9 100644 --- a/src/main/java/git/tracehub/pmo/platforms/Label.java +++ b/src/main/java/git/tracehub/pmo/platforms/Label.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/platforms/Platform.java b/src/main/java/git/tracehub/pmo/platforms/Platform.java index 7626d77..cb28f24 100644 --- a/src/main/java/git/tracehub/pmo/platforms/Platform.java +++ b/src/main/java/git/tracehub/pmo/platforms/Platform.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/platforms/RepoPath.java b/src/main/java/git/tracehub/pmo/platforms/RepoPath.java index 4971c5a..f6823a4 100644 --- a/src/main/java/git/tracehub/pmo/platforms/RepoPath.java +++ b/src/main/java/git/tracehub/pmo/platforms/RepoPath.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/platforms/github/CreateLabels.java b/src/main/java/git/tracehub/pmo/platforms/github/CreateLabels.java index 330dde0..b4ec893 100644 --- a/src/main/java/git/tracehub/pmo/platforms/github/CreateLabels.java +++ b/src/main/java/git/tracehub/pmo/platforms/github/CreateLabels.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/platforms/github/Github.java b/src/main/java/git/tracehub/pmo/platforms/github/Github.java index c98a55a..56bf83a 100644 --- a/src/main/java/git/tracehub/pmo/platforms/github/Github.java +++ b/src/main/java/git/tracehub/pmo/platforms/github/Github.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/platforms/github/InviteCollaborator.java b/src/main/java/git/tracehub/pmo/platforms/github/InviteCollaborator.java index fbbe421..a57193e 100644 --- a/src/main/java/git/tracehub/pmo/platforms/github/InviteCollaborator.java +++ b/src/main/java/git/tracehub/pmo/platforms/github/InviteCollaborator.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/platforms/github/package-info.java b/src/main/java/git/tracehub/pmo/platforms/github/package-info.java index e7c9aa7..12a207a 100644 --- a/src/main/java/git/tracehub/pmo/platforms/github/package-info.java +++ b/src/main/java/git/tracehub/pmo/platforms/github/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/platforms/github/webhook/CreateWebhook.java b/src/main/java/git/tracehub/pmo/platforms/github/webhook/CreateWebhook.java index a53badf..23d1096 100644 --- a/src/main/java/git/tracehub/pmo/platforms/github/webhook/CreateWebhook.java +++ b/src/main/java/git/tracehub/pmo/platforms/github/webhook/CreateWebhook.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/platforms/github/webhook/ExistsWebhook.java b/src/main/java/git/tracehub/pmo/platforms/github/webhook/ExistsWebhook.java index f42d5d1..c6a2a7d 100644 --- a/src/main/java/git/tracehub/pmo/platforms/github/webhook/ExistsWebhook.java +++ b/src/main/java/git/tracehub/pmo/platforms/github/webhook/ExistsWebhook.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/platforms/github/webhook/Webhook.java b/src/main/java/git/tracehub/pmo/platforms/github/webhook/Webhook.java index 08fc514..4980094 100644 --- a/src/main/java/git/tracehub/pmo/platforms/github/webhook/Webhook.java +++ b/src/main/java/git/tracehub/pmo/platforms/github/webhook/Webhook.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/platforms/github/webhook/Webhooks.java b/src/main/java/git/tracehub/pmo/platforms/github/webhook/Webhooks.java index 714b345..8fbf2e0 100644 --- a/src/main/java/git/tracehub/pmo/platforms/github/webhook/Webhooks.java +++ b/src/main/java/git/tracehub/pmo/platforms/github/webhook/Webhooks.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/platforms/github/webhook/package-info.java b/src/main/java/git/tracehub/pmo/platforms/github/webhook/package-info.java index 21592bc..ed6f04b 100644 --- a/src/main/java/git/tracehub/pmo/platforms/github/webhook/package-info.java +++ b/src/main/java/git/tracehub/pmo/platforms/github/webhook/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/platforms/package-info.java b/src/main/java/git/tracehub/pmo/platforms/package-info.java index 02c016d..b769c6d 100644 --- a/src/main/java/git/tracehub/pmo/platforms/package-info.java +++ b/src/main/java/git/tracehub/pmo/platforms/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/project/AdjustedText.java b/src/main/java/git/tracehub/pmo/project/AdjustedText.java index 40dee17..475bb94 100644 --- a/src/main/java/git/tracehub/pmo/project/AdjustedText.java +++ b/src/main/java/git/tracehub/pmo/project/AdjustedText.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/project/DateOf.java b/src/main/java/git/tracehub/pmo/project/DateOf.java index 81d07ed..28e4381 100644 --- a/src/main/java/git/tracehub/pmo/project/DateOf.java +++ b/src/main/java/git/tracehub/pmo/project/DateOf.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/project/DefaultProjects.java b/src/main/java/git/tracehub/pmo/project/DefaultProjects.java index de20d90..a8d9d02 100644 --- a/src/main/java/git/tracehub/pmo/project/DefaultProjects.java +++ b/src/main/java/git/tracehub/pmo/project/DefaultProjects.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/project/Project.java b/src/main/java/git/tracehub/pmo/project/Project.java index 33c9efc..31d7643 100644 --- a/src/main/java/git/tracehub/pmo/project/Project.java +++ b/src/main/java/git/tracehub/pmo/project/Project.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/project/ProjectOf.java b/src/main/java/git/tracehub/pmo/project/ProjectOf.java index d6e44b2..0d617ba 100644 --- a/src/main/java/git/tracehub/pmo/project/ProjectOf.java +++ b/src/main/java/git/tracehub/pmo/project/ProjectOf.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/project/Projects.java b/src/main/java/git/tracehub/pmo/project/Projects.java index f61c6d9..a90bd4b 100644 --- a/src/main/java/git/tracehub/pmo/project/Projects.java +++ b/src/main/java/git/tracehub/pmo/project/Projects.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/project/Sql.java b/src/main/java/git/tracehub/pmo/project/Sql.java index d8ae9ef..f9d3351 100644 --- a/src/main/java/git/tracehub/pmo/project/Sql.java +++ b/src/main/java/git/tracehub/pmo/project/Sql.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/project/SqlStatement.java b/src/main/java/git/tracehub/pmo/project/SqlStatement.java index 49b5d47..c796912 100644 --- a/src/main/java/git/tracehub/pmo/project/SqlStatement.java +++ b/src/main/java/git/tracehub/pmo/project/SqlStatement.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/project/package-info.java b/src/main/java/git/tracehub/pmo/project/package-info.java index e77a101..3936cf8 100644 --- a/src/main/java/git/tracehub/pmo/project/package-info.java +++ b/src/main/java/git/tracehub/pmo/project/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/secret/DefaultKeys.java b/src/main/java/git/tracehub/pmo/secret/DefaultKeys.java index 5dc0a88..6caffb5 100644 --- a/src/main/java/git/tracehub/pmo/secret/DefaultKeys.java +++ b/src/main/java/git/tracehub/pmo/secret/DefaultKeys.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/secret/DefaultSecrets.java b/src/main/java/git/tracehub/pmo/secret/DefaultSecrets.java index 95b407c..d51cdec 100644 --- a/src/main/java/git/tracehub/pmo/secret/DefaultSecrets.java +++ b/src/main/java/git/tracehub/pmo/secret/DefaultSecrets.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/secret/EncryptedSecrets.java b/src/main/java/git/tracehub/pmo/secret/EncryptedSecrets.java index bdba619..0a9a385 100644 --- a/src/main/java/git/tracehub/pmo/secret/EncryptedSecrets.java +++ b/src/main/java/git/tracehub/pmo/secret/EncryptedSecrets.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/secret/Key.java b/src/main/java/git/tracehub/pmo/secret/Key.java index c903a2f..a37e6b8 100644 --- a/src/main/java/git/tracehub/pmo/secret/Key.java +++ b/src/main/java/git/tracehub/pmo/secret/Key.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/secret/KeyOf.java b/src/main/java/git/tracehub/pmo/secret/KeyOf.java index 8bd3793..ac5418b 100644 --- a/src/main/java/git/tracehub/pmo/secret/KeyOf.java +++ b/src/main/java/git/tracehub/pmo/secret/KeyOf.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/secret/Keys.java b/src/main/java/git/tracehub/pmo/secret/Keys.java index d274833..a6bd20a 100644 --- a/src/main/java/git/tracehub/pmo/secret/Keys.java +++ b/src/main/java/git/tracehub/pmo/secret/Keys.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/secret/Secret.java b/src/main/java/git/tracehub/pmo/secret/Secret.java index 3b71da2..10001e6 100644 --- a/src/main/java/git/tracehub/pmo/secret/Secret.java +++ b/src/main/java/git/tracehub/pmo/secret/Secret.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/secret/SecretOf.java b/src/main/java/git/tracehub/pmo/secret/SecretOf.java index 56b2a2e..70efebb 100644 --- a/src/main/java/git/tracehub/pmo/secret/SecretOf.java +++ b/src/main/java/git/tracehub/pmo/secret/SecretOf.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/secret/Secrets.java b/src/main/java/git/tracehub/pmo/secret/Secrets.java index 7624d5a..a68ee40 100644 --- a/src/main/java/git/tracehub/pmo/secret/Secrets.java +++ b/src/main/java/git/tracehub/pmo/secret/Secrets.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/secret/ValidatedSecrets.java b/src/main/java/git/tracehub/pmo/secret/ValidatedSecrets.java index 7511616..e8ce180 100644 --- a/src/main/java/git/tracehub/pmo/secret/ValidatedSecrets.java +++ b/src/main/java/git/tracehub/pmo/secret/ValidatedSecrets.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/secret/package-info.java b/src/main/java/git/tracehub/pmo/secret/package-info.java index cb3501e..b923eb4 100644 --- a/src/main/java/git/tracehub/pmo/secret/package-info.java +++ b/src/main/java/git/tracehub/pmo/secret/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/security/AuthoritiesConverter.java b/src/main/java/git/tracehub/pmo/security/AuthoritiesConverter.java index 242f40b..a9e4483 100644 --- a/src/main/java/git/tracehub/pmo/security/AuthoritiesConverter.java +++ b/src/main/java/git/tracehub/pmo/security/AuthoritiesConverter.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/security/ClaimOf.java b/src/main/java/git/tracehub/pmo/security/ClaimOf.java index 5f04307..b023b09 100644 --- a/src/main/java/git/tracehub/pmo/security/ClaimOf.java +++ b/src/main/java/git/tracehub/pmo/security/ClaimOf.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/security/IdProvider.java b/src/main/java/git/tracehub/pmo/security/IdProvider.java index 2661ba8..6a19ba8 100644 --- a/src/main/java/git/tracehub/pmo/security/IdProvider.java +++ b/src/main/java/git/tracehub/pmo/security/IdProvider.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/security/IdpToken.java b/src/main/java/git/tracehub/pmo/security/IdpToken.java index 33925e8..7c83baf 100644 --- a/src/main/java/git/tracehub/pmo/security/IdpToken.java +++ b/src/main/java/git/tracehub/pmo/security/IdpToken.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/security/WebConfig.java b/src/main/java/git/tracehub/pmo/security/WebConfig.java index e69104a..37120e9 100644 --- a/src/main/java/git/tracehub/pmo/security/WebConfig.java +++ b/src/main/java/git/tracehub/pmo/security/WebConfig.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/security/expression/Expression.java b/src/main/java/git/tracehub/pmo/security/expression/Expression.java index ec9be85..1f2d011 100644 --- a/src/main/java/git/tracehub/pmo/security/expression/Expression.java +++ b/src/main/java/git/tracehub/pmo/security/expression/Expression.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/security/expression/HasProject.java b/src/main/java/git/tracehub/pmo/security/expression/HasProject.java index 38e1685..eef7b33 100644 --- a/src/main/java/git/tracehub/pmo/security/expression/HasProject.java +++ b/src/main/java/git/tracehub/pmo/security/expression/HasProject.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/security/expression/package-info.java b/src/main/java/git/tracehub/pmo/security/expression/package-info.java index 2187fa5..32f4bcc 100644 --- a/src/main/java/git/tracehub/pmo/security/expression/package-info.java +++ b/src/main/java/git/tracehub/pmo/security/expression/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/security/package-info.java b/src/main/java/git/tracehub/pmo/security/package-info.java index bc6461d..10bf599 100644 --- a/src/main/java/git/tracehub/pmo/security/package-info.java +++ b/src/main/java/git/tracehub/pmo/security/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/ticket/DefaultTickets.java b/src/main/java/git/tracehub/pmo/ticket/DefaultTickets.java index ae80b80..e935484 100644 --- a/src/main/java/git/tracehub/pmo/ticket/DefaultTickets.java +++ b/src/main/java/git/tracehub/pmo/ticket/DefaultTickets.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/ticket/Ticket.java b/src/main/java/git/tracehub/pmo/ticket/Ticket.java index 2620f79..a57738a 100644 --- a/src/main/java/git/tracehub/pmo/ticket/Ticket.java +++ b/src/main/java/git/tracehub/pmo/ticket/Ticket.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/ticket/TicketOf.java b/src/main/java/git/tracehub/pmo/ticket/TicketOf.java index 79d20cd..8086e00 100644 --- a/src/main/java/git/tracehub/pmo/ticket/TicketOf.java +++ b/src/main/java/git/tracehub/pmo/ticket/TicketOf.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/ticket/Tickets.java b/src/main/java/git/tracehub/pmo/ticket/Tickets.java index 6c204fd..f42e4d8 100644 --- a/src/main/java/git/tracehub/pmo/ticket/Tickets.java +++ b/src/main/java/git/tracehub/pmo/ticket/Tickets.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/java/git/tracehub/pmo/ticket/package-info.java b/src/main/java/git/tracehub/pmo/ticket/package-info.java index 0b24f88..cafeaf7 100644 --- a/src/main/java/git/tracehub/pmo/ticket/package-info.java +++ b/src/main/java/git/tracehub/pmo/ticket/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/resources/db/changelog/2024/001-projects.sql b/src/main/resources/db/changelog/2024/001-projects.sql index b884fee..f94d43c 100644 --- a/src/main/resources/db/changelog/2024/001-projects.sql +++ b/src/main/resources/db/changelog/2024/001-projects.sql @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/resources/db/changelog/2024/002-tickets.sql b/src/main/resources/db/changelog/2024/002-tickets.sql index 009582f..2dfafc6 100644 --- a/src/main/resources/db/changelog/2024/002-tickets.sql +++ b/src/main/resources/db/changelog/2024/002-tickets.sql @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/resources/db/changelog/2024/003-naming.sql b/src/main/resources/db/changelog/2024/003-naming.sql index 760923e..372e0e9 100644 --- a/src/main/resources/db/changelog/2024/003-naming.sql +++ b/src/main/resources/db/changelog/2024/003-naming.sql @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/resources/db/changelog/2024/004-performers-naming.sql b/src/main/resources/db/changelog/2024/004-performers-naming.sql index 3f7746f..da25ebc 100644 --- a/src/main/resources/db/changelog/2024/004-performers-naming.sql +++ b/src/main/resources/db/changelog/2024/004-performers-naming.sql @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/resources/db/changelog/2024/005-secrets.sql b/src/main/resources/db/changelog/2024/005-secrets.sql index a172c86..b3983d0 100644 --- a/src/main/resources/db/changelog/2024/005-secrets.sql +++ b/src/main/resources/db/changelog/2024/005-secrets.sql @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/resources/sql/exists-key.sql b/src/main/resources/sql/exists-key.sql index b5be512..6696838 100644 --- a/src/main/resources/sql/exists-key.sql +++ b/src/main/resources/sql/exists-key.sql @@ -1 +1,25 @@ +/* + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Tracehub.git + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + SELECT EXISTS(SELECT 1 FROM projects.secret WHERE project = ? AND key =?) \ No newline at end of file diff --git a/src/main/resources/sql/insert-project.sql b/src/main/resources/sql/insert-project.sql index f801038..6a5b764 100644 --- a/src/main/resources/sql/insert-project.sql +++ b/src/main/resources/sql/insert-project.sql @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/resources/sql/insert-secret.sql b/src/main/resources/sql/insert-secret.sql index d349668..dce2b0b 100644 --- a/src/main/resources/sql/insert-secret.sql +++ b/src/main/resources/sql/insert-secret.sql @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/resources/sql/insert-ticket.sql b/src/main/resources/sql/insert-ticket.sql index 9203751..90892ea 100644 --- a/src/main/resources/sql/insert-ticket.sql +++ b/src/main/resources/sql/insert-ticket.sql @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/resources/sql/select-keys-by-project.sql b/src/main/resources/sql/select-keys-by-project.sql index 7d3f66b..f76fa7b 100644 --- a/src/main/resources/sql/select-keys-by-project.sql +++ b/src/main/resources/sql/select-keys-by-project.sql @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/resources/sql/select-project-by-id.sql b/src/main/resources/sql/select-project-by-id.sql index caffdac..d87e380 100644 --- a/src/main/resources/sql/select-project-by-id.sql +++ b/src/main/resources/sql/select-project-by-id.sql @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/resources/sql/select-projects-by-user-login.sql b/src/main/resources/sql/select-projects-by-user-login.sql index 61a9ceb..ef90da1 100644 --- a/src/main/resources/sql/select-projects-by-user-login.sql +++ b/src/main/resources/sql/select-projects-by-user-login.sql @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/resources/sql/select-secret-by-key.sql b/src/main/resources/sql/select-secret-by-key.sql index 64068cb..104db31 100644 --- a/src/main/resources/sql/select-secret-by-key.sql +++ b/src/main/resources/sql/select-secret-by-key.sql @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/resources/sql/select-ticket-by-job-and-repo.sql b/src/main/resources/sql/select-ticket-by-job-and-repo.sql index 08f6a1f..ff58840 100644 --- a/src/main/resources/sql/select-ticket-by-job-and-repo.sql +++ b/src/main/resources/sql/select-ticket-by-job-and-repo.sql @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/resources/sql/select-ticket-by-number-and-repo.sql b/src/main/resources/sql/select-ticket-by-number-and-repo.sql index 493d196..1eaf368 100644 --- a/src/main/resources/sql/select-ticket-by-number-and-repo.sql +++ b/src/main/resources/sql/select-ticket-by-number-and-repo.sql @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/main/resources/sql/update-secret.sql b/src/main/resources/sql/update-secret.sql index 6ac6587..f022dd6 100644 --- a/src/main/resources/sql/update-secret.sql +++ b/src/main/resources/sql/update-secret.sql @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/controller/AdviceControllerTest.java b/src/test/java/git/tracehub/pmo/controller/AdviceControllerTest.java index e8a5e7d..2beff23 100644 --- a/src/test/java/git/tracehub/pmo/controller/AdviceControllerTest.java +++ b/src/test/java/git/tracehub/pmo/controller/AdviceControllerTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/controller/ProjectControllerTest.java b/src/test/java/git/tracehub/pmo/controller/ProjectControllerTest.java index 180cfc3..a60d3b4 100644 --- a/src/test/java/git/tracehub/pmo/controller/ProjectControllerTest.java +++ b/src/test/java/git/tracehub/pmo/controller/ProjectControllerTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/controller/SecretControllerTest.java b/src/test/java/git/tracehub/pmo/controller/SecretControllerTest.java index bc28b26..a00bd3f 100644 --- a/src/test/java/git/tracehub/pmo/controller/SecretControllerTest.java +++ b/src/test/java/git/tracehub/pmo/controller/SecretControllerTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/controller/TicketControllerTest.java b/src/test/java/git/tracehub/pmo/controller/TicketControllerTest.java index b2be4e9..9521519 100644 --- a/src/test/java/git/tracehub/pmo/controller/TicketControllerTest.java +++ b/src/test/java/git/tracehub/pmo/controller/TicketControllerTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/controller/package-info.java b/src/test/java/git/tracehub/pmo/controller/package-info.java index 5ca9dfa..76b8f0d 100644 --- a/src/test/java/git/tracehub/pmo/controller/package-info.java +++ b/src/test/java/git/tracehub/pmo/controller/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/controller/request/ProjectFromReqTest.java b/src/test/java/git/tracehub/pmo/controller/request/ProjectFromReqTest.java index ac05a1b..e9f596a 100644 --- a/src/test/java/git/tracehub/pmo/controller/request/ProjectFromReqTest.java +++ b/src/test/java/git/tracehub/pmo/controller/request/ProjectFromReqTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/controller/request/SecretFromReqTest.java b/src/test/java/git/tracehub/pmo/controller/request/SecretFromReqTest.java index f5e4a62..a748a27 100644 --- a/src/test/java/git/tracehub/pmo/controller/request/SecretFromReqTest.java +++ b/src/test/java/git/tracehub/pmo/controller/request/SecretFromReqTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/controller/request/TicketFromReqTest.java b/src/test/java/git/tracehub/pmo/controller/request/TicketFromReqTest.java index 6898452..69ad905 100644 --- a/src/test/java/git/tracehub/pmo/controller/request/TicketFromReqTest.java +++ b/src/test/java/git/tracehub/pmo/controller/request/TicketFromReqTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/controller/request/package-info.java b/src/test/java/git/tracehub/pmo/controller/request/package-info.java index c380618..bf4dc65 100644 --- a/src/test/java/git/tracehub/pmo/controller/request/package-info.java +++ b/src/test/java/git/tracehub/pmo/controller/request/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/exception/LoggedTest.java b/src/test/java/git/tracehub/pmo/exception/LoggedTest.java index 0c1aaa8..7b8e88e 100644 --- a/src/test/java/git/tracehub/pmo/exception/LoggedTest.java +++ b/src/test/java/git/tracehub/pmo/exception/LoggedTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/exception/RestErrorTest.java b/src/test/java/git/tracehub/pmo/exception/RestErrorTest.java index 229d172..901d756 100644 --- a/src/test/java/git/tracehub/pmo/exception/RestErrorTest.java +++ b/src/test/java/git/tracehub/pmo/exception/RestErrorTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/exception/package-info.java b/src/test/java/git/tracehub/pmo/exception/package-info.java index f00a869..7d04e83 100644 --- a/src/test/java/git/tracehub/pmo/exception/package-info.java +++ b/src/test/java/git/tracehub/pmo/exception/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/extensions/MkArgumentException.java b/src/test/java/git/tracehub/pmo/extensions/MkArgumentException.java index 1090e8e..424ba4a 100644 --- a/src/test/java/git/tracehub/pmo/extensions/MkArgumentException.java +++ b/src/test/java/git/tracehub/pmo/extensions/MkArgumentException.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/extensions/package-info.java b/src/test/java/git/tracehub/pmo/extensions/package-info.java index b907b66..df5ed8c 100644 --- a/src/test/java/git/tracehub/pmo/extensions/package-info.java +++ b/src/test/java/git/tracehub/pmo/extensions/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/package-info.java b/src/test/java/git/tracehub/pmo/package-info.java index 4b57ef5..28e58bd 100644 --- a/src/test/java/git/tracehub/pmo/package-info.java +++ b/src/test/java/git/tracehub/pmo/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/platforms/ColorInHexTest.java b/src/test/java/git/tracehub/pmo/platforms/ColorInHexTest.java index 4fc7451..1c663ed 100644 --- a/src/test/java/git/tracehub/pmo/platforms/ColorInHexTest.java +++ b/src/test/java/git/tracehub/pmo/platforms/ColorInHexTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/platforms/RepoPathTest.java b/src/test/java/git/tracehub/pmo/platforms/RepoPathTest.java index 964844a..3ddda26 100644 --- a/src/test/java/git/tracehub/pmo/platforms/RepoPathTest.java +++ b/src/test/java/git/tracehub/pmo/platforms/RepoPathTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/platforms/github/CreateLabelsTest.java b/src/test/java/git/tracehub/pmo/platforms/github/CreateLabelsTest.java index 2baceaf..a5661f8 100644 --- a/src/test/java/git/tracehub/pmo/platforms/github/CreateLabelsTest.java +++ b/src/test/java/git/tracehub/pmo/platforms/github/CreateLabelsTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/platforms/github/InviteCollaboratorTest.java b/src/test/java/git/tracehub/pmo/platforms/github/InviteCollaboratorTest.java index 0f0ff32..892122c 100644 --- a/src/test/java/git/tracehub/pmo/platforms/github/InviteCollaboratorTest.java +++ b/src/test/java/git/tracehub/pmo/platforms/github/InviteCollaboratorTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/platforms/github/package-info.java b/src/test/java/git/tracehub/pmo/platforms/github/package-info.java index 1db16f4..c103011 100644 --- a/src/test/java/git/tracehub/pmo/platforms/github/package-info.java +++ b/src/test/java/git/tracehub/pmo/platforms/github/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/platforms/github/webhook/CreateWebhookTest.java b/src/test/java/git/tracehub/pmo/platforms/github/webhook/CreateWebhookTest.java index 52b5f37..cc8e1c7 100644 --- a/src/test/java/git/tracehub/pmo/platforms/github/webhook/CreateWebhookTest.java +++ b/src/test/java/git/tracehub/pmo/platforms/github/webhook/CreateWebhookTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/platforms/github/webhook/ExistsWebhookTest.java b/src/test/java/git/tracehub/pmo/platforms/github/webhook/ExistsWebhookTest.java index 7fbc636..926ce15 100644 --- a/src/test/java/git/tracehub/pmo/platforms/github/webhook/ExistsWebhookTest.java +++ b/src/test/java/git/tracehub/pmo/platforms/github/webhook/ExistsWebhookTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/platforms/github/webhook/WebhookTest.java b/src/test/java/git/tracehub/pmo/platforms/github/webhook/WebhookTest.java index 8b59a3f..8fc444c 100644 --- a/src/test/java/git/tracehub/pmo/platforms/github/webhook/WebhookTest.java +++ b/src/test/java/git/tracehub/pmo/platforms/github/webhook/WebhookTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/platforms/github/webhook/WebhooksTest.java b/src/test/java/git/tracehub/pmo/platforms/github/webhook/WebhooksTest.java index 387053c..2359f92 100644 --- a/src/test/java/git/tracehub/pmo/platforms/github/webhook/WebhooksTest.java +++ b/src/test/java/git/tracehub/pmo/platforms/github/webhook/WebhooksTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/platforms/github/webhook/package-info.java b/src/test/java/git/tracehub/pmo/platforms/github/webhook/package-info.java index f8e5d3e..b2a0e1d 100644 --- a/src/test/java/git/tracehub/pmo/platforms/github/webhook/package-info.java +++ b/src/test/java/git/tracehub/pmo/platforms/github/webhook/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/platforms/package-info.java b/src/test/java/git/tracehub/pmo/platforms/package-info.java index 884c405..34d6457 100644 --- a/src/test/java/git/tracehub/pmo/platforms/package-info.java +++ b/src/test/java/git/tracehub/pmo/platforms/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/project/AdjustedTextTest.java b/src/test/java/git/tracehub/pmo/project/AdjustedTextTest.java index bb37272..eceb1ca 100644 --- a/src/test/java/git/tracehub/pmo/project/AdjustedTextTest.java +++ b/src/test/java/git/tracehub/pmo/project/AdjustedTextTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/project/DateOfTest.java b/src/test/java/git/tracehub/pmo/project/DateOfTest.java index f66670f..1e0e054 100644 --- a/src/test/java/git/tracehub/pmo/project/DateOfTest.java +++ b/src/test/java/git/tracehub/pmo/project/DateOfTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/project/DefaultProjectsTest.java b/src/test/java/git/tracehub/pmo/project/DefaultProjectsTest.java index fdd8059..14f619a 100644 --- a/src/test/java/git/tracehub/pmo/project/DefaultProjectsTest.java +++ b/src/test/java/git/tracehub/pmo/project/DefaultProjectsTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/project/MockProject.java b/src/test/java/git/tracehub/pmo/project/MockProject.java index 82676f0..01645c8 100644 --- a/src/test/java/git/tracehub/pmo/project/MockProject.java +++ b/src/test/java/git/tracehub/pmo/project/MockProject.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/project/ProjectOfTest.java b/src/test/java/git/tracehub/pmo/project/ProjectOfTest.java index 52f07b4..d7d200a 100644 --- a/src/test/java/git/tracehub/pmo/project/ProjectOfTest.java +++ b/src/test/java/git/tracehub/pmo/project/ProjectOfTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/project/SqlStatementTest.java b/src/test/java/git/tracehub/pmo/project/SqlStatementTest.java index ce97d04..6edb2d2 100644 --- a/src/test/java/git/tracehub/pmo/project/SqlStatementTest.java +++ b/src/test/java/git/tracehub/pmo/project/SqlStatementTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/project/package-info.java b/src/test/java/git/tracehub/pmo/project/package-info.java index 7900f76..8d44abb 100644 --- a/src/test/java/git/tracehub/pmo/project/package-info.java +++ b/src/test/java/git/tracehub/pmo/project/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/secret/DefaultKeysTest.java b/src/test/java/git/tracehub/pmo/secret/DefaultKeysTest.java index 8f35c5a..474c795 100644 --- a/src/test/java/git/tracehub/pmo/secret/DefaultKeysTest.java +++ b/src/test/java/git/tracehub/pmo/secret/DefaultKeysTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/secret/DefaultSecretsTest.java b/src/test/java/git/tracehub/pmo/secret/DefaultSecretsTest.java index a1853a0..c43c663 100644 --- a/src/test/java/git/tracehub/pmo/secret/DefaultSecretsTest.java +++ b/src/test/java/git/tracehub/pmo/secret/DefaultSecretsTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/secret/EncryptedSecretsTest.java b/src/test/java/git/tracehub/pmo/secret/EncryptedSecretsTest.java index 2a35687..d44b2fe 100644 --- a/src/test/java/git/tracehub/pmo/secret/EncryptedSecretsTest.java +++ b/src/test/java/git/tracehub/pmo/secret/EncryptedSecretsTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/secret/KeyOfTest.java b/src/test/java/git/tracehub/pmo/secret/KeyOfTest.java index c0a2bee..01467dc 100644 --- a/src/test/java/git/tracehub/pmo/secret/KeyOfTest.java +++ b/src/test/java/git/tracehub/pmo/secret/KeyOfTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/secret/MockSecret.java b/src/test/java/git/tracehub/pmo/secret/MockSecret.java index 74b662a..b193df4 100644 --- a/src/test/java/git/tracehub/pmo/secret/MockSecret.java +++ b/src/test/java/git/tracehub/pmo/secret/MockSecret.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/secret/SecretOfTest.java b/src/test/java/git/tracehub/pmo/secret/SecretOfTest.java index f1b21d2..12c4bed 100644 --- a/src/test/java/git/tracehub/pmo/secret/SecretOfTest.java +++ b/src/test/java/git/tracehub/pmo/secret/SecretOfTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/secret/ValidatedSecretsTest.java b/src/test/java/git/tracehub/pmo/secret/ValidatedSecretsTest.java index 0173773..c669d2a 100644 --- a/src/test/java/git/tracehub/pmo/secret/ValidatedSecretsTest.java +++ b/src/test/java/git/tracehub/pmo/secret/ValidatedSecretsTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/secret/package-info.java b/src/test/java/git/tracehub/pmo/secret/package-info.java index 968d7fe..7e332bd 100644 --- a/src/test/java/git/tracehub/pmo/secret/package-info.java +++ b/src/test/java/git/tracehub/pmo/secret/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/security/AuthoritiesConverterTest.java b/src/test/java/git/tracehub/pmo/security/AuthoritiesConverterTest.java index af6f5f1..0f49a05 100644 --- a/src/test/java/git/tracehub/pmo/security/AuthoritiesConverterTest.java +++ b/src/test/java/git/tracehub/pmo/security/AuthoritiesConverterTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/security/ClaimOfTest.java b/src/test/java/git/tracehub/pmo/security/ClaimOfTest.java index f9ed311..529c794 100644 --- a/src/test/java/git/tracehub/pmo/security/ClaimOfTest.java +++ b/src/test/java/git/tracehub/pmo/security/ClaimOfTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/security/IdProviderTest.java b/src/test/java/git/tracehub/pmo/security/IdProviderTest.java index 3f9fb6e..9ef2450 100644 --- a/src/test/java/git/tracehub/pmo/security/IdProviderTest.java +++ b/src/test/java/git/tracehub/pmo/security/IdProviderTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/security/IpdTokenTest.java b/src/test/java/git/tracehub/pmo/security/IpdTokenTest.java index 7a86817..0d24ca1 100644 --- a/src/test/java/git/tracehub/pmo/security/IpdTokenTest.java +++ b/src/test/java/git/tracehub/pmo/security/IpdTokenTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/security/expression/Authentication.java b/src/test/java/git/tracehub/pmo/security/expression/Authentication.java index fb46864..443e68f 100644 --- a/src/test/java/git/tracehub/pmo/security/expression/Authentication.java +++ b/src/test/java/git/tracehub/pmo/security/expression/Authentication.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/security/expression/HasProjectTest.java b/src/test/java/git/tracehub/pmo/security/expression/HasProjectTest.java index 28c75a4..17140ec 100644 --- a/src/test/java/git/tracehub/pmo/security/expression/HasProjectTest.java +++ b/src/test/java/git/tracehub/pmo/security/expression/HasProjectTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/security/expression/package-info.java b/src/test/java/git/tracehub/pmo/security/expression/package-info.java index 761690a..a899d10 100644 --- a/src/test/java/git/tracehub/pmo/security/expression/package-info.java +++ b/src/test/java/git/tracehub/pmo/security/expression/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/security/package-info.java b/src/test/java/git/tracehub/pmo/security/package-info.java index 362dece..4749400 100644 --- a/src/test/java/git/tracehub/pmo/security/package-info.java +++ b/src/test/java/git/tracehub/pmo/security/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/ticket/DefaultTicketsTest.java b/src/test/java/git/tracehub/pmo/ticket/DefaultTicketsTest.java index c6d02f7..6efd87b 100644 --- a/src/test/java/git/tracehub/pmo/ticket/DefaultTicketsTest.java +++ b/src/test/java/git/tracehub/pmo/ticket/DefaultTicketsTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/ticket/MockTicket.java b/src/test/java/git/tracehub/pmo/ticket/MockTicket.java index f951a4a..e808017 100644 --- a/src/test/java/git/tracehub/pmo/ticket/MockTicket.java +++ b/src/test/java/git/tracehub/pmo/ticket/MockTicket.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/ticket/TicketOfTest.java b/src/test/java/git/tracehub/pmo/ticket/TicketOfTest.java index cadefa9..b6973e2 100644 --- a/src/test/java/git/tracehub/pmo/ticket/TicketOfTest.java +++ b/src/test/java/git/tracehub/pmo/ticket/TicketOfTest.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/git/tracehub/pmo/ticket/package-info.java b/src/test/java/git/tracehub/pmo/ticket/package-info.java index 04fe3cc..d89bc2e 100644 --- a/src/test/java/git/tracehub/pmo/ticket/package-info.java +++ b/src/test/java/git/tracehub/pmo/ticket/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/KeycloakIntegration.java b/src/test/java/it/KeycloakIntegration.java index 3d627e3..9ab2af9 100644 --- a/src/test/java/it/KeycloakIntegration.java +++ b/src/test/java/it/KeycloakIntegration.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/PostgresIntegration.java b/src/test/java/it/PostgresIntegration.java index adf9c8f..4e92e34 100644 --- a/src/test/java/it/PostgresIntegration.java +++ b/src/test/java/it/PostgresIntegration.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/database/DefaultKeysIT.java b/src/test/java/it/database/DefaultKeysIT.java index 4c50865..f4f2211 100644 --- a/src/test/java/it/database/DefaultKeysIT.java +++ b/src/test/java/it/database/DefaultKeysIT.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/database/DefaultProjectsIT.java b/src/test/java/it/database/DefaultProjectsIT.java index 9f18465..a682c53 100644 --- a/src/test/java/it/database/DefaultProjectsIT.java +++ b/src/test/java/it/database/DefaultProjectsIT.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/database/DefaultSecretsIT.java b/src/test/java/it/database/DefaultSecretsIT.java index 2170c7d..ba98188 100644 --- a/src/test/java/it/database/DefaultSecretsIT.java +++ b/src/test/java/it/database/DefaultSecretsIT.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/database/DefaultTicketsIT.java b/src/test/java/it/database/DefaultTicketsIT.java index 6edcce8..468e1bf 100644 --- a/src/test/java/it/database/DefaultTicketsIT.java +++ b/src/test/java/it/database/DefaultTicketsIT.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/database/package-info.java b/src/test/java/it/database/package-info.java index 8609cdd..7037ec2 100644 --- a/src/test/java/it/database/package-info.java +++ b/src/test/java/it/database/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/package-info.java b/src/test/java/it/package-info.java index 451becb..b87d6b6 100644 --- a/src/test/java/it/package-info.java +++ b/src/test/java/it/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/platforms/github/CreateLabelsIT.java b/src/test/java/it/platforms/github/CreateLabelsIT.java index d57ae9b..03810f9 100644 --- a/src/test/java/it/platforms/github/CreateLabelsIT.java +++ b/src/test/java/it/platforms/github/CreateLabelsIT.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/platforms/github/InviteCollaboratorIT.java b/src/test/java/it/platforms/github/InviteCollaboratorIT.java index 3e9e567..aa212c5 100644 --- a/src/test/java/it/platforms/github/InviteCollaboratorIT.java +++ b/src/test/java/it/platforms/github/InviteCollaboratorIT.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/platforms/github/package-info.java b/src/test/java/it/platforms/github/package-info.java index da64f72..a72d46c 100644 --- a/src/test/java/it/platforms/github/package-info.java +++ b/src/test/java/it/platforms/github/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/platforms/github/webhook/CreateWebhookIT.java b/src/test/java/it/platforms/github/webhook/CreateWebhookIT.java index dda2c6a..6cf4086 100644 --- a/src/test/java/it/platforms/github/webhook/CreateWebhookIT.java +++ b/src/test/java/it/platforms/github/webhook/CreateWebhookIT.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/platforms/github/webhook/ExistsWebhookIT.java b/src/test/java/it/platforms/github/webhook/ExistsWebhookIT.java index 8c18e86..700ab0b 100644 --- a/src/test/java/it/platforms/github/webhook/ExistsWebhookIT.java +++ b/src/test/java/it/platforms/github/webhook/ExistsWebhookIT.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/platforms/github/webhook/WebhooksIT.java b/src/test/java/it/platforms/github/webhook/WebhooksIT.java index bac3647..9884d1d 100644 --- a/src/test/java/it/platforms/github/webhook/WebhooksIT.java +++ b/src/test/java/it/platforms/github/webhook/WebhooksIT.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/platforms/github/webhook/package-info.java b/src/test/java/it/platforms/github/webhook/package-info.java index 48d6b29..15d5fd6 100644 --- a/src/test/java/it/platforms/github/webhook/package-info.java +++ b/src/test/java/it/platforms/github/webhook/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/web/CreateSecretITCase.java b/src/test/java/it/web/CreateSecretITCase.java index 72c08f7..ae2b702 100644 --- a/src/test/java/it/web/CreateSecretITCase.java +++ b/src/test/java/it/web/CreateSecretITCase.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/web/CreateTicketITCase.java b/src/test/java/it/web/CreateTicketITCase.java index c334b72..1bd05bf 100644 --- a/src/test/java/it/web/CreateTicketITCase.java +++ b/src/test/java/it/web/CreateTicketITCase.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/web/KeycloakToken.java b/src/test/java/it/web/KeycloakToken.java index e812534..e465abe 100644 --- a/src/test/java/it/web/KeycloakToken.java +++ b/src/test/java/it/web/KeycloakToken.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/web/RetrieveProjectByIdITCase.java b/src/test/java/it/web/RetrieveProjectByIdITCase.java index fa34fd4..9011c4b 100644 --- a/src/test/java/it/web/RetrieveProjectByIdITCase.java +++ b/src/test/java/it/web/RetrieveProjectByIdITCase.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/web/RetrieveProjectsByUserITCase.java b/src/test/java/it/web/RetrieveProjectsByUserITCase.java index 44db668..c52a143 100644 --- a/src/test/java/it/web/RetrieveProjectsByUserITCase.java +++ b/src/test/java/it/web/RetrieveProjectsByUserITCase.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/web/RetrieveSecretByKeyITCase.java b/src/test/java/it/web/RetrieveSecretByKeyITCase.java index 003100e..6c32f69 100644 --- a/src/test/java/it/web/RetrieveSecretByKeyITCase.java +++ b/src/test/java/it/web/RetrieveSecretByKeyITCase.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/web/RetrieveSecretsByProjectITCase.java b/src/test/java/it/web/RetrieveSecretsByProjectITCase.java index 6d99d73..5fa655e 100644 --- a/src/test/java/it/web/RetrieveSecretsByProjectITCase.java +++ b/src/test/java/it/web/RetrieveSecretsByProjectITCase.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/web/RetrieveTicketByJobITCase.java b/src/test/java/it/web/RetrieveTicketByJobITCase.java index 68993dc..abf6d1b 100644 --- a/src/test/java/it/web/RetrieveTicketByJobITCase.java +++ b/src/test/java/it/web/RetrieveTicketByJobITCase.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/web/RetrieveTicketByNumberITCase.java b/src/test/java/it/web/RetrieveTicketByNumberITCase.java index 61a52c4..12a2a32 100644 --- a/src/test/java/it/web/RetrieveTicketByNumberITCase.java +++ b/src/test/java/it/web/RetrieveTicketByNumberITCase.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/web/UpdateSecretITCase.java b/src/test/java/it/web/UpdateSecretITCase.java index 3f423b2..c12a617 100644 --- a/src/test/java/it/web/UpdateSecretITCase.java +++ b/src/test/java/it/web/UpdateSecretITCase.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/java/it/web/package-info.java b/src/test/java/it/web/package-info.java index 15c2aa6..7bad3ea 100644 --- a/src/test/java/it/web/package-info.java +++ b/src/test/java/it/web/package-info.java @@ -1,10 +1,17 @@ /* + * The MIT License (MIT) + * * Copyright (c) 2023-2024 Tracehub.git * * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to read - * the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, - * merge, publish, distribute, sublicense, and/or sell copies of the Software. + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, diff --git a/src/test/resources/pre/sql/projects.sql b/src/test/resources/pre/sql/projects.sql index 0f2adfb..ed956c9 100644 --- a/src/test/resources/pre/sql/projects.sql +++ b/src/test/resources/pre/sql/projects.sql @@ -1,3 +1,27 @@ +/* + * The MIT License (MIT) + * + * Copyright (c) 2023-2024 Tracehub.git + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included + * in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + INSERT INTO projects.project (id, name, location, @@ -31,7 +55,6 @@ VALUES ('04986038-6e38-4928-b12e-644c99f9cadc', 'OPENED') ON CONFLICT (id) DO NOTHING; --- value encrypted using algorithm PBEWithHMACSHA512AndAES_256 INSERT INTO projects.secret(project, key, value) From 387049bc2c4b37edd80239ba9a24b88c11bdf1d4 Mon Sep 17 00:00:00 2001 From: hizmailovich Date: Mon, 26 Feb 2024 19:05:55 +0300 Subject: [PATCH 2/2] Xcop fixed --- Dockerfile | 31 +++++++++++++++++++------------ checkstyle-suppressions.xml | 13 ++++++++++--- pom.xml | 13 ++++++++++--- 3 files changed, 39 insertions(+), 18 deletions(-) diff --git a/Dockerfile b/Dockerfile index f1db566..725ebe4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,17 +1,24 @@ -# Copyright (c) 2024 Tracehub +#The MIT License (MIT) # -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to read -# the Software only. Permissions is hereby NOT GRANTED to use, copy, modify, -# merge, publish, distribute, sublicense, and/or sell copies of the Software. +#Copyright (c) 2023-2024 Tracehub.git # -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -# SOFTWARE. +#Permission is hereby granted, free of charge, to any person obtaining a copy +#of this software and associated documentation files (the "Software"), to deal +#in the Software without restriction, including without limitation the rights +#to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +#copies of the Software, and to permit persons to whom the Software is +#furnished to do so, subject to the following conditions: +# +#The above copyright notice and this permission notice shall be included +#in all copies or substantial portions of the Software. +# +#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +#IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +#FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE +#AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +#LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +#OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +#SOFTWARE. FROM bellsoft/liberica-openjdk-alpine:17 as build WORKDIR application diff --git a/checkstyle-suppressions.xml b/checkstyle-suppressions.xml index 46915c5..d0e5f24 100644 --- a/checkstyle-suppressions.xml +++ b/checkstyle-suppressions.xml @@ -1,11 +1,18 @@