From c4811d11950e881e37c7e7986c570d2ec4b045f5 Mon Sep 17 00:00:00 2001 From: David Walluck Date: Wed, 26 Aug 2026 11:54:47 -0400 Subject: [PATCH] Fix license headers --- .../main/java/org/commonjava/test/http/common/CommonMethod.java | 2 +- .../java/org/commonjava/test/http/common/HttpServerFixture.java | 2 +- .../java/org/commonjava/test/http/expect/ContentResponse.java | 2 +- .../org/commonjava/test/http/expect/ExpectationHandler.java | 2 +- .../java/org/commonjava/test/http/expect/ExpectationServer.java | 2 +- .../org/commonjava/test/http/expect/ExpectationServlet.java | 2 +- .../main/java/org/commonjava/test/http/stream/FileResolver.java | 2 +- .../java/org/commonjava/test/http/stream/JarFileResolver.java | 2 +- .../java/org/commonjava/test/http/stream/StreamResolver.java | 2 +- .../main/java/org/commonjava/test/http/stream/StreamServer.java | 2 +- .../java/org/commonjava/test/http/stream/StreamServlet.java | 2 +- .../src/main/java/org/commonjava/test/http/util/PortFinder.java | 2 +- .../main/java/org/commonjava/test/http/util/StreamUtils.java | 2 +- core/src/main/java/org/commonjava/test/http/util/UrlUtils.java | 2 +- .../test/http/junit4/expect/ExpectationServerWrapper.java | 2 +- .../commonjava/test/http/junit4/stream/StreamServerWrapper.java | 2 +- .../java/org/commonjava/test/http/junt4/TestHttpServerTest.java | 2 +- .../org/commonjava/test/http/junit5/annotations/Expected.java | 2 +- .../test/http/junit5/expect/ExpectationServerExtension.java | 2 +- .../test/http/junit5/stream/StreamServerExtension.java | 2 +- .../org/commonjava/test/http/junit5/AbstractExtensionTest.java | 2 +- .../test/http/junit5/TestHttpServerExtendWithTest.java | 2 +- .../commonjava/test/http/junit5/TestHttpServerRegisterTest.java | 2 +- .../java/org/commonjava/test/http/quarkus/InjectExpected.java | 2 +- .../java/org/commonjava/test/http/quarkus/InjectStream.java | 2 +- .../test/http/quarkus/internal/ExpectationServerCallBack.java | 2 +- .../test/http/quarkus/internal/StreamServerCallBack.java | 2 +- .../commonjava/test/http/quarkus/TestHttpServerWithQuarkus.java | 2 +- 28 files changed, 28 insertions(+), 28 deletions(-) diff --git a/core/src/main/java/org/commonjava/test/http/common/CommonMethod.java b/core/src/main/java/org/commonjava/test/http/common/CommonMethod.java index 2886504..3b53bb0 100644 --- a/core/src/main/java/org/commonjava/test/http/common/CommonMethod.java +++ b/core/src/main/java/org/commonjava/test/http/common/CommonMethod.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/core/src/main/java/org/commonjava/test/http/common/HttpServerFixture.java b/core/src/main/java/org/commonjava/test/http/common/HttpServerFixture.java index 36cfaff..0b81813 100644 --- a/core/src/main/java/org/commonjava/test/http/common/HttpServerFixture.java +++ b/core/src/main/java/org/commonjava/test/http/common/HttpServerFixture.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/core/src/main/java/org/commonjava/test/http/expect/ContentResponse.java b/core/src/main/java/org/commonjava/test/http/expect/ContentResponse.java index 6d9108e..f544cda 100644 --- a/core/src/main/java/org/commonjava/test/http/expect/ContentResponse.java +++ b/core/src/main/java/org/commonjava/test/http/expect/ContentResponse.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/core/src/main/java/org/commonjava/test/http/expect/ExpectationHandler.java b/core/src/main/java/org/commonjava/test/http/expect/ExpectationHandler.java index 4993e00..1931e9f 100644 --- a/core/src/main/java/org/commonjava/test/http/expect/ExpectationHandler.java +++ b/core/src/main/java/org/commonjava/test/http/expect/ExpectationHandler.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/core/src/main/java/org/commonjava/test/http/expect/ExpectationServer.java b/core/src/main/java/org/commonjava/test/http/expect/ExpectationServer.java index 93d47be..308b217 100644 --- a/core/src/main/java/org/commonjava/test/http/expect/ExpectationServer.java +++ b/core/src/main/java/org/commonjava/test/http/expect/ExpectationServer.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/core/src/main/java/org/commonjava/test/http/expect/ExpectationServlet.java b/core/src/main/java/org/commonjava/test/http/expect/ExpectationServlet.java index 8b6a610..f781166 100644 --- a/core/src/main/java/org/commonjava/test/http/expect/ExpectationServlet.java +++ b/core/src/main/java/org/commonjava/test/http/expect/ExpectationServlet.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/core/src/main/java/org/commonjava/test/http/stream/FileResolver.java b/core/src/main/java/org/commonjava/test/http/stream/FileResolver.java index 25476dd..f488b59 100644 --- a/core/src/main/java/org/commonjava/test/http/stream/FileResolver.java +++ b/core/src/main/java/org/commonjava/test/http/stream/FileResolver.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/core/src/main/java/org/commonjava/test/http/stream/JarFileResolver.java b/core/src/main/java/org/commonjava/test/http/stream/JarFileResolver.java index aed2c8b..2ec74bb 100644 --- a/core/src/main/java/org/commonjava/test/http/stream/JarFileResolver.java +++ b/core/src/main/java/org/commonjava/test/http/stream/JarFileResolver.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/core/src/main/java/org/commonjava/test/http/stream/StreamResolver.java b/core/src/main/java/org/commonjava/test/http/stream/StreamResolver.java index 6a5d794..95a6674 100644 --- a/core/src/main/java/org/commonjava/test/http/stream/StreamResolver.java +++ b/core/src/main/java/org/commonjava/test/http/stream/StreamResolver.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/core/src/main/java/org/commonjava/test/http/stream/StreamServer.java b/core/src/main/java/org/commonjava/test/http/stream/StreamServer.java index 781a74b..e89d668 100644 --- a/core/src/main/java/org/commonjava/test/http/stream/StreamServer.java +++ b/core/src/main/java/org/commonjava/test/http/stream/StreamServer.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/core/src/main/java/org/commonjava/test/http/stream/StreamServlet.java b/core/src/main/java/org/commonjava/test/http/stream/StreamServlet.java index e7569d9..814fc49 100644 --- a/core/src/main/java/org/commonjava/test/http/stream/StreamServlet.java +++ b/core/src/main/java/org/commonjava/test/http/stream/StreamServlet.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/core/src/main/java/org/commonjava/test/http/util/PortFinder.java b/core/src/main/java/org/commonjava/test/http/util/PortFinder.java index c1233d1..10accfe 100644 --- a/core/src/main/java/org/commonjava/test/http/util/PortFinder.java +++ b/core/src/main/java/org/commonjava/test/http/util/PortFinder.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/core/src/main/java/org/commonjava/test/http/util/StreamUtils.java b/core/src/main/java/org/commonjava/test/http/util/StreamUtils.java index b1dc49a..e2eaefd 100644 --- a/core/src/main/java/org/commonjava/test/http/util/StreamUtils.java +++ b/core/src/main/java/org/commonjava/test/http/util/StreamUtils.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/core/src/main/java/org/commonjava/test/http/util/UrlUtils.java b/core/src/main/java/org/commonjava/test/http/util/UrlUtils.java index 3750416..df4db3d 100644 --- a/core/src/main/java/org/commonjava/test/http/util/UrlUtils.java +++ b/core/src/main/java/org/commonjava/test/http/util/UrlUtils.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/junit4/src/main/java/org/commonjava/test/http/junit4/expect/ExpectationServerWrapper.java b/junit4/src/main/java/org/commonjava/test/http/junit4/expect/ExpectationServerWrapper.java index 38f64b7..fd52a4c 100644 --- a/junit4/src/main/java/org/commonjava/test/http/junit4/expect/ExpectationServerWrapper.java +++ b/junit4/src/main/java/org/commonjava/test/http/junit4/expect/ExpectationServerWrapper.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/junit4/src/main/java/org/commonjava/test/http/junit4/stream/StreamServerWrapper.java b/junit4/src/main/java/org/commonjava/test/http/junit4/stream/StreamServerWrapper.java index ffd74be..de7c84a 100644 --- a/junit4/src/main/java/org/commonjava/test/http/junit4/stream/StreamServerWrapper.java +++ b/junit4/src/main/java/org/commonjava/test/http/junit4/stream/StreamServerWrapper.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/junit4/src/test/java/org/commonjava/test/http/junt4/TestHttpServerTest.java b/junit4/src/test/java/org/commonjava/test/http/junt4/TestHttpServerTest.java index 5746b95..4c52992 100644 --- a/junit4/src/test/java/org/commonjava/test/http/junt4/TestHttpServerTest.java +++ b/junit4/src/test/java/org/commonjava/test/http/junt4/TestHttpServerTest.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/junit5/src/main/java/org/commonjava/test/http/junit5/annotations/Expected.java b/junit5/src/main/java/org/commonjava/test/http/junit5/annotations/Expected.java index 15234de..2274932 100644 --- a/junit5/src/main/java/org/commonjava/test/http/junit5/annotations/Expected.java +++ b/junit5/src/main/java/org/commonjava/test/http/junit5/annotations/Expected.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/junit5/src/main/java/org/commonjava/test/http/junit5/expect/ExpectationServerExtension.java b/junit5/src/main/java/org/commonjava/test/http/junit5/expect/ExpectationServerExtension.java index e75d5d3..94f3a60 100644 --- a/junit5/src/main/java/org/commonjava/test/http/junit5/expect/ExpectationServerExtension.java +++ b/junit5/src/main/java/org/commonjava/test/http/junit5/expect/ExpectationServerExtension.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/junit5/src/main/java/org/commonjava/test/http/junit5/stream/StreamServerExtension.java b/junit5/src/main/java/org/commonjava/test/http/junit5/stream/StreamServerExtension.java index 0da4dbc..0f1874a 100644 --- a/junit5/src/main/java/org/commonjava/test/http/junit5/stream/StreamServerExtension.java +++ b/junit5/src/main/java/org/commonjava/test/http/junit5/stream/StreamServerExtension.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/junit5/src/test/java/org/commonjava/test/http/junit5/AbstractExtensionTest.java b/junit5/src/test/java/org/commonjava/test/http/junit5/AbstractExtensionTest.java index 41b995f..1c8b6ae 100644 --- a/junit5/src/test/java/org/commonjava/test/http/junit5/AbstractExtensionTest.java +++ b/junit5/src/test/java/org/commonjava/test/http/junit5/AbstractExtensionTest.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/junit5/src/test/java/org/commonjava/test/http/junit5/TestHttpServerExtendWithTest.java b/junit5/src/test/java/org/commonjava/test/http/junit5/TestHttpServerExtendWithTest.java index 2d4dd10..9aa8c70 100644 --- a/junit5/src/test/java/org/commonjava/test/http/junit5/TestHttpServerExtendWithTest.java +++ b/junit5/src/test/java/org/commonjava/test/http/junit5/TestHttpServerExtendWithTest.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/junit5/src/test/java/org/commonjava/test/http/junit5/TestHttpServerRegisterTest.java b/junit5/src/test/java/org/commonjava/test/http/junit5/TestHttpServerRegisterTest.java index 4d34a0d..e74f613 100644 --- a/junit5/src/test/java/org/commonjava/test/http/junit5/TestHttpServerRegisterTest.java +++ b/junit5/src/test/java/org/commonjava/test/http/junit5/TestHttpServerRegisterTest.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/quarkus/src/main/java/org/commonjava/test/http/quarkus/InjectExpected.java b/quarkus/src/main/java/org/commonjava/test/http/quarkus/InjectExpected.java index cca9a0a..4d52b92 100644 --- a/quarkus/src/main/java/org/commonjava/test/http/quarkus/InjectExpected.java +++ b/quarkus/src/main/java/org/commonjava/test/http/quarkus/InjectExpected.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/quarkus/src/main/java/org/commonjava/test/http/quarkus/InjectStream.java b/quarkus/src/main/java/org/commonjava/test/http/quarkus/InjectStream.java index 42570db..5819c64 100644 --- a/quarkus/src/main/java/org/commonjava/test/http/quarkus/InjectStream.java +++ b/quarkus/src/main/java/org/commonjava/test/http/quarkus/InjectStream.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/quarkus/src/main/java/org/commonjava/test/http/quarkus/internal/ExpectationServerCallBack.java b/quarkus/src/main/java/org/commonjava/test/http/quarkus/internal/ExpectationServerCallBack.java index 29f1fa8..9887a2a 100644 --- a/quarkus/src/main/java/org/commonjava/test/http/quarkus/internal/ExpectationServerCallBack.java +++ b/quarkus/src/main/java/org/commonjava/test/http/quarkus/internal/ExpectationServerCallBack.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/quarkus/src/main/java/org/commonjava/test/http/quarkus/internal/StreamServerCallBack.java b/quarkus/src/main/java/org/commonjava/test/http/quarkus/internal/StreamServerCallBack.java index 967eb01..c6ebc33 100644 --- a/quarkus/src/main/java/org/commonjava/test/http/quarkus/internal/StreamServerCallBack.java +++ b/quarkus/src/main/java/org/commonjava/test/http/quarkus/internal/StreamServerCallBack.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License"); diff --git a/quarkus/src/test/java/org/commonjava/test/http/quarkus/TestHttpServerWithQuarkus.java b/quarkus/src/test/java/org/commonjava/test/http/quarkus/TestHttpServerWithQuarkus.java index 4c35888..0241585 100644 --- a/quarkus/src/test/java/org/commonjava/test/http/quarkus/TestHttpServerWithQuarkus.java +++ b/quarkus/src/test/java/org/commonjava/test/http/quarkus/TestHttpServerWithQuarkus.java @@ -1,4 +1,4 @@ -/** +/* * Copyright (C) 2011-2024 Red Hat, Inc. (https://github.com/Commonjava/http-testserver) * * Licensed under the Apache License, Version 2.0 (the "License");