Add Javadoc.

This commit is contained in:
John Blum
2018-05-24 18:13:10 -07:00
parent 83dbec58be
commit b5216f2bc4
2 changed files with 16 additions and 2 deletions

View File

@@ -26,9 +26,11 @@ import org.junit.BeforeClass;
import org.springframework.data.gemfire.GemfireUtils;
/**
* The IntegrationTestsSupport class...
* The {@linm IntegrationTestsSupport} class is an abstract base class supporting integration tests
* with either Apache Geode or Pivotal GemFire in a Spring context.
*
* @author John Blum
* @see org.apache.geode.cache.GemFireCache
* @since 1.0.0
*/
@SuppressWarnings("unused")

View File

@@ -45,9 +45,21 @@ import org.springframework.data.gemfire.tests.integration.ClientServerIntegratio
import org.springframework.util.Assert;
/**
* The SubscriptionEnabledClientServerIntegrationTestConfiguration class...
* The {@link SubscriptionEnabledClientServerIntegrationTestConfiguration} class is a base Spring {@link Configuration}
* class supporting Apache Geode or Pivotal GemFire client/server integration tests when subscriptions are enabled.
*
* Subscriptions must be enabled when {@literal Registering Interests} or {@literal Continuous Queries (CQ)}.
*
* @author John Blum
* @see org.apache.geode.cache.Region
* @see org.apache.geode.cache.client.ClientCache
* @see org.apache.geode.cache.client.Pool
* @see org.apache.geode.cache.client.PoolManager
* @see org.apache.geode.management.membership.ClientMembership
* @see org.apache.geode.management.membership.ClientMembershipListenerAdapter
* @see org.springframework.beans.factory.config.BeanPostProcessor
* @see org.springframework.data.gemfire.config.annotation.ClientCacheConfigurer
* @see org.springframework.data.gemfire.tests.integration.ClientServerIntegrationTestsSupport
* @since 1.0.0
*/
@Configuration