Fix Javadoc.

Original Pull Request: #2562
Closes #2561
This commit is contained in:
Peter-Josef Meisch 2023-05-13 09:44:48 +02:00 committed by GitHub
parent f464f77985
commit 34b0181014
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 9 deletions

View File

@ -137,7 +137,6 @@ public interface ClientConfiguration {
* Returns the {@link java.time.Duration connect timeout}.
*
* @see java.net.Socket#connect(SocketAddress, int)
* @see io.netty.channel.ChannelOption#CONNECT_TIMEOUT_MILLIS
*/
Duration getConnectTimeout();
@ -145,8 +144,6 @@ public interface ClientConfiguration {
* Returns the {@link java.time.Duration socket timeout} which is typically applied as SO-timeout/read timeout.
*
* @see java.net.Socket#setSoTimeout(int)
* @see io.netty.handler.timeout.ReadTimeoutHandler
* @see io.netty.handler.timeout.WriteTimeoutHandler
*/
Duration getSocketTimeout();
@ -294,7 +291,6 @@ public interface ClientConfiguration {
* @param timeout the timeout to use. Must not be {@literal null}.
* @return the {@link TerminalClientConfigurationBuilder}
* @see java.net.Socket#connect(SocketAddress, int)
* @see io.netty.channel.ChannelOption#CONNECT_TIMEOUT_MILLIS
*/
TerminalClientConfigurationBuilder withConnectTimeout(Duration timeout);
@ -315,8 +311,6 @@ public interface ClientConfiguration {
* @param timeout the timeout to use. Must not be {@literal null}.
* @return the {@link TerminalClientConfigurationBuilder}
* @see java.net.Socket#setSoTimeout(int)
* @see io.netty.handler.timeout.ReadTimeoutHandler
* @see io.netty.handler.timeout.WriteTimeoutHandler
*/
TerminalClientConfigurationBuilder withSocketTimeout(Duration timeout);

View File

@ -55,7 +55,7 @@ public @interface EnableElasticsearchAuditing {
boolean modifyOnCreate() default true;
/**
* Configures a {@link DateTimeProvider} bean name that allows customizing the {@link org.joda.time.DateTime} to be
* Configures a {@link DateTimeProvider} bean name that allows customizing the date and time to be
* used for setting creation and modification dates.
*/
String dateTimeProviderRef() default "";

View File

@ -55,8 +55,8 @@ public @interface EnableReactiveElasticsearchAuditing {
boolean modifyOnCreate() default true;
/**
* Configures a {@link DateTimeProvider} bean name that allows customizing the {@link org.joda.time.DateTime} to be
* used for setting creation and modification dates.
* Configures a {@link DateTimeProvider} bean name that allows customizing the date and time to be used for setting
* creation and modification dates.
*/
String dateTimeProviderRef() default "";
}