Fix javadoc errors introduced by 1621. (#1626)

Closes #1625.
This commit is contained in:
Michael Reiche
2022-12-16 13:46:51 -08:00
committed by mikereiche
parent 0030214aa1
commit 4249f77fce
5 changed files with 5 additions and 5 deletions

View File

@@ -29,7 +29,7 @@ import com.fasterxml.jackson.databind.ObjectMapper;
/**
* Reading Converter factory for Enums. This differs from the one provided in org.springframework.core.convert.support
* by getting the result from the jackson objectmapper (which will process @JsonValue annotations) This is registered in
* {@link org.springframework.data.couchbase.config.AbstractCouchbaseConfiguration#customConversions(CryptoManager)}.
* {@link org.springframework.data.couchbase.config.AbstractCouchbaseConfiguration#customConversions(CryptoManager, ObjectMapper)}.
*
* @author Michael Reiche
*/

View File

@@ -38,7 +38,7 @@ import com.fasterxml.jackson.databind.ObjectMapper;
* There can only be one propertyValueConverter for a property. Although there maybe be multiple annotations,
* getConverter(property) only returns one converter (a ChainedPropertyValueConverter might be useful). Note that
* valueConversions.afterPropertiesSet() (see
* {@link org.springframework.data.couchbase.config.AbstractCouchbaseConfiguration#customConversions(CryptoManager)}
* {@link org.springframework.data.couchbase.config.AbstractCouchbaseConfiguration#customConversions(CryptoManager, ObjectMapper)}
* encapsulates this in a CachingPropertyValueConverterFactory which caches by 'property'. Although
* CachingPropertyValueConverterFactory does have the functionality to cache by a type, it only caches by the type
* specified on an @ValueConverter annotation.To avoid having identical converter instances for each instance of a class

View File

@@ -29,7 +29,7 @@ import com.fasterxml.jackson.databind.ObjectMapper;
/**
* Reading Converter factory for Enums. This differs from the one provided in org.springframework.core.convert.support
* by getting the result from the jackson objectmapper (which will process @JsonValue annotations) This is registered in
* {@link org.springframework.data.couchbase.config.AbstractCouchbaseConfiguration#customConversions(CryptoManager)}.
* {@link org.springframework.data.couchbase.config.AbstractCouchbaseConfiguration#customConversions(CryptoManager, ObjectMapper)}.
* This will take precedence over {@link org.springframework.core.convert.support.IntegerToEnumConverterFactory}
*
* @author Michael Reiche

View File

@@ -869,7 +869,7 @@ public class MappingCouchbaseConverter extends AbstractCouchbaseConverter implem
/**
* This does process PropertyValueConversions
*
* @param value
* @param property
* @param accessor
* @param processValueConverter
* @return

View File

@@ -27,7 +27,7 @@ import com.fasterxml.jackson.databind.ObjectMapper;
/**
* Reading Converter factory for Enums. This differs from the one provided in org.springframework.core.convert.support
* by getting the result from the jackson objectmapper (which will process @JsonValue annotations) This is registered in
* {@link org.springframework.data.couchbase.config.AbstractCouchbaseConfiguration#customConversions(CryptoManager)}.
* {@link org.springframework.data.couchbase.config.AbstractCouchbaseConfiguration#customConversions(CryptoManager, ObjectMapper)}.
* This will take precedence over {@link org.springframework.core.convert.support.StringToEnumConverterFactory}
*
* @author Michael Reiche