Bump Couchase SDK to 324 on 50x. (#1290)

Also incorporates minor changes from main.

Closes #1284.
This commit is contained in:
Michael Reiche
2022-01-10 10:21:36 -08:00
committed by GitHub
parent 197012688e
commit 6197d43aea
7 changed files with 5 additions and 9 deletions

View File

@@ -196,7 +196,7 @@ class CouchbaseTemplateSupport implements ApplicationContextAware, TemplateSuppo
/**
* Set the {@link EntityCallbacks} instance to use when invoking
* {@link org.springframework.data.mapping.callback.EntityCallback callbacks} like the {@link BeforeConvertCallback}.
* <p/>
* <p>
* Overrides potentially existing {@link EntityCallbacks}.
*
* @param entityCallbacks must not be {@literal null}.

View File

@@ -206,7 +206,7 @@ class ReactiveCouchbaseTemplateSupport implements ApplicationContextAware, React
* Set the {@link ReactiveEntityCallbacks} instance to use when invoking
* {@link org.springframework.data.mapping.callback.ReactiveEntityCallbacks callbacks} like the
* {@link ReactiveBeforeConvertCallback}.
* <p/>
* <p>
* Overrides potentially existing {@link EntityCallbacks}.
*
* @param reactiveEntityCallbacks must not be {@literal null}.

View File

@@ -186,10 +186,8 @@ public class CouchbaseList implements CouchbaseStorable {
/**
* Verifies that only values of a certain and supported type can be stored.
* <p/>
* <p>
* If this is not the case, a {@link IllegalArgumentException} is thrown.
* </p>
*
* @param value the object to verify its type.
*/

View File

@@ -62,7 +62,7 @@ public enum ViewPostProcessor implements RepositoryProxyPostProcessor {
/**
* {@link MethodInterceptor} to inspect the currently invoked {@link Method} for a {@link View} annotation.
* <p/>
* <p>
* If a View annotation is found, it will bind it to a locally held ThreadLocal for later lookup in the
* SimpleCouchbaseRepository class.
*

View File

@@ -31,7 +31,6 @@ import org.junit.platform.commons.support.AnnotationSupport;
* <p>
* Note that the internals on what and how the containers are managed is up to the {@link TestCluster} implementation,
* and if it is unmanaged than this very well be mostly a "stub".
* </p>
*
* @since 2.0.0
*/

View File

@@ -79,7 +79,6 @@ public class TestClusterConfig {
* Finds the first node with a given service enabled in the config.
* <p>
* This method can be used to find bootstrap nodes and similar.
* </p>
*
* @param service the service to find.
* @return a node config if found, empty otherwise.

View File

@@ -33,7 +33,7 @@ public class Util {
* Waits and sleeps for a little bit of time until the given condition is met.
*
* <p>Sleeps 1ms between "false" invocations. It will wait at most one minute to prevent hanging forever in case
* the condition never becomes true.</p>
* the condition never becomes true.
*
* @param supplier return true once it should stop waiting.
*/
@@ -83,7 +83,7 @@ public class Util {
* Reads a file from the resources folder (in the same path as the requesting test class).
*
* <p>The class will be automatically loaded relative to the namespace and converted
* to a string.</p>
* to a string.
*
* @param filename the filename of the resource.
* @param clazz the reference class.