From 4258489dbae64945aa8d6025aaa83a726dcffa90 Mon Sep 17 00:00:00 2001 From: Stefan Kalscheuer Date: Sat, 27 Apr 2024 17:09:40 +0200 Subject: [PATCH] update copyright notice to 2024 --- .../java/de/stklcode/jvault/connector/HTTPVaultConnector.java | 2 +- .../stklcode/jvault/connector/HTTPVaultConnectorBuilder.java | 2 +- .../java/de/stklcode/jvault/connector/VaultConnector.java | 2 +- .../connector/exception/AuthorizationRequiredException.java | 2 +- .../jvault/connector/exception/ConnectionException.java | 2 +- .../jvault/connector/exception/InvalidRequestException.java | 2 +- .../jvault/connector/exception/InvalidResponseException.java | 2 +- .../jvault/connector/exception/PermissionDeniedException.java | 2 +- .../de/stklcode/jvault/connector/exception/TlsException.java | 2 +- .../jvault/connector/exception/VaultConnectorException.java | 2 +- .../de/stklcode/jvault/connector/exception/package-info.java | 2 +- .../java/de/stklcode/jvault/connector/internal/Error.java | 2 +- src/main/java/de/stklcode/jvault/connector/model/AppRole.java | 2 +- .../de/stklcode/jvault/connector/model/AppRoleSecret.java | 2 +- .../java/de/stklcode/jvault/connector/model/AuthBackend.java | 2 +- src/main/java/de/stklcode/jvault/connector/model/Token.java | 2 +- .../java/de/stklcode/jvault/connector/model/TokenRole.java | 2 +- .../java/de/stklcode/jvault/connector/model/package-info.java | 2 +- .../jvault/connector/model/response/AppRoleResponse.java | 2 +- .../connector/model/response/AppRoleSecretResponse.java | 2 +- .../jvault/connector/model/response/AuthMethodsResponse.java | 2 +- .../jvault/connector/model/response/AuthResponse.java | 2 +- .../jvault/connector/model/response/CredentialsResponse.java | 2 +- .../jvault/connector/model/response/ErrorResponse.java | 2 +- .../jvault/connector/model/response/HealthResponse.java | 2 +- .../jvault/connector/model/response/HelpResponse.java | 2 +- .../jvault/connector/model/response/MetadataResponse.java | 2 +- .../jvault/connector/model/response/RawDataResponse.java | 2 +- .../jvault/connector/model/response/SealResponse.java | 2 +- .../jvault/connector/model/response/SecretListResponse.java | 2 +- .../jvault/connector/model/response/SecretResponse.java | 2 +- .../connector/model/response/SecretVersionResponse.java | 2 +- .../jvault/connector/model/response/TokenResponse.java | 2 +- .../jvault/connector/model/response/TokenRoleResponse.java | 2 +- .../jvault/connector/model/response/VaultDataResponse.java | 2 +- .../jvault/connector/model/response/VaultResponse.java | 2 +- .../jvault/connector/model/response/embedded/AuthData.java | 2 +- .../jvault/connector/model/response/embedded/AuthMethod.java | 2 +- .../connector/model/response/embedded/MfaConstraintAny.java | 2 +- .../jvault/connector/model/response/embedded/MfaMethodId.java | 2 +- .../connector/model/response/embedded/MfaRequirement.java | 2 +- .../connector/model/response/embedded/SecretMetadata.java | 2 +- .../jvault/connector/model/response/embedded/TokenData.java | 2 +- .../connector/model/response/embedded/VersionMetadata.java | 2 +- .../jvault/connector/model/response/embedded/WrapInfo.java | 2 +- .../connector/model/response/embedded/package-info.java | 2 +- .../jvault/connector/model/response/package-info.java | 2 +- src/main/java/de/stklcode/jvault/connector/package-info.java | 2 +- src/main/java/module-info.java | 2 +- .../jvault/connector/HTTPVaultConnectorBuilderTest.java | 2 +- .../de/stklcode/jvault/connector/HTTPVaultConnectorIT.java | 2 +- .../de/stklcode/jvault/connector/HTTPVaultConnectorTest.java | 2 +- .../connector/exception/VaultConnectorExceptionTest.java | 2 +- .../de/stklcode/jvault/connector/model/AppRoleSecretTest.java | 2 +- .../java/de/stklcode/jvault/connector/model/AppRoleTest.java | 2 +- .../de/stklcode/jvault/connector/model/AuthBackendTest.java | 2 +- .../de/stklcode/jvault/connector/model/TokenRoleTest.java | 2 +- .../java/de/stklcode/jvault/connector/model/TokenTest.java | 2 +- .../jvault/connector/model/response/AppRoleResponseTest.java | 2 +- .../connector/model/response/AuthMethodsResponseTest.java | 2 +- .../jvault/connector/model/response/AuthResponseTest.java | 2 +- .../connector/model/response/CredentialsResponseTest.java | 2 +- .../jvault/connector/model/response/HealthResponseTest.java | 2 +- .../connector/model/response/MetaSecretResponseTest.java | 2 +- .../jvault/connector/model/response/MetadataResponseTest.java | 2 +- .../jvault/connector/model/response/SealResponseTest.java | 2 +- .../connector/model/response/SecretListResponseTest.java | 2 +- .../connector/model/response/SecretVersionResponseTest.java | 2 +- .../jvault/connector/model/response/TokenResponseTest.java | 2 +- .../java/de/stklcode/jvault/connector/test/Credentials.java | 2 +- .../de/stklcode/jvault/connector/test/VaultConfiguration.java | 4 ++-- 71 files changed, 72 insertions(+), 72 deletions(-) diff --git a/src/main/java/de/stklcode/jvault/connector/HTTPVaultConnector.java b/src/main/java/de/stklcode/jvault/connector/HTTPVaultConnector.java index 0b88117..ed36a90 100644 --- a/src/main/java/de/stklcode/jvault/connector/HTTPVaultConnector.java +++ b/src/main/java/de/stklcode/jvault/connector/HTTPVaultConnector.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/HTTPVaultConnectorBuilder.java b/src/main/java/de/stklcode/jvault/connector/HTTPVaultConnectorBuilder.java index f9f7785..c8d320e 100644 --- a/src/main/java/de/stklcode/jvault/connector/HTTPVaultConnectorBuilder.java +++ b/src/main/java/de/stklcode/jvault/connector/HTTPVaultConnectorBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/VaultConnector.java b/src/main/java/de/stklcode/jvault/connector/VaultConnector.java index d3f89e1..816ff34 100644 --- a/src/main/java/de/stklcode/jvault/connector/VaultConnector.java +++ b/src/main/java/de/stklcode/jvault/connector/VaultConnector.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/exception/AuthorizationRequiredException.java b/src/main/java/de/stklcode/jvault/connector/exception/AuthorizationRequiredException.java index 0f5b714..4e7b94f 100644 --- a/src/main/java/de/stklcode/jvault/connector/exception/AuthorizationRequiredException.java +++ b/src/main/java/de/stklcode/jvault/connector/exception/AuthorizationRequiredException.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/exception/ConnectionException.java b/src/main/java/de/stklcode/jvault/connector/exception/ConnectionException.java index af999d3..32a5297 100644 --- a/src/main/java/de/stklcode/jvault/connector/exception/ConnectionException.java +++ b/src/main/java/de/stklcode/jvault/connector/exception/ConnectionException.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/exception/InvalidRequestException.java b/src/main/java/de/stklcode/jvault/connector/exception/InvalidRequestException.java index c37050b..a520ea7 100644 --- a/src/main/java/de/stklcode/jvault/connector/exception/InvalidRequestException.java +++ b/src/main/java/de/stklcode/jvault/connector/exception/InvalidRequestException.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/exception/InvalidResponseException.java b/src/main/java/de/stklcode/jvault/connector/exception/InvalidResponseException.java index 92d9eb8..973261f 100644 --- a/src/main/java/de/stklcode/jvault/connector/exception/InvalidResponseException.java +++ b/src/main/java/de/stklcode/jvault/connector/exception/InvalidResponseException.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/exception/PermissionDeniedException.java b/src/main/java/de/stklcode/jvault/connector/exception/PermissionDeniedException.java index cb5e564..600784e 100644 --- a/src/main/java/de/stklcode/jvault/connector/exception/PermissionDeniedException.java +++ b/src/main/java/de/stklcode/jvault/connector/exception/PermissionDeniedException.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/exception/TlsException.java b/src/main/java/de/stklcode/jvault/connector/exception/TlsException.java index 9e9dc71..cd2125d 100644 --- a/src/main/java/de/stklcode/jvault/connector/exception/TlsException.java +++ b/src/main/java/de/stklcode/jvault/connector/exception/TlsException.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/exception/VaultConnectorException.java b/src/main/java/de/stklcode/jvault/connector/exception/VaultConnectorException.java index 9fe4dde..1a6115e 100644 --- a/src/main/java/de/stklcode/jvault/connector/exception/VaultConnectorException.java +++ b/src/main/java/de/stklcode/jvault/connector/exception/VaultConnectorException.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/exception/package-info.java b/src/main/java/de/stklcode/jvault/connector/exception/package-info.java index 8599450..30edbce 100644 --- a/src/main/java/de/stklcode/jvault/connector/exception/package-info.java +++ b/src/main/java/de/stklcode/jvault/connector/exception/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/internal/Error.java b/src/main/java/de/stklcode/jvault/connector/internal/Error.java index 5fb13a7..cba6380 100644 --- a/src/main/java/de/stklcode/jvault/connector/internal/Error.java +++ b/src/main/java/de/stklcode/jvault/connector/internal/Error.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/AppRole.java b/src/main/java/de/stklcode/jvault/connector/model/AppRole.java index c643ba9..378f624 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/AppRole.java +++ b/src/main/java/de/stklcode/jvault/connector/model/AppRole.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/AppRoleSecret.java b/src/main/java/de/stklcode/jvault/connector/model/AppRoleSecret.java index d76c473..55d9b9b 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/AppRoleSecret.java +++ b/src/main/java/de/stklcode/jvault/connector/model/AppRoleSecret.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/AuthBackend.java b/src/main/java/de/stklcode/jvault/connector/model/AuthBackend.java index 487576e..173298b 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/AuthBackend.java +++ b/src/main/java/de/stklcode/jvault/connector/model/AuthBackend.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/Token.java b/src/main/java/de/stklcode/jvault/connector/model/Token.java index 3193f22..43e74c9 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/Token.java +++ b/src/main/java/de/stklcode/jvault/connector/model/Token.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/TokenRole.java b/src/main/java/de/stklcode/jvault/connector/model/TokenRole.java index 574bae1..a6311e8 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/TokenRole.java +++ b/src/main/java/de/stklcode/jvault/connector/model/TokenRole.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/package-info.java b/src/main/java/de/stklcode/jvault/connector/model/package-info.java index 1ee0266..96bde30 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/package-info.java +++ b/src/main/java/de/stklcode/jvault/connector/model/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/AppRoleResponse.java b/src/main/java/de/stklcode/jvault/connector/model/response/AppRoleResponse.java index fcdcb75..87c7ef2 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/AppRoleResponse.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/AppRoleResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/AppRoleSecretResponse.java b/src/main/java/de/stklcode/jvault/connector/model/response/AppRoleSecretResponse.java index 0014639..905dad8 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/AppRoleSecretResponse.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/AppRoleSecretResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/AuthMethodsResponse.java b/src/main/java/de/stklcode/jvault/connector/model/response/AuthMethodsResponse.java index 3197d4b..99c21c1 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/AuthMethodsResponse.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/AuthMethodsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/AuthResponse.java b/src/main/java/de/stklcode/jvault/connector/model/response/AuthResponse.java index ac81915..faedbd7 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/AuthResponse.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/AuthResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/CredentialsResponse.java b/src/main/java/de/stklcode/jvault/connector/model/response/CredentialsResponse.java index f178f9a..f64540b 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/CredentialsResponse.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/CredentialsResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/ErrorResponse.java b/src/main/java/de/stklcode/jvault/connector/model/response/ErrorResponse.java index 6495097..d872ae7 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/ErrorResponse.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/ErrorResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/HealthResponse.java b/src/main/java/de/stklcode/jvault/connector/model/response/HealthResponse.java index 104e99d..e6e3f29 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/HealthResponse.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/HealthResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/HelpResponse.java b/src/main/java/de/stklcode/jvault/connector/model/response/HelpResponse.java index f0e75ce..f16aeca 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/HelpResponse.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/HelpResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/MetadataResponse.java b/src/main/java/de/stklcode/jvault/connector/model/response/MetadataResponse.java index b1e492b..2113d62 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/MetadataResponse.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/MetadataResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/RawDataResponse.java b/src/main/java/de/stklcode/jvault/connector/model/response/RawDataResponse.java index 2a37b2e..034c73e 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/RawDataResponse.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/RawDataResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/SealResponse.java b/src/main/java/de/stklcode/jvault/connector/model/response/SealResponse.java index dc94677..164578a 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/SealResponse.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/SealResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/SecretListResponse.java b/src/main/java/de/stklcode/jvault/connector/model/response/SecretListResponse.java index 59bb4aa..861b922 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/SecretListResponse.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/SecretListResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/SecretResponse.java b/src/main/java/de/stklcode/jvault/connector/model/response/SecretResponse.java index b256371..15e51a8 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/SecretResponse.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/SecretResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/SecretVersionResponse.java b/src/main/java/de/stklcode/jvault/connector/model/response/SecretVersionResponse.java index 3fccf60..9946aaa 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/SecretVersionResponse.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/SecretVersionResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/TokenResponse.java b/src/main/java/de/stklcode/jvault/connector/model/response/TokenResponse.java index 6bf8390..d020892 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/TokenResponse.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/TokenResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/TokenRoleResponse.java b/src/main/java/de/stklcode/jvault/connector/model/response/TokenRoleResponse.java index 6610515..21681f7 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/TokenRoleResponse.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/TokenRoleResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/VaultDataResponse.java b/src/main/java/de/stklcode/jvault/connector/model/response/VaultDataResponse.java index f6119cd..bad9a8f 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/VaultDataResponse.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/VaultDataResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/VaultResponse.java b/src/main/java/de/stklcode/jvault/connector/model/response/VaultResponse.java index 8623299..74a5364 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/VaultResponse.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/VaultResponse.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/embedded/AuthData.java b/src/main/java/de/stklcode/jvault/connector/model/response/embedded/AuthData.java index 6451cc9..95bc240 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/embedded/AuthData.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/embedded/AuthData.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/embedded/AuthMethod.java b/src/main/java/de/stklcode/jvault/connector/model/response/embedded/AuthMethod.java index 3155b4a..1af6c1c 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/embedded/AuthMethod.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/embedded/AuthMethod.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/embedded/MfaConstraintAny.java b/src/main/java/de/stklcode/jvault/connector/model/response/embedded/MfaConstraintAny.java index 9583cec..3afdf03 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/embedded/MfaConstraintAny.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/embedded/MfaConstraintAny.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/embedded/MfaMethodId.java b/src/main/java/de/stklcode/jvault/connector/model/response/embedded/MfaMethodId.java index 0128a68..ef0333f 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/embedded/MfaMethodId.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/embedded/MfaMethodId.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/embedded/MfaRequirement.java b/src/main/java/de/stklcode/jvault/connector/model/response/embedded/MfaRequirement.java index c05ec6d..5df500a 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/embedded/MfaRequirement.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/embedded/MfaRequirement.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/embedded/SecretMetadata.java b/src/main/java/de/stklcode/jvault/connector/model/response/embedded/SecretMetadata.java index 503aaad..99a1ee2 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/embedded/SecretMetadata.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/embedded/SecretMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/embedded/TokenData.java b/src/main/java/de/stklcode/jvault/connector/model/response/embedded/TokenData.java index a7d5fda..b522f6b 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/embedded/TokenData.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/embedded/TokenData.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/embedded/VersionMetadata.java b/src/main/java/de/stklcode/jvault/connector/model/response/embedded/VersionMetadata.java index 5f1d3d1..49aa0c2 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/embedded/VersionMetadata.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/embedded/VersionMetadata.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/embedded/WrapInfo.java b/src/main/java/de/stklcode/jvault/connector/model/response/embedded/WrapInfo.java index 64ebeb5..1669aed 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/embedded/WrapInfo.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/embedded/WrapInfo.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/embedded/package-info.java b/src/main/java/de/stklcode/jvault/connector/model/response/embedded/package-info.java index 5a3e23e..d787fac 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/embedded/package-info.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/embedded/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/model/response/package-info.java b/src/main/java/de/stklcode/jvault/connector/model/response/package-info.java index 6c6282c..5ad4627 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/response/package-info.java +++ b/src/main/java/de/stklcode/jvault/connector/model/response/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/de/stklcode/jvault/connector/package-info.java b/src/main/java/de/stklcode/jvault/connector/package-info.java index 2cc91ef..faf0650 100644 --- a/src/main/java/de/stklcode/jvault/connector/package-info.java +++ b/src/main/java/de/stklcode/jvault/connector/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/main/java/module-info.java b/src/main/java/module-info.java index 63512cb..65488f0 100644 --- a/src/main/java/module-info.java +++ b/src/main/java/module-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorBuilderTest.java b/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorBuilderTest.java index 9135787..98e8d7e 100644 --- a/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorBuilderTest.java +++ b/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorBuilderTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorIT.java b/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorIT.java index fe4461e..aa340db 100644 --- a/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorIT.java +++ b/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorIT.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorTest.java b/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorTest.java index a86f998..b2e5aba 100644 --- a/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorTest.java +++ b/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/stklcode/jvault/connector/exception/VaultConnectorExceptionTest.java b/src/test/java/de/stklcode/jvault/connector/exception/VaultConnectorExceptionTest.java index f0dd89b..9923f67 100644 --- a/src/test/java/de/stklcode/jvault/connector/exception/VaultConnectorExceptionTest.java +++ b/src/test/java/de/stklcode/jvault/connector/exception/VaultConnectorExceptionTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/stklcode/jvault/connector/model/AppRoleSecretTest.java b/src/test/java/de/stklcode/jvault/connector/model/AppRoleSecretTest.java index 563208a..994f196 100644 --- a/src/test/java/de/stklcode/jvault/connector/model/AppRoleSecretTest.java +++ b/src/test/java/de/stklcode/jvault/connector/model/AppRoleSecretTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/stklcode/jvault/connector/model/AppRoleTest.java b/src/test/java/de/stklcode/jvault/connector/model/AppRoleTest.java index e55bd7e..8922f83 100644 --- a/src/test/java/de/stklcode/jvault/connector/model/AppRoleTest.java +++ b/src/test/java/de/stklcode/jvault/connector/model/AppRoleTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/stklcode/jvault/connector/model/AuthBackendTest.java b/src/test/java/de/stklcode/jvault/connector/model/AuthBackendTest.java index 1c9d854..0c3469e 100644 --- a/src/test/java/de/stklcode/jvault/connector/model/AuthBackendTest.java +++ b/src/test/java/de/stklcode/jvault/connector/model/AuthBackendTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/stklcode/jvault/connector/model/TokenRoleTest.java b/src/test/java/de/stklcode/jvault/connector/model/TokenRoleTest.java index 7e96531..cf7b049 100644 --- a/src/test/java/de/stklcode/jvault/connector/model/TokenRoleTest.java +++ b/src/test/java/de/stklcode/jvault/connector/model/TokenRoleTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/stklcode/jvault/connector/model/TokenTest.java b/src/test/java/de/stklcode/jvault/connector/model/TokenTest.java index 82026e2..589ec80 100644 --- a/src/test/java/de/stklcode/jvault/connector/model/TokenTest.java +++ b/src/test/java/de/stklcode/jvault/connector/model/TokenTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/stklcode/jvault/connector/model/response/AppRoleResponseTest.java b/src/test/java/de/stklcode/jvault/connector/model/response/AppRoleResponseTest.java index 6d78fb9..b574580 100644 --- a/src/test/java/de/stklcode/jvault/connector/model/response/AppRoleResponseTest.java +++ b/src/test/java/de/stklcode/jvault/connector/model/response/AppRoleResponseTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/stklcode/jvault/connector/model/response/AuthMethodsResponseTest.java b/src/test/java/de/stklcode/jvault/connector/model/response/AuthMethodsResponseTest.java index 890b9c2..b6c4ad6 100644 --- a/src/test/java/de/stklcode/jvault/connector/model/response/AuthMethodsResponseTest.java +++ b/src/test/java/de/stklcode/jvault/connector/model/response/AuthMethodsResponseTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/stklcode/jvault/connector/model/response/AuthResponseTest.java b/src/test/java/de/stklcode/jvault/connector/model/response/AuthResponseTest.java index 07bf7cc..51e30db 100644 --- a/src/test/java/de/stklcode/jvault/connector/model/response/AuthResponseTest.java +++ b/src/test/java/de/stklcode/jvault/connector/model/response/AuthResponseTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/stklcode/jvault/connector/model/response/CredentialsResponseTest.java b/src/test/java/de/stklcode/jvault/connector/model/response/CredentialsResponseTest.java index d7441b1..2da6c02 100644 --- a/src/test/java/de/stklcode/jvault/connector/model/response/CredentialsResponseTest.java +++ b/src/test/java/de/stklcode/jvault/connector/model/response/CredentialsResponseTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/stklcode/jvault/connector/model/response/HealthResponseTest.java b/src/test/java/de/stklcode/jvault/connector/model/response/HealthResponseTest.java index bdf55e2..c0e5b58 100644 --- a/src/test/java/de/stklcode/jvault/connector/model/response/HealthResponseTest.java +++ b/src/test/java/de/stklcode/jvault/connector/model/response/HealthResponseTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/stklcode/jvault/connector/model/response/MetaSecretResponseTest.java b/src/test/java/de/stklcode/jvault/connector/model/response/MetaSecretResponseTest.java index 42ffffc..b3e8194 100644 --- a/src/test/java/de/stklcode/jvault/connector/model/response/MetaSecretResponseTest.java +++ b/src/test/java/de/stklcode/jvault/connector/model/response/MetaSecretResponseTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/stklcode/jvault/connector/model/response/MetadataResponseTest.java b/src/test/java/de/stklcode/jvault/connector/model/response/MetadataResponseTest.java index 4a09bab..932ac0d 100644 --- a/src/test/java/de/stklcode/jvault/connector/model/response/MetadataResponseTest.java +++ b/src/test/java/de/stklcode/jvault/connector/model/response/MetadataResponseTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/stklcode/jvault/connector/model/response/SealResponseTest.java b/src/test/java/de/stklcode/jvault/connector/model/response/SealResponseTest.java index 469efc4..9d75925 100644 --- a/src/test/java/de/stklcode/jvault/connector/model/response/SealResponseTest.java +++ b/src/test/java/de/stklcode/jvault/connector/model/response/SealResponseTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/stklcode/jvault/connector/model/response/SecretListResponseTest.java b/src/test/java/de/stklcode/jvault/connector/model/response/SecretListResponseTest.java index 597acb5..7f66005 100644 --- a/src/test/java/de/stklcode/jvault/connector/model/response/SecretListResponseTest.java +++ b/src/test/java/de/stklcode/jvault/connector/model/response/SecretListResponseTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/stklcode/jvault/connector/model/response/SecretVersionResponseTest.java b/src/test/java/de/stklcode/jvault/connector/model/response/SecretVersionResponseTest.java index 3c5377a..9835edf 100644 --- a/src/test/java/de/stklcode/jvault/connector/model/response/SecretVersionResponseTest.java +++ b/src/test/java/de/stklcode/jvault/connector/model/response/SecretVersionResponseTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/stklcode/jvault/connector/model/response/TokenResponseTest.java b/src/test/java/de/stklcode/jvault/connector/model/response/TokenResponseTest.java index 0535f5a..32eede6 100644 --- a/src/test/java/de/stklcode/jvault/connector/model/response/TokenResponseTest.java +++ b/src/test/java/de/stklcode/jvault/connector/model/response/TokenResponseTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/stklcode/jvault/connector/test/Credentials.java b/src/test/java/de/stklcode/jvault/connector/test/Credentials.java index 64b04e4..8ebe96e 100644 --- a/src/test/java/de/stklcode/jvault/connector/test/Credentials.java +++ b/src/test/java/de/stklcode/jvault/connector/test/Credentials.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src/test/java/de/stklcode/jvault/connector/test/VaultConfiguration.java b/src/test/java/de/stklcode/jvault/connector/test/VaultConfiguration.java index d77f83e..eac3270 100644 --- a/src/test/java/de/stklcode/jvault/connector/test/VaultConfiguration.java +++ b/src/test/java/de/stklcode/jvault/connector/test/VaultConfiguration.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2023 Stefan Kalscheuer + * Copyright 2016-2024 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -103,4 +103,4 @@ public class VaultConfiguration { "}\n" + ((disableMlock) ? "disable_mlock = true" : ""); } -} \ No newline at end of file +}