From 255469b82f1c410a4e7e61944134efdf45251a8b Mon Sep 17 00:00:00 2001 From: Johnny Lim Date: Wed, 10 Jul 2019 09:59:23 +0900 Subject: [PATCH] Add Javadoc `@since` tags for new additional Tomcat connectors methods See gh-17473 --- .../web/embedded/tomcat/TomcatReactiveWebServerFactory.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/tomcat/TomcatReactiveWebServerFactory.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/tomcat/TomcatReactiveWebServerFactory.java index 2932474b52..11f26bb70c 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/tomcat/TomcatReactiveWebServerFactory.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/tomcat/TomcatReactiveWebServerFactory.java @@ -325,6 +325,7 @@ public class TomcatReactiveWebServerFactory extends AbstractReactiveWebServerFac /** * Add {@link Connector}s in addition to the default connector, e.g. for SSL or AJP * @param connectors the connectors to add + * @since 2.2.0 */ public void addAdditionalTomcatConnectors(Connector... connectors) { Assert.notNull(connectors, "Connectors must not be null"); @@ -335,6 +336,7 @@ public class TomcatReactiveWebServerFactory extends AbstractReactiveWebServerFac * Returns a mutable collection of the {@link Connector}s that will be added to the * Tomcat. * @return the additionalTomcatConnectors + * @since 2.2.0 */ public List getAdditionalTomcatConnectors() { return this.additionalTomcatConnectors;