Skip to content

Commit 239417b

Browse files
committed
Polish KDoc
Signed-off-by: Dmitry Sulman <[email protected]>
1 parent d7ef1b3 commit 239417b

File tree

8 files changed

+16
-0
lines changed

8 files changed

+16
-0
lines changed

logback-access-reactor-netty-spring-boot-starter/src/main/kotlin/io/github/dmitrysulman/logback/access/reactor/netty/autoconfigure/ReactorNettyAccessLogFactoryAutoConfiguration.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ import reactor.netty.http.server.HttpServer
1717

1818
/**
1919
* [Auto-configuration][EnableAutoConfiguration] for the Logback Access integration with Reactor Netty.
20+
*
21+
* @author Dmitry Sulman
22+
* @see ReactorNettyAccessLogProperties
2023
*/
2124
@AutoConfiguration
2225
@ConditionalOnWebApplication(type = ConditionalOnWebApplication.Type.REACTIVE)

logback-access-reactor-netty-spring-boot-starter/src/main/kotlin/io/github/dmitrysulman/logback/access/reactor/netty/autoconfigure/ReactorNettyAccessLogProperties.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ import org.springframework.boot.context.properties.ConfigurationProperties
44

55
/**
66
* [@ConfigurationProperties][ConfigurationProperties] for the Logback Access integration with Reactor Netty.
7+
*
8+
* @author Dmitry Sulman
9+
* @see ReactorNettyAccessLogFactoryAutoConfiguration
710
*/
811
@ConfigurationProperties("logback.access.reactor.netty")
912
class ReactorNettyAccessLogProperties {

logback-access-reactor-netty-spring-boot-starter/src/main/kotlin/io/github/dmitrysulman/logback/access/reactor/netty/autoconfigure/ReactorNettyAccessLogWebServerFactoryCustomizer.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ import org.springframework.boot.web.server.WebServerFactoryCustomizer
66

77
/**
88
* [WebServerFactoryCustomizer] of the [NettyReactiveWebServerFactory] for the Logback Access integration.
9+
*
10+
* @author Dmitry Sulman
11+
* @see ReactorNettyAccessLogFactoryAutoConfiguration
912
*/
1013
class ReactorNettyAccessLogWebServerFactoryCustomizer(
1114
private val enableAccessLog: Boolean,

logback-access-reactor-netty-spring-boot-starter/src/main/kotlin/io/github/dmitrysulman/logback/access/reactor/netty/joran/LogbackAccessJoranConfigurator.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ import java.util.function.Supplier
1212
* Extended version of the Logback Access [JoranConfigurator] that adds support of `<springProfile>` tags.
1313
*
1414
* See [SpringBootJoranConfigurator](https://github.com/spring-projects/spring-boot/blob/main/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/logback/SpringBootJoranConfigurator.java).
15+
*
16+
* @author Dmitry Sulman
1517
*/
1618
class LogbackAccessJoranConfigurator(
1719
private val environment: Environment,

logback-access-reactor-netty-spring-boot-starter/src/main/kotlin/io/github/dmitrysulman/logback/access/reactor/netty/joran/LogbackAccessSpringProfileAction.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import org.xml.sax.Attributes
1111
*
1212
* See [SpringProfileAction](https://github.com/spring-projects/spring-boot/blob/main/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/logback/SpringProfileAction.java).
1313
*
14+
* @author Dmitry Sulman
1415
* @see [LogbackAccessSpringProfileModel]
1516
* @see [LogbackAccessSpringProfileModelHandler]
1617
*/

logback-access-reactor-netty-spring-boot-starter/src/main/kotlin/io/github/dmitrysulman/logback/access/reactor/netty/joran/LogbackAccessSpringProfileModel.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import ch.qos.logback.core.model.NamedModel
77
*
88
* See [SpringProfileModel](https://github.com/spring-projects/spring-boot/blob/main/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/logback/SpringProfileModel.java).
99
*
10+
* @author Dmitry Sulman
1011
* @see [LogbackAccessSpringProfileAction]
1112
* @see [LogbackAccessSpringProfileModelHandler]
1213
*/

logback-access-reactor-netty-spring-boot-starter/src/main/kotlin/io/github/dmitrysulman/logback/access/reactor/netty/joran/LogbackAccessSpringProfileModelHandler.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import org.springframework.core.env.Environment
1212
*
1313
* See [SpringProfileModelHandler](https://github.com/spring-projects/spring-boot/blob/main/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/logback/SpringProfileModelHandler.java).
1414
*
15+
* @author Dmitry Sulman
1516
* @see [LogbackAccessSpringProfileModel]
1617
* @see [LogbackAccessSpringProfileAction]
1718
*/

logback-access-reactor-netty-spring-boot-starter/src/main/kotlin/io/github/dmitrysulman/logback/access/reactor/netty/joran/LogbackAccessSpringProfileWithinSecondPhaseElementSanityChecker.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ import ch.qos.logback.core.spi.ContextAwareBase
1010
* within second-phase elements.
1111
*
1212
* See [SpringProfileIfNestedWithinSecondPhaseElementSanityChecker](https://github.com/spring-projects/spring-boot/blob/main/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/logging/logback/SpringProfileIfNestedWithinSecondPhaseElementSanityChecker.java).
13+
*
14+
* @author Dmitry Sulman
1315
*/
1416
class LogbackAccessSpringProfileWithinSecondPhaseElementSanityChecker :
1517
ContextAwareBase(),

0 commit comments

Comments
 (0)