Browse Source

Add Javadoc since for UndertowReactiveWebServerFactory.getAccessLogPrefix()

See gh-44313

Signed-off-by: Johnny Lim <izeye@naver.com>
pull/44320/head
Johnny Lim 12 months ago committed by Stéphane Nicoll
parent
commit
487e56a5a9
  1. 5
      spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/undertow/UndertowReactiveWebServerFactory.java

5
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/undertow/UndertowReactiveWebServerFactory.java

@ -112,6 +112,11 @@ public class UndertowReactiveWebServerFactory extends AbstractReactiveWebServerF @@ -112,6 +112,11 @@ public class UndertowReactiveWebServerFactory extends AbstractReactiveWebServerF
this.delegate.setAccessLogPattern(accessLogPattern);
}
/**
* Returns the access log prefix.
* @return the access log prefix
* @since 3.5.0
*/
public String getAccessLogPrefix() {
return this.delegate.getAccessLogPrefix();
}

Loading…
Cancel
Save