Edit and polish Javadoc.

This commit is contained in:
John Blum
2018-01-26 15:10:52 -08:00
parent 58a8307284
commit 5c86036a01
4 changed files with 14 additions and 6 deletions

View File

@@ -49,7 +49,6 @@ import org.springframework.data.gemfire.client.ClientCacheFactoryBean;
* @since 1.5.0
*/
@Configuration
//@Conditional(CacheCondition.class)
@ConditionalOnBean({ CacheFactoryBean.class, Cache.class, ClientCacheFactoryBean.class, ClientCache.class })
@ConditionalOnClass(GemfireCacheManager.class)
@ConditionalOnMissingBean(CacheManager.class)

View File

@@ -24,9 +24,14 @@ import org.springframework.data.gemfire.client.ClientCacheFactoryBean;
import org.springframework.data.gemfire.config.annotation.ClientCacheApplication;
/**
* The GeodeClientCacheAutoConfiguration class...
* Spring Boot {@link EnableAutoConfiguration auto-configuration} for bootstrapping an Apache Geode {@link ClientCache}
* instance constructed, configured and initialized with Spring Data for Apache Geode.
*
* @author John Blum
* @see org.apache.geode.cache.client.ClientCache
* @see org.springframework.context.annotation.Configuration
* @see org.springframework.data.gemfire.client.ClientCacheFactoryBean
* @see org.springframework.data.gemfire.config.annotation.ClientCacheApplication
* @since 1.0.0
*/
@Configuration

View File

@@ -41,11 +41,14 @@ import org.springframework.data.gemfire.repository.support.GemfireRepositoryFact
*
* @author John Blum
* @since 1.0.0
* @see GeodeRepositoriesAutoConfigurationRegistrar
* @see org.springframework.context.annotation.Configuration
* @see org.springframework.data.gemfire.repository.config.EnableGemfireRepositories
* @see org.apache.geode.cache.Cache
* @see org.apache.geode.cache.client.ClientCache
* @see org.springframework.boot.data.geode.autoconfigure.GeodeRepositoriesAutoConfigurationRegistrar
* @see org.springframework.context.annotation.Configuration
* @see org.springframework.data.gemfire.repository.GemfireRepository
* @see org.springframework.data.gemfire.repository.config.EnableGemfireRepositories
* @see org.springframework.data.gemfire.repository.config.GemfireRepositoryConfigurationExtension
* @see org.springframework.data.gemfire.repository.support.GemfireRepositoryFactoryBean
*/
@Configuration
@ConditionalOnBean({ Cache.class, ClientCache.class })

View File

@@ -29,9 +29,10 @@ import org.springframework.data.repository.config.RepositoryConfigurationExtensi
*
* @author John Blum
* @see org.springframework.boot.autoconfigure.data.AbstractRepositoryConfigurationSourceSupport
* @see org.springframework.boot.data.geode.autoconfigure.GeodeRepositoriesAutoConfiguration
* @see org.springframework.data.gemfire.repository.config.EnableGemfireRepositories
* @see org.springframework.data.gemfire.repository.config.GemfireRepositoryConfigurationExtension
* @since 1.5.0
* @since 1.0.0
*/
public class GeodeRepositoriesAutoConfigurationRegistrar
extends AbstractRepositoryConfigurationSourceSupport {