From 7420b22141ebff14cc8fe31d2a8df0913e2dbf33 Mon Sep 17 00:00:00 2001 From: John Blum Date: Tue, 4 Feb 2020 11:28:23 -0800 Subject: [PATCH] Edit Javadoc. Format source code. Optimize imports. --- ...singClientProxyRegionIntegrationTests.java | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/spring-session-data-geode/src/integration-test/java/org/springframework/session/data/gemfire/ConcurrentSessionOperationsUsingClientProxyRegionIntegrationTests.java b/spring-session-data-geode/src/integration-test/java/org/springframework/session/data/gemfire/ConcurrentSessionOperationsUsingClientProxyRegionIntegrationTests.java index f1141e4..5d2913e 100644 --- a/spring-session-data-geode/src/integration-test/java/org/springframework/session/data/gemfire/ConcurrentSessionOperationsUsingClientProxyRegionIntegrationTests.java +++ b/spring-session-data-geode/src/integration-test/java/org/springframework/session/data/gemfire/ConcurrentSessionOperationsUsingClientProxyRegionIntegrationTests.java @@ -13,7 +13,6 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package org.springframework.session.data.gemfire; import java.io.IOException; @@ -21,21 +20,35 @@ import java.io.IOException; import org.junit.BeforeClass; import org.junit.runner.RunWith; +import org.apache.geode.cache.Region; +import org.apache.geode.cache.client.ClientCache; import org.apache.geode.cache.client.ClientRegionShortcut; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import org.springframework.data.gemfire.config.annotation.CacheServerApplication; import org.springframework.data.gemfire.config.annotation.ClientCacheApplication; +import org.springframework.session.Session; import org.springframework.session.data.gemfire.config.annotation.web.http.EnableGemFireHttpSession; import org.springframework.session.data.gemfire.config.annotation.web.http.GemFireHttpSessionConfiguration; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringRunner; /** - * The ConcurrentSessionOperationsUsingClientProxyRegionIntegrationTests class... + * Integration Tests testing the concurrent access of a {@link Session} stored in an Apache Geode + * {@link ClientCache client} {@link ClientRegionShortcut#PROXY} {@link Region}. * * @author John Blum - * @since 1.0.0 + * @see org.junit.Test + * @see org.apache.geode.cache.Region + * @see org.apache.geode.cache.client.ClientCache + * @see org.springframework.context.annotation.AnnotationConfigApplicationContext + * @see org.springframework.data.gemfire.config.annotation.CacheServerApplication + * @see org.springframework.data.gemfire.config.annotation.ClientCacheApplication + * @see org.springframework.session.Session + * @see org.springframework.session.data.gemfire.AbstractConcurrentSessionOperationsIntegrationTests + * @see org.springframework.test.context.ContextConfiguration + * @see org.springframework.test.context.junit4.SpringRunner + * @since 2.1.x */ @RunWith(SpringRunner.class) @ContextConfiguration(