From b46b59e4a01751cacd2a5502fb7fdfad2ae1f38f Mon Sep 17 00:00:00 2001 From: Stefan Kalscheuer Date: Sun, 3 Jan 2021 11:56:33 +0100 Subject: [PATCH] update copyright notice to 2021 --- .../java/de/stklcode/jvault/connector/HTTPVaultConnector.java | 2 +- src/main/java/de/stklcode/jvault/connector/VaultConnector.java | 2 +- .../jvault/connector/builder/HTTPVaultConnectorBuilder.java | 2 +- .../jvault/connector/builder/VaultConnectorBuilder.java | 2 +- .../java/de/stklcode/jvault/connector/builder/package-info.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 +- .../jvault/connector/factory/HTTPVaultConnectorFactory.java | 2 +- .../jvault/connector/factory/VaultConnectorFactory.java | 2 +- .../java/de/stklcode/jvault/connector/factory/package-info.java | 2 +- src/main/java/de/stklcode/jvault/connector/internal/Error.java | 2 +- src/main/java/de/stklcode/jvault/connector/model/AppRole.java | 2 +- .../java/de/stklcode/jvault/connector/model/AppRoleBuilder.java | 2 +- .../java/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/TokenBuilder.java | 2 +- src/main/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 +- .../jvault/connector/model/response/AppRoleSecretResponse.java | 2 +- .../jvault/connector/model/response/AuthMethodsResponse.java | 2 +- .../stklcode/jvault/connector/model/response/AuthResponse.java | 2 +- .../jvault/connector/model/response/CredentialsResponse.java | 2 +- .../stklcode/jvault/connector/model/response/ErrorResponse.java | 2 +- .../jvault/connector/model/response/HealthResponse.java | 2 +- .../stklcode/jvault/connector/model/response/HelpResponse.java | 2 +- .../jvault/connector/model/response/MetadataResponse.java | 2 +- .../jvault/connector/model/response/RawDataResponse.java | 2 +- .../stklcode/jvault/connector/model/response/SealResponse.java | 2 +- .../jvault/connector/model/response/SecretListResponse.java | 2 +- .../jvault/connector/model/response/SecretResponse.java | 2 +- .../jvault/connector/model/response/SecretVersionResponse.java | 2 +- .../stklcode/jvault/connector/model/response/TokenResponse.java | 2 +- .../jvault/connector/model/response/TokenRoleResponse.java | 2 +- .../jvault/connector/model/response/VaultDataResponse.java | 2 +- .../stklcode/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/SecretMetadata.java | 2 +- .../jvault/connector/model/response/embedded/TokenData.java | 2 +- .../connector/model/response/embedded/VersionMetadata.java | 2 +- .../jvault/connector/model/response/embedded/package-info.java | 2 +- .../stklcode/jvault/connector/model/response/package-info.java | 2 +- src/main/java/de/stklcode/jvault/connector/package-info.java | 2 +- .../jvault/connector/HTTPVaultConnectorOfflineTest.java | 2 +- .../de/stklcode/jvault/connector/HTTPVaultConnectorTest.java | 2 +- .../jvault/connector/builder/HTTPVaultConnectorBuilderTest.java | 2 +- .../jvault/connector/exception/VaultConnectorExceptionTest.java | 2 +- .../jvault/connector/factory/HTTPVaultConnectorFactoryTest.java | 2 +- .../de/stklcode/jvault/connector/model/AppRoleBuilderTest.java | 2 +- .../de/stklcode/jvault/connector/model/AppRoleSecretTest.java | 2 +- .../de/stklcode/jvault/connector/model/AuthBackendTest.java | 2 +- .../de/stklcode/jvault/connector/model/TokenBuilderTest.java | 2 +- .../stklcode/jvault/connector/model/TokenRoleBuilderTest.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 +- .../jvault/connector/model/response/MetadataResponseTest.java | 2 +- .../jvault/connector/model/response/SealResponseTest.java | 2 +- .../jvault/connector/model/response/SecretListResponseTest.java | 2 +- .../jvault/connector/model/response/SecretResponseTest.java | 2 +- .../connector/model/response/SecretVersionResponseTest.java | 2 +- .../jvault/connector/model/response/TokenResponseTest.java | 2 +- .../java/de/stklcode/jvault/connector/test/Credentials.java | 2 +- .../java/de/stklcode/jvault/connector/test/EnvironmentMock.java | 2 +- .../de/stklcode/jvault/connector/test/VaultConfiguration.java | 2 +- 75 files changed, 75 insertions(+), 75 deletions(-) diff --git a/src/main/java/de/stklcode/jvault/connector/HTTPVaultConnector.java b/src/main/java/de/stklcode/jvault/connector/HTTPVaultConnector.java index dbe21b9..ef3f99e 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 ce5a1f6..d2f9c1b 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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/builder/HTTPVaultConnectorBuilder.java b/src/main/java/de/stklcode/jvault/connector/builder/HTTPVaultConnectorBuilder.java index 97e8597..bec6243 100644 --- a/src/main/java/de/stklcode/jvault/connector/builder/HTTPVaultConnectorBuilder.java +++ b/src/main/java/de/stklcode/jvault/connector/builder/HTTPVaultConnectorBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2020 Stefan Kalscheuer + * Copyright 2016-2021 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/builder/VaultConnectorBuilder.java b/src/main/java/de/stklcode/jvault/connector/builder/VaultConnectorBuilder.java index b6e344d..3ad809b 100644 --- a/src/main/java/de/stklcode/jvault/connector/builder/VaultConnectorBuilder.java +++ b/src/main/java/de/stklcode/jvault/connector/builder/VaultConnectorBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2020 Stefan Kalscheuer + * Copyright 2016-2021 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/builder/package-info.java b/src/main/java/de/stklcode/jvault/connector/builder/package-info.java index fd7ebac..c273c11 100644 --- a/src/main/java/de/stklcode/jvault/connector/builder/package-info.java +++ b/src/main/java/de/stklcode/jvault/connector/builder/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 c56063d..ff1c030 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 cb240e6..972a9e3 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 958bbe6..bf604a3 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 3931f69..290c805 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 a953271..7ec988f 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 e2c3517..5a4f351 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 418abda..2dae392 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 3131472..8980c9d 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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/factory/HTTPVaultConnectorFactory.java b/src/main/java/de/stklcode/jvault/connector/factory/HTTPVaultConnectorFactory.java index 4389916..0d22143 100644 --- a/src/main/java/de/stklcode/jvault/connector/factory/HTTPVaultConnectorFactory.java +++ b/src/main/java/de/stklcode/jvault/connector/factory/HTTPVaultConnectorFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2020 Stefan Kalscheuer + * Copyright 2016-2021 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/factory/VaultConnectorFactory.java b/src/main/java/de/stklcode/jvault/connector/factory/VaultConnectorFactory.java index 1f3c2be..c94021a 100644 --- a/src/main/java/de/stklcode/jvault/connector/factory/VaultConnectorFactory.java +++ b/src/main/java/de/stklcode/jvault/connector/factory/VaultConnectorFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2020 Stefan Kalscheuer + * Copyright 2016-2021 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/factory/package-info.java b/src/main/java/de/stklcode/jvault/connector/factory/package-info.java index 1774531..3cef0ec 100644 --- a/src/main/java/de/stklcode/jvault/connector/factory/package-info.java +++ b/src/main/java/de/stklcode/jvault/connector/factory/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 f72ab65..0c11da8 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 db1b249..3af63a2 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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/AppRoleBuilder.java b/src/main/java/de/stklcode/jvault/connector/model/AppRoleBuilder.java index 7267127..cb14478 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/AppRoleBuilder.java +++ b/src/main/java/de/stklcode/jvault/connector/model/AppRoleBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 8fa51f5..89309c9 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 6c2d3ea..12b99ef 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 73bc25f..9844583 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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/TokenBuilder.java b/src/main/java/de/stklcode/jvault/connector/model/TokenBuilder.java index 589a2d5..987d557 100644 --- a/src/main/java/de/stklcode/jvault/connector/model/TokenBuilder.java +++ b/src/main/java/de/stklcode/jvault/connector/model/TokenBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 d32d087..ccab84a 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 dce8c1b..3918a87 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 f3c19d5..9d148e1 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 35eb3b0..9b22d0d 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 58ebf36..64fffd4 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 d5b35ca..4759b37 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 d524339..34bf8d9 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 a1a04ef..730e3a1 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 940ac5b..72429ff 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 f2dbfa5..2e4f88c 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 89de0da..53601b2 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 d959c96..17f3f40 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 4ce5e39..39bf708 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 35699a3..6725121 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 b670a5b..eb0e2e0 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 2abd162..1c08cb4 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 cabea7c..b19a1ad 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 68c11cd..0ef3efa 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 d0b5595..c3e6f31 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 bc82e40..8aeb272 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 d5ed06c..1b2013c 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 88b5b59..bf548d9 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 a248d77..1356b4f 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 5e0f461..13dfa31 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 7f06d54..ce9b0bd 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 7d24785..ead3f79 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 65ddb0a..119b5b8 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 8e67bbd..ab34615 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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/HTTPVaultConnectorOfflineTest.java b/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorOfflineTest.java index db06169..8c930b5 100644 --- a/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorOfflineTest.java +++ b/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorOfflineTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 f2ed22b..214db72 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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/builder/HTTPVaultConnectorBuilderTest.java b/src/test/java/de/stklcode/jvault/connector/builder/HTTPVaultConnectorBuilderTest.java index 6a089b9..0becec9 100644 --- a/src/test/java/de/stklcode/jvault/connector/builder/HTTPVaultConnectorBuilderTest.java +++ b/src/test/java/de/stklcode/jvault/connector/builder/HTTPVaultConnectorBuilderTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 6c15b4f..74e1a26 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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/factory/HTTPVaultConnectorFactoryTest.java b/src/test/java/de/stklcode/jvault/connector/factory/HTTPVaultConnectorFactoryTest.java index 4435d2f..5cdbfc3 100644 --- a/src/test/java/de/stklcode/jvault/connector/factory/HTTPVaultConnectorFactoryTest.java +++ b/src/test/java/de/stklcode/jvault/connector/factory/HTTPVaultConnectorFactoryTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2020 Stefan Kalscheuer + * Copyright 2016-2021 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/AppRoleBuilderTest.java b/src/test/java/de/stklcode/jvault/connector/model/AppRoleBuilderTest.java index 2a98f7f..7dec796 100644 --- a/src/test/java/de/stklcode/jvault/connector/model/AppRoleBuilderTest.java +++ b/src/test/java/de/stklcode/jvault/connector/model/AppRoleBuilderTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 27a4792..dbe13f8 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 a9b2ebb..fbd3019 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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/TokenBuilderTest.java b/src/test/java/de/stklcode/jvault/connector/model/TokenBuilderTest.java index 424558d..ae649e9 100644 --- a/src/test/java/de/stklcode/jvault/connector/model/TokenBuilderTest.java +++ b/src/test/java/de/stklcode/jvault/connector/model/TokenBuilderTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2020 Stefan Kalscheuer + * Copyright 2016-2021 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/TokenRoleBuilderTest.java b/src/test/java/de/stklcode/jvault/connector/model/TokenRoleBuilderTest.java index e1b2bc7..3546a29 100644 --- a/src/test/java/de/stklcode/jvault/connector/model/TokenRoleBuilderTest.java +++ b/src/test/java/de/stklcode/jvault/connector/model/TokenRoleBuilderTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 e428f2b..8b848be 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 a94d4f8..7302551 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 933aa6d..a042740 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 331d04a..8c61e40 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 f5b90f7..bc54140 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 a37f675..b7dfed2 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 e4eddd3..1e1320f 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 e282aa6..e400b74 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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/SecretResponseTest.java b/src/test/java/de/stklcode/jvault/connector/model/response/SecretResponseTest.java index 6998cbb..ae2eb6b 100644 --- a/src/test/java/de/stklcode/jvault/connector/model/response/SecretResponseTest.java +++ b/src/test/java/de/stklcode/jvault/connector/model/response/SecretResponseTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 ca76d7d..0a39504 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 e069500..d1c25bd 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 9efd44d..683fb33 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 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/EnvironmentMock.java b/src/test/java/de/stklcode/jvault/connector/test/EnvironmentMock.java index a8b24ad..0fb6552 100644 --- a/src/test/java/de/stklcode/jvault/connector/test/EnvironmentMock.java +++ b/src/test/java/de/stklcode/jvault/connector/test/EnvironmentMock.java @@ -1,5 +1,5 @@ /* - * Copyright 2016-2020 Stefan Kalscheuer + * Copyright 2016-2021 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 d95d0a0..4f58977 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-2020 Stefan Kalscheuer + * Copyright 2016-2021 Stefan Kalscheuer * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.