Add Javadoc `@since` tags for new additional Tomcat connectors methods
See gh-17473
This commit is contained in:
parent
4914b528ed
commit
255469b82f
|
|
@ -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
|
* Add {@link Connector}s in addition to the default connector, e.g. for SSL or AJP
|
||||||
* @param connectors the connectors to add
|
* @param connectors the connectors to add
|
||||||
|
* @since 2.2.0
|
||||||
*/
|
*/
|
||||||
public void addAdditionalTomcatConnectors(Connector... connectors) {
|
public void addAdditionalTomcatConnectors(Connector... connectors) {
|
||||||
Assert.notNull(connectors, "Connectors must not be null");
|
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
|
* Returns a mutable collection of the {@link Connector}s that will be added to the
|
||||||
* Tomcat.
|
* Tomcat.
|
||||||
* @return the additionalTomcatConnectors
|
* @return the additionalTomcatConnectors
|
||||||
|
* @since 2.2.0
|
||||||
*/
|
*/
|
||||||
public List<Connector> getAdditionalTomcatConnectors() {
|
public List<Connector> getAdditionalTomcatConnectors() {
|
||||||
return this.additionalTomcatConnectors;
|
return this.additionalTomcatConnectors;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue