Commit 255469b8 authored by Johnny Lim's avatar Johnny Lim Committed by Andy Wilkinson

Add Javadoc `@since` tags for new additional Tomcat connectors methods

See gh-17473
parent 4914b528
......@@ -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<Connector> getAdditionalTomcatConnectors() {
return this.additionalTomcatConnectors;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment