From 8dcbaf4b5cb0fb345eb949acfa66b1fbe09d1ffb Mon Sep 17 00:00:00 2001
From: jansupol <15908245+jansupol@users.noreply.github.com>
Date: Mon, 12 Aug 2019 12:16:59 +0200
Subject: [PATCH] Removed invalid email addresses (#4203)
Signed-off-by: Jan Supol
* Note that this implementation cannot be more experimental. Any contributions / feedback is welcomed. * - * @author Pavel Bucek (pavel.bucek at oracle.com) + * @author Pavel Bucek */ @ChannelHandler.Sharable class JerseyHttp2ServerHandler extends ChannelDuplexHandler { diff --git a/containers/netty-http/src/main/java/org/glassfish/jersey/netty/httpserver/JerseyServerHandler.java b/containers/netty-http/src/main/java/org/glassfish/jersey/netty/httpserver/JerseyServerHandler.java index 8e3067248a..1b93fb853e 100644 --- a/containers/netty-http/src/main/java/org/glassfish/jersey/netty/httpserver/JerseyServerHandler.java +++ b/containers/netty-http/src/main/java/org/glassfish/jersey/netty/httpserver/JerseyServerHandler.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -51,7 +51,7 @@ * {@link io.netty.channel.ChannelInboundHandler} which servers as a bridge * between Netty and Jersey. * - * @author Pavel Bucek (pavel.bucek at oracle.com) + * @author Pavel Bucek */ class JerseyServerHandler extends ChannelInboundHandlerAdapter { diff --git a/containers/netty-http/src/main/java/org/glassfish/jersey/netty/httpserver/JerseyServerInitializer.java b/containers/netty-http/src/main/java/org/glassfish/jersey/netty/httpserver/JerseyServerInitializer.java index 68962ddaef..e7c11bfd34 100644 --- a/containers/netty-http/src/main/java/org/glassfish/jersey/netty/httpserver/JerseyServerInitializer.java +++ b/containers/netty-http/src/main/java/org/glassfish/jersey/netty/httpserver/JerseyServerInitializer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2016, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -38,7 +38,7 @@ *
* Adds {@link HttpServerCodec}, {@link ChunkedWriteHandler} and {@link JerseyServerHandler} to the channels pipeline.
*
- * @author Pavel Bucek (pavel.bucek at oracle.com)
+ * @author Pavel Bucek
*/
class JerseyServerInitializer extends ChannelInitializer
* There is also a few "factory" methods for creating Netty server.
*
- * @author Pavel Bucek (pavel.bucek at oracle.com)
+ * @author Pavel Bucek
* @since 2.24
*/
@Beta
diff --git a/containers/netty-http/src/main/java/org/glassfish/jersey/netty/httpserver/NettyResponseWriter.java b/containers/netty-http/src/main/java/org/glassfish/jersey/netty/httpserver/NettyResponseWriter.java
index d66204d8cc..00998c347b 100644
--- a/containers/netty-http/src/main/java/org/glassfish/jersey/netty/httpserver/NettyResponseWriter.java
+++ b/containers/netty-http/src/main/java/org/glassfish/jersey/netty/httpserver/NettyResponseWriter.java
@@ -46,7 +46,7 @@
/**
* Netty implementation of {@link ContainerResponseWriter}.
*
- * @author Pavel Bucek (pavel.bucek at oracle.com)
+ * @author Pavel Bucek
*/
class NettyResponseWriter implements ContainerResponseWriter {
diff --git a/containers/simple-http/src/main/java/org/glassfish/jersey/simple/SimpleContainer.java b/containers/simple-http/src/main/java/org/glassfish/jersey/simple/SimpleContainer.java
index e59962fd1a..22909e1936 100644
--- a/containers/simple-http/src/main/java/org/glassfish/jersey/simple/SimpleContainer.java
+++ b/containers/simple-http/src/main/java/org/glassfish/jersey/simple/SimpleContainer.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2010, 2019 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -66,7 +66,7 @@
* {@link org.simpleframework.http.core.Container}.
*
* @author Arul Dhesiaseelan (aruld@acm.org)
- * @author Marek Potociar (marek.potociar at oracle.com)
+ * @author Marek Potociar
*/
public final class SimpleContainer implements org.simpleframework.http.core.Container, Container {
diff --git a/containers/simple-http/src/main/java/org/glassfish/jersey/simple/SimpleContainerFactory.java b/containers/simple-http/src/main/java/org/glassfish/jersey/simple/SimpleContainerFactory.java
index a9dc46d4c7..e979908f71 100644
--- a/containers/simple-http/src/main/java/org/glassfish/jersey/simple/SimpleContainerFactory.java
+++ b/containers/simple-http/src/main/java/org/glassfish/jersey/simple/SimpleContainerFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2010, 2019 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -45,7 +45,7 @@
* decrypt and encrypt information sent over the connected TCP socket channel.
*
* @author Arul Dhesiaseelan (aruld at acm.org)
- * @author Marek Potociar (marek.potociar at oracle.com)
+ * @author Marek Potociar
* @author Paul Sandoz
*/
public final class SimpleContainerFactory {
diff --git a/containers/simple-http/src/main/java/org/glassfish/jersey/simple/SimpleContainerProvider.java b/containers/simple-http/src/main/java/org/glassfish/jersey/simple/SimpleContainerProvider.java
index 68f8f0fb77..4eaf1c4bd8 100644
--- a/containers/simple-http/src/main/java/org/glassfish/jersey/simple/SimpleContainerProvider.java
+++ b/containers/simple-http/src/main/java/org/glassfish/jersey/simple/SimpleContainerProvider.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2010, 2019 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -29,7 +29,7 @@
*
* @author Marc Hadley
* @author Arul Dhesiaseelan (aruld@acm.org)
- * @author Marek Potociar (marek.potociar at oracle.com)
+ * @author Marek Potociar
*/
public final class SimpleContainerProvider implements ContainerProvider {
diff --git a/containers/simple-http/src/test/java/org/glassfish/jersey/simple/LifecycleListenerTest.java b/containers/simple-http/src/test/java/org/glassfish/jersey/simple/LifecycleListenerTest.java
index 439b7d2341..4c163292ee 100644
--- a/containers/simple-http/src/test/java/org/glassfish/jersey/simple/LifecycleListenerTest.java
+++ b/containers/simple-http/src/test/java/org/glassfish/jersey/simple/LifecycleListenerTest.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2010, 2019 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -37,7 +37,7 @@
* Reload and ContainerLifecycleListener support test.
*
* @author Paul Sandoz
- * @author Marek Potociar (marek.potociar at oracle.com)
+ * @author Marek Potociar
*/
public class LifecycleListenerTest extends AbstractSimpleServerTester {
diff --git a/core-client/src/main/java/org/glassfish/jersey/client/AbortException.java b/core-client/src/main/java/org/glassfish/jersey/client/AbortException.java
index 0a81affef5..713c4f5573 100644
--- a/core-client/src/main/java/org/glassfish/jersey/client/AbortException.java
+++ b/core-client/src/main/java/org/glassfish/jersey/client/AbortException.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, 2018 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2019 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -22,7 +22,7 @@
* Internal exception indicating that request processing has been aborted
* in the request filter processing chain.
*
- * @author Marek Potociar (marek.potociar at oracle.com)
+ * @author Marek Potociar
*
* @see javax.ws.rs.client.ClientRequestContext#abortWith(javax.ws.rs.core.Response)
*/
diff --git a/core-client/src/main/java/org/glassfish/jersey/client/ChunkParser.java b/core-client/src/main/java/org/glassfish/jersey/client/ChunkParser.java
index 9aa3ca7dbb..394bd97868 100644
--- a/core-client/src/main/java/org/glassfish/jersey/client/ChunkParser.java
+++ b/core-client/src/main/java/org/glassfish/jersey/client/ChunkParser.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, 2018 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2019 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -38,7 +38,7 @@
* of the chunk data.
*
* Can be used to override {@link SslConfigurator#getDefaultContext()}. * - * @author Pavel Bucek (pavel.bucek at oracle.com) + * @author Pavel Bucek * @since 2.21.1 */ public interface DefaultSslContextProvider { diff --git a/core-client/src/test/java/org/glassfish/jersey/client/ClientConfigTest.java b/core-client/src/test/java/org/glassfish/jersey/client/ClientConfigTest.java index 05234b18c0..f813eae8ed 100644 --- a/core-client/src/test/java/org/glassfish/jersey/client/ClientConfigTest.java +++ b/core-client/src/test/java/org/glassfish/jersey/client/ClientConfigTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2012, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -45,7 +45,7 @@ /** * {@link ClientConfig} unit test. * - * @author Marek Potociar (marek.potociar at oracle.com) + * @author Marek Potociar */ public class ClientConfigTest { diff --git a/core-client/src/test/java/org/glassfish/jersey/client/ClientRequestTest.java b/core-client/src/test/java/org/glassfish/jersey/client/ClientRequestTest.java index 77512caa02..59afe35bf1 100644 --- a/core-client/src/test/java/org/glassfish/jersey/client/ClientRequestTest.java +++ b/core-client/src/test/java/org/glassfish/jersey/client/ClientRequestTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2013, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -51,7 +51,7 @@ /** * {@code ClientRequest} unit tests. * - * @author Marek Potociar (marek.potociar at oracle.com) + * @author Marek Potociar */ @RunWith(MockitoJUnitRunner.class) public class ClientRequestTest { diff --git a/core-client/src/test/java/org/glassfish/jersey/client/ClientRxTest.java b/core-client/src/test/java/org/glassfish/jersey/client/ClientRxTest.java index 263822dd07..cb0497a8e1 100644 --- a/core-client/src/test/java/org/glassfish/jersey/client/ClientRxTest.java +++ b/core-client/src/test/java/org/glassfish/jersey/client/ClientRxTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2017, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -43,7 +43,7 @@ /** * Sanity test for {@link Invocation.Builder#rx()} methods. * - * @author Pavel Bucek (pavel.bucek at oracle.com) + * @author Pavel Bucek */ public class ClientRxTest { diff --git a/core-client/src/test/java/org/glassfish/jersey/client/CustomConnectorTest.java b/core-client/src/test/java/org/glassfish/jersey/client/CustomConnectorTest.java index 570e60c063..17b83e7e33 100644 --- a/core-client/src/test/java/org/glassfish/jersey/client/CustomConnectorTest.java +++ b/core-client/src/test/java/org/glassfish/jersey/client/CustomConnectorTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -40,7 +40,7 @@ import static org.junit.Assert.assertThat; /** - * @author Pavel Bucek (pavel.bucek at oracle.com) + * @author Pavel Bucek */ public class CustomConnectorTest { diff --git a/core-client/src/test/java/org/glassfish/jersey/client/DefaultSslContextProviderTest.java b/core-client/src/test/java/org/glassfish/jersey/client/DefaultSslContextProviderTest.java index b7483d9fc2..d0ef2bdf2a 100644 --- a/core-client/src/test/java/org/glassfish/jersey/client/DefaultSslContextProviderTest.java +++ b/core-client/src/test/java/org/glassfish/jersey/client/DefaultSslContextProviderTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -32,7 +32,7 @@ import static org.junit.Assert.assertTrue; /** - * @author Pavel Bucek (pavel.bucek at oracle.com) + * @author Pavel Bucek */ public class DefaultSslContextProviderTest { diff --git a/core-client/src/test/java/org/glassfish/jersey/client/JerseyClientBuilderTest.java b/core-client/src/test/java/org/glassfish/jersey/client/JerseyClientBuilderTest.java index 7ee4a3b8b4..bb4a680098 100644 --- a/core-client/src/test/java/org/glassfish/jersey/client/JerseyClientBuilderTest.java +++ b/core-client/src/test/java/org/glassfish/jersey/client/JerseyClientBuilderTest.java @@ -49,7 +49,7 @@ /** * {@link JerseyClient} unit test. * - * @author Marek Potociar (marek.potociar at oracle.com) + * @author Marek Potociar * @author Michal Gajdos */ public class JerseyClientBuilderTest { diff --git a/core-client/src/test/java/org/glassfish/jersey/client/JerseyClientTest.java b/core-client/src/test/java/org/glassfish/jersey/client/JerseyClientTest.java index a3aa578287..8a851f63d2 100644 --- a/core-client/src/test/java/org/glassfish/jersey/client/JerseyClientTest.java +++ b/core-client/src/test/java/org/glassfish/jersey/client/JerseyClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -54,7 +54,7 @@ /** * {@link JerseyClient} unit test. * - * @author Marek Potociar (marek.potociar at oracle.com) + * @author Marek Potociar */ public class JerseyClientTest { diff --git a/core-client/src/test/java/org/glassfish/jersey/client/JerseyCompletionStageRxInvokerTest.java b/core-client/src/test/java/org/glassfish/jersey/client/JerseyCompletionStageRxInvokerTest.java index 56d763f89a..cf3ba575de 100644 --- a/core-client/src/test/java/org/glassfish/jersey/client/JerseyCompletionStageRxInvokerTest.java +++ b/core-client/src/test/java/org/glassfish/jersey/client/JerseyCompletionStageRxInvokerTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2017, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -41,7 +41,7 @@ import static org.hamcrest.core.Is.is; /** - * @author Pavel Bucek (pavel.bucek at oracle.com) + * @author Pavel Bucek */ public class JerseyCompletionStageRxInvokerTest { diff --git a/core-client/src/test/java/org/glassfish/jersey/client/ShutdownHookLeakTest.java b/core-client/src/test/java/org/glassfish/jersey/client/ShutdownHookLeakTest.java index d92fec7a5d..ff88ab8007 100644 --- a/core-client/src/test/java/org/glassfish/jersey/client/ShutdownHookLeakTest.java +++ b/core-client/src/test/java/org/glassfish/jersey/client/ShutdownHookLeakTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -32,7 +32,7 @@ /** * Reproducer for JERSEY-2786. * - * @author Jakub Podlesak (jakub.podlesak at oracle.com) + * @author Jakub Podlesak */ public class ShutdownHookLeakTest { diff --git a/core-client/src/test/java/org/glassfish/jersey/client/filter/EncodingFilterTest.java b/core-client/src/test/java/org/glassfish/jersey/client/filter/EncodingFilterTest.java index 66dfc489f5..4d1fe390a5 100644 --- a/core-client/src/test/java/org/glassfish/jersey/client/filter/EncodingFilterTest.java +++ b/core-client/src/test/java/org/glassfish/jersey/client/filter/EncodingFilterTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2012, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -53,7 +53,7 @@ * Client-side content encoding filter unit tests. * * @author Martin Matula - * @author Marek Potociar (marek.potociar at oracle.com) + * @author Marek Potociar */ public class EncodingFilterTest { @Test diff --git a/core-client/src/test/java/org/glassfish/jersey/client/spi/CachingConnectorProviderTest.java b/core-client/src/test/java/org/glassfish/jersey/client/spi/CachingConnectorProviderTest.java index c3ea1605d2..d4f9363972 100644 --- a/core-client/src/test/java/org/glassfish/jersey/client/spi/CachingConnectorProviderTest.java +++ b/core-client/src/test/java/org/glassfish/jersey/client/spi/CachingConnectorProviderTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -35,7 +35,7 @@ /** * Caching connector provider unit tests. * - * @author Marek Potociar (marek.potociar at oracle.com) + * @author Marek Potociar */ public class CachingConnectorProviderTest { public static class ReferenceCountingNullConnector implements Connector, ConnectorProvider { diff --git a/core-common/src/main/java/org/glassfish/jersey/Beta.java b/core-common/src/main/java/org/glassfish/jersey/Beta.java index b855978033..9ea9ff6dbf 100644 --- a/core-common/src/main/java/org/glassfish/jersey/Beta.java +++ b/core-common/src/main/java/org/glassfish/jersey/Beta.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2013, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -47,7 +47,7 @@ * will be removed from such API and the API will become part of a stable public Jersey API. *
* - * @author Marek Potociar (marek.potociar at oracle.com) + * @author Marek Potociar */ @Retention(RetentionPolicy.CLASS) @Documented diff --git a/core-common/src/main/java/org/glassfish/jersey/CommonProperties.java b/core-common/src/main/java/org/glassfish/jersey/CommonProperties.java index 654d9e77b7..8001bd5d1c 100644 --- a/core-common/src/main/java/org/glassfish/jersey/CommonProperties.java +++ b/core-common/src/main/java/org/glassfish/jersey/CommonProperties.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2013, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2013, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -28,7 +28,7 @@ * Common (server/client) Jersey configuration properties. * * @author Michal Gajdos - * @author Libor Kramolis (libor.kramolis at oracle.com) + * @author Libor Kramolis */ @PropertiesClass public final class CommonProperties { diff --git a/core-common/src/main/java/org/glassfish/jersey/ExtendedConfig.java b/core-common/src/main/java/org/glassfish/jersey/ExtendedConfig.java index ca0c24fc7d..12e6840972 100644 --- a/core-common/src/main/java/org/glassfish/jersey/ExtendedConfig.java +++ b/core-common/src/main/java/org/glassfish/jersey/ExtendedConfig.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2012, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -21,7 +21,7 @@ /** * Extended common runtime configuration. * - * @author Marek Potociar (marek.potociar at oracle.com) + * @author Marek Potociar */ public interface ExtendedConfig extends Configuration { diff --git a/core-common/src/main/java/org/glassfish/jersey/JerseyPriorities.java b/core-common/src/main/java/org/glassfish/jersey/JerseyPriorities.java index a35a764b40..e8a4d57bcb 100644 --- a/core-common/src/main/java/org/glassfish/jersey/JerseyPriorities.java +++ b/core-common/src/main/java/org/glassfish/jersey/JerseyPriorities.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -22,7 +22,7 @@ * Built-in Jersey-specific priority constants to be used along with {@link javax.ws.rs.Priorities} where finer-grained * categorization is required. * - * @author Adam Lindenthal (adam.lindenthal at oracle.com) + * @author Adam Lindenthal */ public class JerseyPriorities { diff --git a/core-common/src/main/java/org/glassfish/jersey/SslConfigurator.java b/core-common/src/main/java/org/glassfish/jersey/SslConfigurator.java index 1f03bfc1d5..1bf2647fd4 100644 --- a/core-common/src/main/java/org/glassfish/jersey/SslConfigurator.java +++ b/core-common/src/main/java/org/glassfish/jersey/SslConfigurator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2007, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2007, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -65,7 +65,7 @@ * @author Alexey Stashok * @author Hubert Iwaniuk * @author Bruno Harbulot - * @author Marek Potociar (marek.potociar at oracle.com) + * @author Marek Potociar */ @SuppressWarnings("UnusedDeclaration") public final class SslConfigurator { diff --git a/core-common/src/main/java/org/glassfish/jersey/internal/ContextResolverFactory.java b/core-common/src/main/java/org/glassfish/jersey/internal/ContextResolverFactory.java index aa97addf27..66f1c9f327 100644 --- a/core-common/src/main/java/org/glassfish/jersey/internal/ContextResolverFactory.java +++ b/core-common/src/main/java/org/glassfish/jersey/internal/ContextResolverFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2010, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -41,7 +41,7 @@ * A factory implementation for managing {@link ContextResolver} instances. * * @author Paul Sandoz - * @author Marek Potociar (marek.potociar at oracle.com) + * @author Marek Potociar */ public class ContextResolverFactory implements ContextResolvers { diff --git a/core-common/src/main/java/org/glassfish/jersey/internal/ExceptionMapperFactory.java b/core-common/src/main/java/org/glassfish/jersey/internal/ExceptionMapperFactory.java index aff86bd7ee..f73602cc88 100644 --- a/core-common/src/main/java/org/glassfish/jersey/internal/ExceptionMapperFactory.java +++ b/core-common/src/main/java/org/glassfish/jersey/internal/ExceptionMapperFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2010, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -51,8 +51,8 @@ * * @author Paul Sandoz * @author Santiago Pericas-Geertsen (Santiago.PericasGeertsen at oracle.com) - * @author Marek Potociar (marek.potociar at oracle.com) - * @author Jakub Podlesak (jakub.podlesak at oracle.com) + * @author Marek Potociar + * @author Jakub Podlesak */ public class ExceptionMapperFactory implements ExceptionMappers { diff --git a/core-common/src/main/java/org/glassfish/jersey/internal/JaxrsProviders.java b/core-common/src/main/java/org/glassfish/jersey/internal/JaxrsProviders.java index 519b1e5326..5b97317596 100644 --- a/core-common/src/main/java/org/glassfish/jersey/internal/JaxrsProviders.java +++ b/core-common/src/main/java/org/glassfish/jersey/internal/JaxrsProviders.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2012, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -39,7 +39,7 @@ /** * Jersey implementation of JAX-RS {@link Providers} contract. * - * @author Marek Potociar (marek.potociar at oracle.com) + * @author Marek Potociar */ public class JaxrsProviders implements Providers { diff --git a/core-common/src/main/java/org/glassfish/jersey/internal/MapPropertiesDelegate.java b/core-common/src/main/java/org/glassfish/jersey/internal/MapPropertiesDelegate.java index a1f811377a..aed1cfe912 100644 --- a/core-common/src/main/java/org/glassfish/jersey/internal/MapPropertiesDelegate.java +++ b/core-common/src/main/java/org/glassfish/jersey/internal/MapPropertiesDelegate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2012, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -24,7 +24,7 @@ /** * Properties delegate backed by a {@code Map}. * - * @author Marek Potociar (marek.potociar at oracle.com) + * @author Marek Potociar */ public final class MapPropertiesDelegate implements PropertiesDelegate { diff --git a/core-common/src/main/java/org/glassfish/jersey/internal/OsgiRegistry.java b/core-common/src/main/java/org/glassfish/jersey/internal/OsgiRegistry.java index 846e133f9a..67304d103f 100644 --- a/core-common/src/main/java/org/glassfish/jersey/internal/OsgiRegistry.java +++ b/core-common/src/main/java/org/glassfish/jersey/internal/OsgiRegistry.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2012, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -66,8 +66,8 @@ * via the OSGi Bundle API as direct ClassLoader#getResource() method invocation * does not work in this case within OSGi. * - * @author Jakub Podlesak (jakub.podlesak at oracle.com) - * @author Adam Lindenthal (adam.lindenthal at oracle.com) + * @author Jakub Podlesak + * @author Adam Lindenthal */ public final class OsgiRegistry implements SynchronousBundleListener { diff --git a/core-common/src/main/java/org/glassfish/jersey/internal/PropertiesDelegate.java b/core-common/src/main/java/org/glassfish/jersey/internal/PropertiesDelegate.java index d0cde50459..70833b9462 100644 --- a/core-common/src/main/java/org/glassfish/jersey/internal/PropertiesDelegate.java +++ b/core-common/src/main/java/org/glassfish/jersey/internal/PropertiesDelegate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2012, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -21,7 +21,7 @@ /** * TODO: javadoc. * - * @author Marek Potociar (marek.potociar at oracle.com) + * @author Marek Potociar */ public interface PropertiesDelegate { /** diff --git a/core-common/src/main/java/org/glassfish/jersey/internal/RuntimeDelegateImpl.java b/core-common/src/main/java/org/glassfish/jersey/internal/RuntimeDelegateImpl.java index 7fb25a63ad..2183afa5f5 100644 --- a/core-common/src/main/java/org/glassfish/jersey/internal/RuntimeDelegateImpl.java +++ b/core-common/src/main/java/org/glassfish/jersey/internal/RuntimeDelegateImpl.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -29,7 +29,7 @@ * method. * * @author Jakub Podlesak - * @author Marek Potociar (marek.potociar at oracle.com) + * @author Marek Potociar * @author Martin Matula */ public class RuntimeDelegateImpl extends AbstractRuntimeDelegate { diff --git a/core-common/src/main/java/org/glassfish/jersey/internal/ServiceConfigurationError.java b/core-common/src/main/java/org/glassfish/jersey/internal/ServiceConfigurationError.java index fa3c542ab0..d777c7a2f0 100644 --- a/core-common/src/main/java/org/glassfish/jersey/internal/ServiceConfigurationError.java +++ b/core-common/src/main/java/org/glassfish/jersey/internal/ServiceConfigurationError.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2010, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -28,7 +28,7 @@ * * * @author Mark Reinhold - * @author Marek Potociar (marek.potociar at oracle.com) + * @author Marek Potociar */ public class ServiceConfigurationError extends Error { diff --git a/core-common/src/main/java/org/glassfish/jersey/internal/ServiceFinderBinder.java b/core-common/src/main/java/org/glassfish/jersey/internal/ServiceFinderBinder.java index cc0da5e650..84bf1d4581 100644 --- a/core-common/src/main/java/org/glassfish/jersey/internal/ServiceFinderBinder.java +++ b/core-common/src/main/java/org/glassfish/jersey/internal/ServiceFinderBinder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011, 2018 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2011, 2019 Oracle and/or its affiliates. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at @@ -31,8 +31,8 @@ * and registers found instances to {@link InjectionManager}. * * @param
* Delegates to {@link SubmissionPublisher} repackaged from jsr166 on JDK 8 or to JDK {@code SubmissionPublisher}.
*
- * @author Adam Lindenthal (adam.lindenthal at oracle.com)
+ * @author Adam Lindenthal
*/
public class JerseyPublisher
* The registration does not occur if the feature is already registered or auto-discoverable mechanism is disabled.
*
- * @author Ondrej Kosatka (ondrej.kosatka at oracle.com)
+ * @author Ondrej Kosatka
* @since 2.23
*/
@Priority(AutoDiscoverable.DEFAULT_PRIORITY)
diff --git a/core-common/src/main/java/org/glassfish/jersey/logging/LoggingInterceptor.java b/core-common/src/main/java/org/glassfish/jersey/logging/LoggingInterceptor.java
index 85e0e0862d..5863c7bee5 100644
--- a/core-common/src/main/java/org/glassfish/jersey/logging/LoggingInterceptor.java
+++ b/core-common/src/main/java/org/glassfish/jersey/logging/LoggingInterceptor.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2016, 2018 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -47,7 +47,7 @@
* An interceptor that logs an entity if configured so and provides a common logic for {@link ClientLoggingFilter}
* and {@link ServerLoggingFilter}.
*
- * @author Ondrej Kosatka (ondrej.kosatka at oracle.com)
+ * @author Ondrej Kosatka
*/
abstract class LoggingInterceptor implements WriterInterceptor {
diff --git a/core-common/src/main/java/org/glassfish/jersey/logging/ServerLoggingFilter.java b/core-common/src/main/java/org/glassfish/jersey/logging/ServerLoggingFilter.java
index 441db64f16..8405edff43 100644
--- a/core-common/src/main/java/org/glassfish/jersey/logging/ServerLoggingFilter.java
+++ b/core-common/src/main/java/org/glassfish/jersey/logging/ServerLoggingFilter.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2016, 2018 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2016, 2019 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -42,9 +42,9 @@
* is set to the maximum value, which means that filter is called as the first filter when request arrives and similarly as the
* last filter when the response is dispatched, so request and response is logged as arrives or as dispatched.
*
- * @author Pavel Bucek (pavel.bucek at oracle.com)
+ * @author Pavel Bucek
* @author Martin Matula
- * @author Ondrej Kosatka (ondrej.kosatka at oracle.com)
+ * @author Ondrej Kosatka
*/
@ConstrainedTo(RuntimeType.SERVER)
@PreMatching
diff --git a/core-common/src/main/java/org/glassfish/jersey/message/AbstractEntityProviderModel.java b/core-common/src/main/java/org/glassfish/jersey/message/AbstractEntityProviderModel.java
index bebc40f066..a9d9075afe 100644
--- a/core-common/src/main/java/org/glassfish/jersey/message/AbstractEntityProviderModel.java
+++ b/core-common/src/main/java/org/glassfish/jersey/message/AbstractEntityProviderModel.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2015, 2018 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2019 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
@@ -25,7 +25,7 @@
/**
* Abstract entity provider model.
*
- * @author Marek Potociar (marek.potociar at oracle.com)
+ * @author Marek Potociar
* @since 2.16
*/
public abstract class AbstractEntityProviderModel