Edit and fix Javadoc to comply with Java 17, Javadoc syntax.

This commit is contained in:
John Blum
2022-01-27 17:42:44 -08:00
parent a069263ca5
commit 17f7e644b7
3 changed files with 6 additions and 6 deletions

View File

@@ -53,9 +53,9 @@ import org.slf4j.LoggerFactory;
* providing the ability to reload/refresh the context at some point later during runtime.
*
* DISCLAIMER: Currently, this {@link ApplicationContext} implementation (and extension) is being used exclusively for
* testing and experimental (R&D) purposes. It was designed around Apache Geode's forced-disconnect / auto-reconnect
* functionality, providing support for this behavior inside a Spring context. Specifically, this concern is only
* applicable when using Spring Boot to configure and bootstrap Apache Geode peer member
* testing and experimental ({@literal R&D}) purposes. It was designed around Apache Geode's forced-disconnect
* / auto-reconnect functionality, providing support for this behavior inside a Spring context. Specifically, this
* concern is only applicable when using Spring Boot to configure and bootstrap Apache Geode peer member
* {@link org.apache.geode.cache.Cache} applications, such as when annotating your Spring Boot application with
* SDG's {@link PeerCacheApplication} annotation. This {@link ApplicationContext} implementation is not recommended for
* use in Production Systems/Applications (yet).

View File

@@ -47,7 +47,7 @@ import org.springframework.util.Assert;
/**
* A {@link CacheDataImporterExporter} implementation using the {@literal Decorator Software Design Pattern} to wrap
* an existing {@link CacheDataImporterExporter} in order to {@literal decorate} the cache (i.e. {@link Region}) data
* import & export operations, making them Spring {@link ApplicationContext}, {@link Environment}, {@link Lifecycle},
* import and export operations, making them Spring {@link ApplicationContext}, {@link Environment}, {@link Lifecycle},
* {@link ResourceLoader} aware and capable.
*
* This wrapper {@literal decorates} the Apache Geode cache {@link Region} data import operation enabling it
@@ -98,7 +98,7 @@ public class LifecycleAwareCacheDataImporterExporter implements CacheDataImporte
/**
* Constructs a new instance of the {@link LifecycleAwareCacheDataImporterExporter} initialized with the given,
* target {@link CacheDataImporterExporter} that is wrapped by this implementation to decorate all cache import
* & export data operations in order to make them {@link Lifecycle} aware and capable.
* and export data operations in order to make them {@link Lifecycle} aware and capable.
*
* @param importerExporter {@link CacheDataImporterExporter} wrapped by this implementation to {@literal decorate}
* the cache data import/export operations to be {@link Lifecycle} aware and capable; must not be {@literal null}.

View File

@@ -331,7 +331,7 @@ public abstract class ResourceCapableCacheDataImporterExporter extends AbstractC
*
* This constructor initializes the SpEL objects used to parse and evaluate SpEL expressions in order to
* fully qualify and resolve {@link Resource} {@link String locations} defined as properties
* in Spring Boot {@literal application.properties} for Import & Export {@link Resource Resources}.
* in Spring Boot {@literal application.properties} for Import and Export {@link Resource Resources}.
*
* @see #newExpressionParser()
* @see #newEvaluationContextBuilder()