You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by jb...@apache.org on 2018/08/22 17:07:08 UTC

[geode] branch develop updated: GEODE-5597: Adds more exhaustive verification of assembly content. (#2359)

This is an automated email from the ASF dual-hosted git repository.

jbarrett pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new c1fd530  GEODE-5597: Adds more exhaustive verification of assembly content. (#2359)
c1fd530 is described below

commit c1fd530d56f00c107fc60bb1d6f08876708593f6
Author: Jacob Barrett <jb...@pivotal.io>
AuthorDate: Wed Aug 22 10:07:03 2018 -0700

    GEODE-5597: Adds more exhaustive verification of assembly content. (#2359)
---
 .../geode/AssemblyContentsIntegrationTest.java     |   95 ++
 .../integrationTest/resources/assembly_content.txt | 1245 ++++++++++++++++++++
 2 files changed, 1340 insertions(+)

diff --git a/geode-assembly/src/integrationTest/java/org/apache/geode/AssemblyContentsIntegrationTest.java b/geode-assembly/src/integrationTest/java/org/apache/geode/AssemblyContentsIntegrationTest.java
new file mode 100644
index 0000000..91119d0
--- /dev/null
+++ b/geode-assembly/src/integrationTest/java/org/apache/geode/AssemblyContentsIntegrationTest.java
@@ -0,0 +1,95 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more contributor license
+ * agreements. See the NOTICE file distributed with this work for additional information regarding
+ * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance with the License. You may obtain a
+ * copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software distributed under the License
+ * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
+ * or implied. See the License for the specific language governing permissions and limitations under
+ * the License.
+ */
+package org.apache.geode;
+
+import static org.junit.Assert.assertTrue;
+
+import java.io.File;
+import java.io.IOException;
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.nio.file.Paths;
+import java.util.Collection;
+import java.util.Set;
+import java.util.TreeSet;
+import java.util.stream.Collectors;
+
+import org.apache.commons.io.FileUtils;
+import org.junit.Before;
+import org.junit.Test;
+import org.junit.experimental.categories.Category;
+
+import org.apache.geode.test.junit.categories.RestAPITest;
+import org.apache.geode.util.test.TestUtil;
+
+@Category({RestAPITest.class})
+public class AssemblyContentsIntegrationTest {
+
+  private static final String VERSION_PATTERN = "[0-9-_.v]{3,}.*\\.jar$";
+  private static final String GEODE_HOME = System.getenv("GEODE_HOME");
+  private Set<String> expectedAssemblyContent;
+
+  @Before
+  public void loadExpectedAssemblyContent() throws IOException {
+    String assemblyContent =
+        TestUtil.getResourcePath(AssemblyContentsIntegrationTest.class, "/assembly_content.txt");
+
+    expectedAssemblyContent = Files.lines(Paths.get(assemblyContent)).collect(Collectors.toSet());
+  }
+
+  @Test
+  public void verifyAssemblyContents() throws IOException {
+    Set<String> currentAssemblyContent = getAssemblyContent();
+
+    Files.write(Paths.get("assembly_content.txt"), currentAssemblyContent);
+
+    Set<String> newAssemblyContent = new TreeSet<>(currentAssemblyContent);
+    newAssemblyContent.removeAll(expectedAssemblyContent);
+    Set<String> missingAssemblyContent = new TreeSet<>(expectedAssemblyContent);
+    missingAssemblyContent.removeAll(currentAssemblyContent);
+
+    String message =
+        "The assembly contents have changed. Verify dependencies."
+            + "\nWhen fixed, copy geode-assembly/build/integrationTest/assembly_content.txt"
+            + "\nto src/integrationTest/resources/assembly_content.txt"
+            + "\nRemoved Content\n--------------\n"
+            + String.join("\n", missingAssemblyContent) + "\n\nAdded Content\n--------------\n"
+            + String.join("\n", newAssemblyContent) + "\n\n";
+
+    assertTrue(message, expectedAssemblyContent.equals(currentAssemblyContent));
+  }
+
+  /**
+   * Find all of the jars bundled with the project. Key is the name of the jar, value is the path.
+   */
+  private Set<String> getAssemblyContent() {
+    File geodeHomeDirectory = new File(GEODE_HOME);
+    Path geodeHomePath = Paths.get(GEODE_HOME);
+
+    assertTrue(
+        "Please set the GEODE_HOME environment variable to the product installation directory.",
+        geodeHomeDirectory.isDirectory());
+
+    Collection<File> contents = FileUtils.listFiles(geodeHomeDirectory, null, true);
+    Set<String> sortedContent = new TreeSet<>();
+    contents.forEach(content -> {
+      Path path = Paths.get(content.getPath());
+      sortedContent.add(geodeHomePath.relativize(path).toString());
+    });
+
+    return sortedContent;
+  }
+
+}
diff --git a/geode-assembly/src/integrationTest/resources/assembly_content.txt b/geode-assembly/src/integrationTest/resources/assembly_content.txt
new file mode 100644
index 0000000..d8eddbc
--- /dev/null
+++ b/geode-assembly/src/integrationTest/resources/assembly_content.txt
@@ -0,0 +1,1245 @@
+LICENSE
+NOTICE
+README.md
+bin/gfsh
+bin/gfsh-completion.bash
+bin/gfsh.bat
+config/cache.xml
+config/gemfire.properties
+config/log4j2.xml
+javadoc/allclasses-frame.html
+javadoc/allclasses-noframe.html
+javadoc/constant-values.html
+javadoc/deprecated-list.html
+javadoc/help-doc.html
+javadoc/index-all.html
+javadoc/index.html
+javadoc/javadoc-images/BucketAdvisor-state.png
+javadoc/javadoc-images/ConnectionManagerImpl.dia
+javadoc/javadoc-images/ConnectionManagerImpl.png
+javadoc/javadoc-images/QueueManagerImpl.dia
+javadoc/javadoc-images/QueueManagerImpl.png
+javadoc/javadoc-images/class-hierarchy.fig
+javadoc/javadoc-images/class-hierarchy.gif
+javadoc/javadoc-images/client_static_diagram.png
+javadoc/javadoc-images/data-serialization-exceptions.fig
+javadoc/javadoc-images/data-serialization-exceptions.gif
+javadoc/javadoc-images/distribution-managers.fig
+javadoc/javadoc-images/distribution-managers.gif
+javadoc/javadoc-images/elder.fig
+javadoc/javadoc-images/elder.jpg
+javadoc/javadoc-images/entry-life-cycle.fig
+javadoc/javadoc-images/entry-life-cycle.gif
+javadoc/javadoc-images/eventmatrix.xls
+javadoc/javadoc-images/example-cache.xml
+javadoc/javadoc-images/example-client-cache.xml
+javadoc/javadoc-images/example2-cache.xml
+javadoc/javadoc-images/example3-cache.xml
+javadoc/javadoc-images/extensible-hashing.fig
+javadoc/javadoc-images/extensible-hashing.gif
+javadoc/javadoc-images/health-classes.gif
+javadoc/javadoc-images/jcache-get-flow.fig
+javadoc/javadoc-images/jcache-get-flow.pdf
+javadoc/javadoc-images/jcache-put-flow.fig
+javadoc/javadoc-images/jcache-put-flow.pdf
+javadoc/javadoc-images/jcache-update-message-flow.fig
+javadoc/javadoc-images/jcache-update-message-flow.pdf
+javadoc/javadoc-images/merge-log-files.fig
+javadoc/javadoc-images/merge-log-files.gif
+javadoc/javadoc-images/partitioned-regions.fig
+javadoc/javadoc-images/partitioned-regions.gif
+javadoc/javadoc-images/turks.fig
+javadoc/javadoc-images/turks.jpg
+javadoc/org/apache/geode/CancelCriterion.html
+javadoc/org/apache/geode/CancelException.html
+javadoc/org/apache/geode/CanonicalInstantiator.html
+javadoc/org/apache/geode/CopyException.html
+javadoc/org/apache/geode/CopyHelper.html
+javadoc/org/apache/geode/DataSerializable.Replaceable.html
+javadoc/org/apache/geode/DataSerializable.html
+javadoc/org/apache/geode/DataSerializer.html
+javadoc/org/apache/geode/Delta.html
+javadoc/org/apache/geode/DeltaSerializationException.html
+javadoc/org/apache/geode/DeltaTestImpl.html
+javadoc/org/apache/geode/ExpirationDetector.html
+javadoc/org/apache/geode/ForcedDisconnectException.html
+javadoc/org/apache/geode/GemFireCacheException.html
+javadoc/org/apache/geode/GemFireCheckedException.html
+javadoc/org/apache/geode/GemFireConfigException.html
+javadoc/org/apache/geode/GemFireException.html
+javadoc/org/apache/geode/GemFireIOException.html
+javadoc/org/apache/geode/GemFireRethrowable.html
+javadoc/org/apache/geode/IncompatibleSystemException.html
+javadoc/org/apache/geode/Instantiator.html
+javadoc/org/apache/geode/InternalGemFireError.html
+javadoc/org/apache/geode/InternalGemFireException.html
+javadoc/org/apache/geode/InvalidDeltaException.html
+javadoc/org/apache/geode/InvalidValueException.html
+javadoc/org/apache/geode/InvalidVersionException.html
+javadoc/org/apache/geode/LogWriter.html
+javadoc/org/apache/geode/NoSystemException.html
+javadoc/org/apache/geode/OutOfOffHeapMemoryException.html
+javadoc/org/apache/geode/SerializationException.html
+javadoc/org/apache/geode/StatisticDescriptor.html
+javadoc/org/apache/geode/Statistics.html
+javadoc/org/apache/geode/StatisticsFactory.html
+javadoc/org/apache/geode/StatisticsType.html
+javadoc/org/apache/geode/StatisticsTypeFactory.html
+javadoc/org/apache/geode/SystemConnectException.html
+javadoc/org/apache/geode/SystemFailure.html
+javadoc/org/apache/geode/SystemIsRunningException.html
+javadoc/org/apache/geode/ToDataException.html
+javadoc/org/apache/geode/UncreatedSystemException.html
+javadoc/org/apache/geode/UnmodifiableException.html
+javadoc/org/apache/geode/UnstartedSystemException.html
+javadoc/org/apache/geode/admin/AdminConfig.Entry.html
+javadoc/org/apache/geode/admin/AdminConfig.html
+javadoc/org/apache/geode/admin/AdminDistributedSystem.html
+javadoc/org/apache/geode/admin/AdminDistributedSystemFactory.html
+javadoc/org/apache/geode/admin/AdminException.html
+javadoc/org/apache/geode/admin/AdminXmlException.html
+javadoc/org/apache/geode/admin/Alert.html
+javadoc/org/apache/geode/admin/AlertLevel.html
+javadoc/org/apache/geode/admin/AlertListener.html
+javadoc/org/apache/geode/admin/BackupStatus.html
+javadoc/org/apache/geode/admin/CacheDoesNotExistException.html
+javadoc/org/apache/geode/admin/CacheHealthConfig.html
+javadoc/org/apache/geode/admin/CacheServer.html
+javadoc/org/apache/geode/admin/CacheServerConfig.html
+javadoc/org/apache/geode/admin/CacheVm.html
+javadoc/org/apache/geode/admin/CacheVmConfig.html
+javadoc/org/apache/geode/admin/ConfigurationParameter.html
+javadoc/org/apache/geode/admin/DistributedSystemConfig.ConfigListener.html
+javadoc/org/apache/geode/admin/DistributedSystemConfig.html
+javadoc/org/apache/geode/admin/DistributedSystemHealthConfig.html
+javadoc/org/apache/geode/admin/DistributionLocator.html
+javadoc/org/apache/geode/admin/DistributionLocatorConfig.html
+javadoc/org/apache/geode/admin/GemFireHealth.Health.html
+javadoc/org/apache/geode/admin/GemFireHealth.html
+javadoc/org/apache/geode/admin/GemFireHealthConfig.html
+javadoc/org/apache/geode/admin/GemFireMemberStatus.html
+javadoc/org/apache/geode/admin/ManagedEntity.html
+javadoc/org/apache/geode/admin/ManagedEntityConfig.html
+javadoc/org/apache/geode/admin/MemberHealthConfig.html
+javadoc/org/apache/geode/admin/OperationCancelledException.html
+javadoc/org/apache/geode/admin/RegionNotFoundException.html
+javadoc/org/apache/geode/admin/RegionSubRegionSnapshot.html
+javadoc/org/apache/geode/admin/RuntimeAdminException.html
+javadoc/org/apache/geode/admin/Statistic.html
+javadoc/org/apache/geode/admin/StatisticResource.html
+javadoc/org/apache/geode/admin/SystemMember.html
+javadoc/org/apache/geode/admin/SystemMemberBridgeServer.html
+javadoc/org/apache/geode/admin/SystemMemberCache.html
+javadoc/org/apache/geode/admin/SystemMemberCacheEvent.html
+javadoc/org/apache/geode/admin/SystemMemberCacheListener.html
+javadoc/org/apache/geode/admin/SystemMemberCacheServer.html
+javadoc/org/apache/geode/admin/SystemMemberRegion.html
+javadoc/org/apache/geode/admin/SystemMemberRegionEvent.html
+javadoc/org/apache/geode/admin/SystemMemberType.html
+javadoc/org/apache/geode/admin/SystemMembershipEvent.html
+javadoc/org/apache/geode/admin/SystemMembershipListener.html
+javadoc/org/apache/geode/admin/UnmodifiableConfigurationException.html
+javadoc/org/apache/geode/admin/jmx/Agent.html
+javadoc/org/apache/geode/admin/jmx/AgentConfig.html
+javadoc/org/apache/geode/admin/jmx/AgentFactory.html
+javadoc/org/apache/geode/admin/jmx/package-frame.html
+javadoc/org/apache/geode/admin/jmx/package-summary.html
+javadoc/org/apache/geode/admin/jmx/package-tree.html
+javadoc/org/apache/geode/admin/package-frame.html
+javadoc/org/apache/geode/admin/package-summary.html
+javadoc/org/apache/geode/admin/package-tree.html
+javadoc/org/apache/geode/annotations/Experimental.html
+javadoc/org/apache/geode/annotations/TestingOnly.html
+javadoc/org/apache/geode/annotations/package-frame.html
+javadoc/org/apache/geode/annotations/package-summary.html
+javadoc/org/apache/geode/annotations/package-tree.html
+javadoc/org/apache/geode/cache/AttributesFactory.html
+javadoc/org/apache/geode/cache/AttributesMutator.html
+javadoc/org/apache/geode/cache/Cache.html
+javadoc/org/apache/geode/cache/CacheCallback.html
+javadoc/org/apache/geode/cache/CacheClosedException.html
+javadoc/org/apache/geode/cache/CacheEvent.html
+javadoc/org/apache/geode/cache/CacheException.html
+javadoc/org/apache/geode/cache/CacheExistsException.html
+javadoc/org/apache/geode/cache/CacheFactory.html
+javadoc/org/apache/geode/cache/CacheListener.html
+javadoc/org/apache/geode/cache/CacheLoader.html
+javadoc/org/apache/geode/cache/CacheLoaderException.html
+javadoc/org/apache/geode/cache/CacheRuntimeException.html
+javadoc/org/apache/geode/cache/CacheStatistics.html
+javadoc/org/apache/geode/cache/CacheTransactionManager.html
+javadoc/org/apache/geode/cache/CacheWriter.html
+javadoc/org/apache/geode/cache/CacheWriterException.html
+javadoc/org/apache/geode/cache/CacheXmlException.html
+javadoc/org/apache/geode/cache/ClientSession.html
+javadoc/org/apache/geode/cache/CommitConflictException.html
+javadoc/org/apache/geode/cache/CommitDistributionException.html
+javadoc/org/apache/geode/cache/CommitIncompleteException.html
+javadoc/org/apache/geode/cache/CustomExpiry.html
+javadoc/org/apache/geode/cache/DataPolicy.html
+javadoc/org/apache/geode/cache/Declarable.html
+javadoc/org/apache/geode/cache/DiskAccessException.html
+javadoc/org/apache/geode/cache/DiskStore.html
+javadoc/org/apache/geode/cache/DiskStoreFactory.html
+javadoc/org/apache/geode/cache/DiskWriteAttributes.html
+javadoc/org/apache/geode/cache/DiskWriteAttributesFactory.html
+javadoc/org/apache/geode/cache/DuplicatePrimaryPartitionException.html
+javadoc/org/apache/geode/cache/DynamicRegionFactory.Config.html
+javadoc/org/apache/geode/cache/DynamicRegionFactory.html
+javadoc/org/apache/geode/cache/DynamicRegionListener.html
+javadoc/org/apache/geode/cache/EntryDestroyedException.html
+javadoc/org/apache/geode/cache/EntryEvent.html
+javadoc/org/apache/geode/cache/EntryExistsException.html
+javadoc/org/apache/geode/cache/EntryNotFoundException.html
+javadoc/org/apache/geode/cache/EntryOperation.html
+javadoc/org/apache/geode/cache/EvictionAction.html
+javadoc/org/apache/geode/cache/EvictionAlgorithm.html
+javadoc/org/apache/geode/cache/EvictionAttributes.html
+javadoc/org/apache/geode/cache/EvictionAttributesMutator.html
+javadoc/org/apache/geode/cache/ExpirationAction.html
+javadoc/org/apache/geode/cache/ExpirationAttributes.html
+javadoc/org/apache/geode/cache/FailedSynchronizationException.html
+javadoc/org/apache/geode/cache/FixedPartitionAttributes.html
+javadoc/org/apache/geode/cache/FixedPartitionResolver.html
+javadoc/org/apache/geode/cache/GatewayConfigurationException.html
+javadoc/org/apache/geode/cache/GatewayException.html
+javadoc/org/apache/geode/cache/GemFireCache.html
+javadoc/org/apache/geode/cache/IncompatibleVersionException.html
+javadoc/org/apache/geode/cache/InterestPolicy.html
+javadoc/org/apache/geode/cache/InterestRegistrationEvent.html
+javadoc/org/apache/geode/cache/InterestRegistrationListener.html
+javadoc/org/apache/geode/cache/InterestResultPolicy.html
+javadoc/org/apache/geode/cache/LoaderHelper.html
+javadoc/org/apache/geode/cache/LossAction.html
+javadoc/org/apache/geode/cache/LowMemoryException.html
+javadoc/org/apache/geode/cache/MembershipAttributes.html
+javadoc/org/apache/geode/cache/MirrorType.html
+javadoc/org/apache/geode/cache/NoQueueServersAvailableException.html
+javadoc/org/apache/geode/cache/NoSubscriptionServersAvailableException.html
+javadoc/org/apache/geode/cache/Operation.html
+javadoc/org/apache/geode/cache/OperationAbortedException.html
+javadoc/org/apache/geode/cache/PartitionAttributes.html
+javadoc/org/apache/geode/cache/PartitionAttributesFactory.html
+javadoc/org/apache/geode/cache/PartitionResolver.html
+javadoc/org/apache/geode/cache/PartitionedRegionDistributionException.html
+javadoc/org/apache/geode/cache/PartitionedRegionStorageException.html
+javadoc/org/apache/geode/cache/Region.Entry.html
+javadoc/org/apache/geode/cache/Region.html
+javadoc/org/apache/geode/cache/RegionAccessException.html
+javadoc/org/apache/geode/cache/RegionAttributes.html
+javadoc/org/apache/geode/cache/RegionDestroyedException.html
+javadoc/org/apache/geode/cache/RegionDistributionException.html
+javadoc/org/apache/geode/cache/RegionEvent.html
+javadoc/org/apache/geode/cache/RegionExistsException.html
+javadoc/org/apache/geode/cache/RegionFactory.html
+javadoc/org/apache/geode/cache/RegionMembershipListener.html
+javadoc/org/apache/geode/cache/RegionReinitializedException.html
+javadoc/org/apache/geode/cache/RegionRoleException.html
+javadoc/org/apache/geode/cache/RegionRoleListener.html
+javadoc/org/apache/geode/cache/RegionService.html
+javadoc/org/apache/geode/cache/RegionShortcut.html
+javadoc/org/apache/geode/cache/RequiredRoles.html
+javadoc/org/apache/geode/cache/ResourceException.html
+javadoc/org/apache/geode/cache/ResumptionAction.html
+javadoc/org/apache/geode/cache/RoleEvent.html
+javadoc/org/apache/geode/cache/RoleException.html
+javadoc/org/apache/geode/cache/Scope.html
+javadoc/org/apache/geode/cache/SerializedCacheValue.html
+javadoc/org/apache/geode/cache/StatisticsDisabledException.html
+javadoc/org/apache/geode/cache/SubscriptionAttributes.html
+javadoc/org/apache/geode/cache/SynchronizationCommitConflictException.html
+javadoc/org/apache/geode/cache/TimeoutException.html
+javadoc/org/apache/geode/cache/TransactionDataNodeHasDepartedException.html
+javadoc/org/apache/geode/cache/TransactionDataNotColocatedException.html
+javadoc/org/apache/geode/cache/TransactionDataRebalancedException.html
+javadoc/org/apache/geode/cache/TransactionEvent.html
+javadoc/org/apache/geode/cache/TransactionException.html
+javadoc/org/apache/geode/cache/TransactionId.html
+javadoc/org/apache/geode/cache/TransactionInDoubtException.html
+javadoc/org/apache/geode/cache/TransactionListener.html
+javadoc/org/apache/geode/cache/TransactionWriter.html
+javadoc/org/apache/geode/cache/TransactionWriterException.html
+javadoc/org/apache/geode/cache/UnsupportedOperationInTransactionException.html
+javadoc/org/apache/geode/cache/UnsupportedVersionException.html
+javadoc/org/apache/geode/cache/VersionException.html
+javadoc/org/apache/geode/cache/asyncqueue/AsyncEvent.html
+javadoc/org/apache/geode/cache/asyncqueue/AsyncEventListener.html
+javadoc/org/apache/geode/cache/asyncqueue/AsyncEventQueue.html
+javadoc/org/apache/geode/cache/asyncqueue/AsyncEventQueueFactory.html
+javadoc/org/apache/geode/cache/asyncqueue/package-frame.html
+javadoc/org/apache/geode/cache/asyncqueue/package-summary.html
+javadoc/org/apache/geode/cache/asyncqueue/package-tree.html
+javadoc/org/apache/geode/cache/client/AllConnectionsInUseException.html
+javadoc/org/apache/geode/cache/client/ClientCache.html
+javadoc/org/apache/geode/cache/client/ClientCacheFactory.html
+javadoc/org/apache/geode/cache/client/ClientNotReadyException.html
+javadoc/org/apache/geode/cache/client/ClientRegionFactory.html
+javadoc/org/apache/geode/cache/client/ClientRegionShortcut.html
+javadoc/org/apache/geode/cache/client/NoAvailableLocatorsException.html
+javadoc/org/apache/geode/cache/client/NoAvailableServersException.html
+javadoc/org/apache/geode/cache/client/Pool.html
+javadoc/org/apache/geode/cache/client/PoolFactory.html
+javadoc/org/apache/geode/cache/client/PoolManager.html
+javadoc/org/apache/geode/cache/client/ServerConnectivityException.html
+javadoc/org/apache/geode/cache/client/ServerOperationException.html
+javadoc/org/apache/geode/cache/client/ServerRefusedConnectionException.html
+javadoc/org/apache/geode/cache/client/SubscriptionNotEnabledException.html
+javadoc/org/apache/geode/cache/client/package-frame.html
+javadoc/org/apache/geode/cache/client/package-summary.html
+javadoc/org/apache/geode/cache/client/package-tree.html
+javadoc/org/apache/geode/cache/configuration/CacheConfig.AsyncEventQueue.html
+javadoc/org/apache/geode/cache/configuration/CacheConfig.CacheServer.html
+javadoc/org/apache/geode/cache/configuration/CacheConfig.GatewayHub.Gateway.GatewayEndpoint.html
+javadoc/org/apache/geode/cache/configuration/CacheConfig.GatewayHub.Gateway.GatewayQueue.html
+javadoc/org/apache/geode/cache/configuration/CacheConfig.GatewayHub.Gateway.html
+javadoc/org/apache/geode/cache/configuration/CacheConfig.GatewayHub.html
+javadoc/org/apache/geode/cache/configuration/CacheConfig.GatewayReceiver.html
+javadoc/org/apache/geode/cache/configuration/CacheConfig.GatewaySender.html
+javadoc/org/apache/geode/cache/configuration/CacheConfig.html
+javadoc/org/apache/geode/cache/configuration/CacheElement.html
+javadoc/org/apache/geode/cache/configuration/CacheTransactionManagerType.html
+javadoc/org/apache/geode/cache/configuration/ClassNameType.html
+javadoc/org/apache/geode/cache/configuration/DeclarableType.html
+javadoc/org/apache/geode/cache/configuration/DiskDirType.html
+javadoc/org/apache/geode/cache/configuration/DiskDirsType.html
+javadoc/org/apache/geode/cache/configuration/DiskStoreType.html
+javadoc/org/apache/geode/cache/configuration/DynamicRegionFactoryType.html
+javadoc/org/apache/geode/cache/configuration/EnumActionDestroyOverflow.html
+javadoc/org/apache/geode/cache/configuration/EnumReadableWritable.html
+javadoc/org/apache/geode/cache/configuration/ExpirationAttributesType.html
+javadoc/org/apache/geode/cache/configuration/FunctionServiceType.html
+javadoc/org/apache/geode/cache/configuration/JndiBindingsType.JndiBinding.ConfigProperty.html
+javadoc/org/apache/geode/cache/configuration/JndiBindingsType.JndiBinding.html
+javadoc/org/apache/geode/cache/configuration/JndiBindingsType.html
+javadoc/org/apache/geode/cache/configuration/ObjectType.html
+javadoc/org/apache/geode/cache/configuration/ParameterType.html
+javadoc/org/apache/geode/cache/configuration/PdxType.html
+javadoc/org/apache/geode/cache/configuration/PoolType.Locator.html
+javadoc/org/apache/geode/cache/configuration/PoolType.Server.html
+javadoc/org/apache/geode/cache/configuration/PoolType.html
+javadoc/org/apache/geode/cache/configuration/RegionAttributesDataPolicy.html
+javadoc/org/apache/geode/cache/configuration/RegionAttributesIndexUpdateType.html
+javadoc/org/apache/geode/cache/configuration/RegionAttributesMirrorType.html
+javadoc/org/apache/geode/cache/configuration/RegionAttributesScope.html
+javadoc/org/apache/geode/cache/configuration/RegionAttributesType.DiskWriteAttributes.AsynchronousWrites.html
+javadoc/org/apache/geode/cache/configuration/RegionAttributesType.DiskWriteAttributes.html
+javadoc/org/apache/geode/cache/configuration/RegionAttributesType.EntryIdleTime.html
+javadoc/org/apache/geode/cache/configuration/RegionAttributesType.EntryTimeToLive.html
+javadoc/org/apache/geode/cache/configuration/RegionAttributesType.EvictionAttributes.LruEntryCount.html
+javadoc/org/apache/geode/cache/configuration/RegionAttributesType.EvictionAttributes.LruHeapPercentage.html
+javadoc/org/apache/geode/cache/configuration/RegionAttributesType.EvictionAttributes.LruMemorySize.html
+javadoc/org/apache/geode/cache/configuration/RegionAttributesType.EvictionAttributes.html
+javadoc/org/apache/geode/cache/configuration/RegionAttributesType.MembershipAttributes.RequiredRole.html
+javadoc/org/apache/geode/cache/configuration/RegionAttributesType.MembershipAttributes.html
+javadoc/org/apache/geode/cache/configuration/RegionAttributesType.PartitionAttributes.FixedPartitionAttributes.html
+javadoc/org/apache/geode/cache/configuration/RegionAttributesType.PartitionAttributes.html
+javadoc/org/apache/geode/cache/configuration/RegionAttributesType.RegionIdleTime.html
+javadoc/org/apache/geode/cache/configuration/RegionAttributesType.RegionTimeToLive.html
+javadoc/org/apache/geode/cache/configuration/RegionAttributesType.SubscriptionAttributes.html
+javadoc/org/apache/geode/cache/configuration/RegionAttributesType.html
+javadoc/org/apache/geode/cache/configuration/RegionConfig.Entry.html
+javadoc/org/apache/geode/cache/configuration/RegionConfig.Index.html
+javadoc/org/apache/geode/cache/configuration/RegionConfig.html
+javadoc/org/apache/geode/cache/configuration/ResourceManagerType.html
+javadoc/org/apache/geode/cache/configuration/SerializationRegistrationType.Instantiator.html
+javadoc/org/apache/geode/cache/configuration/SerializationRegistrationType.Serializer.html
+javadoc/org/apache/geode/cache/configuration/SerializationRegistrationType.html
+javadoc/org/apache/geode/cache/configuration/ServerType.ClientSubscription.html
+javadoc/org/apache/geode/cache/configuration/ServerType.html
+javadoc/org/apache/geode/cache/configuration/XSDRootElement.html
+javadoc/org/apache/geode/cache/configuration/package-frame.html
+javadoc/org/apache/geode/cache/configuration/package-summary.html
+javadoc/org/apache/geode/cache/configuration/package-tree.html
+javadoc/org/apache/geode/cache/control/RebalanceFactory.html
+javadoc/org/apache/geode/cache/control/RebalanceOperation.html
+javadoc/org/apache/geode/cache/control/RebalanceResults.html
+javadoc/org/apache/geode/cache/control/ResourceManager.html
+javadoc/org/apache/geode/cache/control/package-frame.html
+javadoc/org/apache/geode/cache/control/package-summary.html
+javadoc/org/apache/geode/cache/control/package-tree.html
+javadoc/org/apache/geode/cache/doc-files/cache7_0.dtd
+javadoc/org/apache/geode/cache/doc-files/cache8_0.dtd
+javadoc/org/apache/geode/cache/execute/EmptyRegionFunctionException.html
+javadoc/org/apache/geode/cache/execute/Execution.html
+javadoc/org/apache/geode/cache/execute/Function.html
+javadoc/org/apache/geode/cache/execute/FunctionAdapter.html
+javadoc/org/apache/geode/cache/execute/FunctionContext.html
+javadoc/org/apache/geode/cache/execute/FunctionException.html
+javadoc/org/apache/geode/cache/execute/FunctionInvocationTargetException.html
+javadoc/org/apache/geode/cache/execute/FunctionService.html
+javadoc/org/apache/geode/cache/execute/RegionFunctionContext.html
+javadoc/org/apache/geode/cache/execute/ResultCollector.html
+javadoc/org/apache/geode/cache/execute/ResultSender.html
+javadoc/org/apache/geode/cache/execute/package-frame.html
+javadoc/org/apache/geode/cache/execute/package-summary.html
+javadoc/org/apache/geode/cache/execute/package-tree.html
+javadoc/org/apache/geode/cache/lucene/DummyLuceneSerializer.html
+javadoc/org/apache/geode/cache/lucene/FlatFormatSerializer.html
+javadoc/org/apache/geode/cache/lucene/LuceneIndex.html
+javadoc/org/apache/geode/cache/lucene/LuceneIndexDestroyedException.html
+javadoc/org/apache/geode/cache/lucene/LuceneIndexExistsException.html
+javadoc/org/apache/geode/cache/lucene/LuceneIndexFactory.html
+javadoc/org/apache/geode/cache/lucene/LuceneIndexNotFoundException.html
+javadoc/org/apache/geode/cache/lucene/LuceneIntegrationTest.html
+javadoc/org/apache/geode/cache/lucene/LuceneQuery.html
+javadoc/org/apache/geode/cache/lucene/LuceneQueryException.html
+javadoc/org/apache/geode/cache/lucene/LuceneQueryFactory.html
+javadoc/org/apache/geode/cache/lucene/LuceneQueryProvider.html
+javadoc/org/apache/geode/cache/lucene/LuceneResultStruct.html
+javadoc/org/apache/geode/cache/lucene/LuceneSerializer.html
+javadoc/org/apache/geode/cache/lucene/LuceneService.html
+javadoc/org/apache/geode/cache/lucene/LuceneServiceProvider.html
+javadoc/org/apache/geode/cache/lucene/PageableLuceneQueryResults.html
+javadoc/org/apache/geode/cache/lucene/management/LuceneIndexMetrics.html
+javadoc/org/apache/geode/cache/lucene/management/LuceneServiceMXBean.html
+javadoc/org/apache/geode/cache/lucene/management/package-frame.html
+javadoc/org/apache/geode/cache/lucene/management/package-summary.html
+javadoc/org/apache/geode/cache/lucene/management/package-tree.html
+javadoc/org/apache/geode/cache/lucene/package-frame.html
+javadoc/org/apache/geode/cache/lucene/package-summary.html
+javadoc/org/apache/geode/cache/lucene/package-tree.html
+javadoc/org/apache/geode/cache/lucene/test/Customer.html
+javadoc/org/apache/geode/cache/lucene/test/IndexRegionSpy.html
+javadoc/org/apache/geode/cache/lucene/test/IndexRepositorySpy.html
+javadoc/org/apache/geode/cache/lucene/test/LuceneDeclarable2TestSerializer.html
+javadoc/org/apache/geode/cache/lucene/test/LuceneTestSerializer.html
+javadoc/org/apache/geode/cache/lucene/test/LuceneTestUtilities.FloatRangeQueryProvider.html
+javadoc/org/apache/geode/cache/lucene/test/LuceneTestUtilities.IntRangeQueryProvider.html
+javadoc/org/apache/geode/cache/lucene/test/LuceneTestUtilities.html
+javadoc/org/apache/geode/cache/lucene/test/Page.html
+javadoc/org/apache/geode/cache/lucene/test/Person.html
+javadoc/org/apache/geode/cache/lucene/test/TestObject.html
+javadoc/org/apache/geode/cache/lucene/test/package-frame.html
+javadoc/org/apache/geode/cache/lucene/test/package-summary.html
+javadoc/org/apache/geode/cache/lucene/test/package-tree.html
+javadoc/org/apache/geode/cache/operations/CloseCQOperationContext.html
+javadoc/org/apache/geode/cache/operations/DestroyOperationContext.html
+javadoc/org/apache/geode/cache/operations/ExecuteCQOperationContext.html
+javadoc/org/apache/geode/cache/operations/ExecuteFunctionOperationContext.html
+javadoc/org/apache/geode/cache/operations/GetDurableCQsOperationContext.html
+javadoc/org/apache/geode/cache/operations/GetOperationContext.html
+javadoc/org/apache/geode/cache/operations/InterestOperationContext.html
+javadoc/org/apache/geode/cache/operations/InterestType.html
+javadoc/org/apache/geode/cache/operations/InvalidateOperationContext.html
+javadoc/org/apache/geode/cache/operations/KeyOperationContext.html
+javadoc/org/apache/geode/cache/operations/KeySetOperationContext.html
+javadoc/org/apache/geode/cache/operations/KeyValueOperationContext.html
+javadoc/org/apache/geode/cache/operations/OperationContext.OperationCode.html
+javadoc/org/apache/geode/cache/operations/OperationContext.html
+javadoc/org/apache/geode/cache/operations/PutAllOperationContext.html
+javadoc/org/apache/geode/cache/operations/PutOperationContext.html
+javadoc/org/apache/geode/cache/operations/QueryOperationContext.html
+javadoc/org/apache/geode/cache/operations/RegionClearOperationContext.html
+javadoc/org/apache/geode/cache/operations/RegionCreateOperationContext.html
+javadoc/org/apache/geode/cache/operations/RegionDestroyOperationContext.html
+javadoc/org/apache/geode/cache/operations/RegionOperationContext.html
+javadoc/org/apache/geode/cache/operations/RegisterInterestOperationContext.html
+javadoc/org/apache/geode/cache/operations/RemoveAllOperationContext.html
+javadoc/org/apache/geode/cache/operations/StopCQOperationContext.html
+javadoc/org/apache/geode/cache/operations/UnregisterInterestOperationContext.html
+javadoc/org/apache/geode/cache/operations/package-frame.html
+javadoc/org/apache/geode/cache/operations/package-summary.html
+javadoc/org/apache/geode/cache/operations/package-tree.html
+javadoc/org/apache/geode/cache/package-frame.html
+javadoc/org/apache/geode/cache/package-summary.html
+javadoc/org/apache/geode/cache/package-tree.html
+javadoc/org/apache/geode/cache/partition/PartitionListener.html
+javadoc/org/apache/geode/cache/partition/PartitionListenerAdapter.html
+javadoc/org/apache/geode/cache/partition/PartitionMemberInfo.html
+javadoc/org/apache/geode/cache/partition/PartitionNotAvailableException.html
+javadoc/org/apache/geode/cache/partition/PartitionRebalanceInfo.html
+javadoc/org/apache/geode/cache/partition/PartitionRegionHelper.html
+javadoc/org/apache/geode/cache/partition/PartitionRegionInfo.html
+javadoc/org/apache/geode/cache/partition/package-frame.html
+javadoc/org/apache/geode/cache/partition/package-summary.html
+javadoc/org/apache/geode/cache/partition/package-tree.html
+javadoc/org/apache/geode/cache/persistence/ConflictingPersistentDataException.html
+javadoc/org/apache/geode/cache/persistence/PartitionOfflineException.html
+javadoc/org/apache/geode/cache/persistence/PersistentID.html
+javadoc/org/apache/geode/cache/persistence/PersistentReplicatesOfflineException.html
+javadoc/org/apache/geode/cache/persistence/RevokeFailedException.html
+javadoc/org/apache/geode/cache/persistence/RevokedPersistentDataException.html
+javadoc/org/apache/geode/cache/persistence/package-frame.html
+javadoc/org/apache/geode/cache/persistence/package-summary.html
+javadoc/org/apache/geode/cache/persistence/package-tree.html
+javadoc/org/apache/geode/cache/query/Aggregator.html
+javadoc/org/apache/geode/cache/query/AmbiguousNameException.html
+javadoc/org/apache/geode/cache/query/CacheUtils.html
+javadoc/org/apache/geode/cache/query/CqAttributes.html
+javadoc/org/apache/geode/cache/query/CqAttributesFactory.html
+javadoc/org/apache/geode/cache/query/CqAttributesMutator.html
+javadoc/org/apache/geode/cache/query/CqClosedException.html
+javadoc/org/apache/geode/cache/query/CqEvent.html
+javadoc/org/apache/geode/cache/query/CqException.html
+javadoc/org/apache/geode/cache/query/CqExistsException.html
+javadoc/org/apache/geode/cache/query/CqListener.html
+javadoc/org/apache/geode/cache/query/CqQuery.html
+javadoc/org/apache/geode/cache/query/CqResults.html
+javadoc/org/apache/geode/cache/query/CqServiceStatistics.html
+javadoc/org/apache/geode/cache/query/CqState.html
+javadoc/org/apache/geode/cache/query/CqStatistics.html
+javadoc/org/apache/geode/cache/query/CqStatusListener.html
+javadoc/org/apache/geode/cache/query/FunctionDomainException.html
+javadoc/org/apache/geode/cache/query/Index.html
+javadoc/org/apache/geode/cache/query/IndexCreationException.html
+javadoc/org/apache/geode/cache/query/IndexExistsException.html
+javadoc/org/apache/geode/cache/query/IndexInvalidException.html
+javadoc/org/apache/geode/cache/query/IndexMaintenanceException.html
+javadoc/org/apache/geode/cache/query/IndexNameConflictException.html
+javadoc/org/apache/geode/cache/query/IndexStatistics.html
+javadoc/org/apache/geode/cache/query/IndexType.html
+javadoc/org/apache/geode/cache/query/MultiIndexCreationException.html
+javadoc/org/apache/geode/cache/query/NameNotFoundException.html
+javadoc/org/apache/geode/cache/query/NameResolutionException.html
+javadoc/org/apache/geode/cache/query/ParameterCountInvalidException.html
+javadoc/org/apache/geode/cache/query/Query.html
+javadoc/org/apache/geode/cache/query/QueryException.html
+javadoc/org/apache/geode/cache/query/QueryExecutionLowMemoryException.html
+javadoc/org/apache/geode/cache/query/QueryExecutionTimeoutException.html
+javadoc/org/apache/geode/cache/query/QueryInvalidException.html
+javadoc/org/apache/geode/cache/query/QueryInvocationTargetException.html
+javadoc/org/apache/geode/cache/query/QueryService.html
+javadoc/org/apache/geode/cache/query/QueryStatistics.html
+javadoc/org/apache/geode/cache/query/QueryTestUtils.html
+javadoc/org/apache/geode/cache/query/RegionNotFoundException.html
+javadoc/org/apache/geode/cache/query/SelectResults.html
+javadoc/org/apache/geode/cache/query/Struct.html
+javadoc/org/apache/geode/cache/query/TypeMismatchException.html
+javadoc/org/apache/geode/cache/query/Utils.html
+javadoc/org/apache/geode/cache/query/cq/dunit/CqQueryTestListener.html
+javadoc/org/apache/geode/cache/query/cq/dunit/package-frame.html
+javadoc/org/apache/geode/cache/query/cq/dunit/package-summary.html
+javadoc/org/apache/geode/cache/query/cq/dunit/package-tree.html
+javadoc/org/apache/geode/cache/query/data/Address.html
+javadoc/org/apache/geode/cache/query/data/City.html
+javadoc/org/apache/geode/cache/query/data/CollectionHolder.html
+javadoc/org/apache/geode/cache/query/data/ComparableWrapper.html
+javadoc/org/apache/geode/cache/query/data/Country.html
+javadoc/org/apache/geode/cache/query/data/Data.html
+javadoc/org/apache/geode/cache/query/data/District.html
+javadoc/org/apache/geode/cache/query/data/Employee.html
+javadoc/org/apache/geode/cache/query/data/Instrument.html
+javadoc/org/apache/geode/cache/query/data/Inventory.html
+javadoc/org/apache/geode/cache/query/data/Keywords.html
+javadoc/org/apache/geode/cache/query/data/Manager.html
+javadoc/org/apache/geode/cache/query/data/Numbers.html
+javadoc/org/apache/geode/cache/query/data/PhoneNo.html
+javadoc/org/apache/geode/cache/query/data/Portfolio.html
+javadoc/org/apache/geode/cache/query/data/PortfolioData.html
+javadoc/org/apache/geode/cache/query/data/PortfolioNoDS.html
+javadoc/org/apache/geode/cache/query/data/PortfolioPdx.Day.html
+javadoc/org/apache/geode/cache/query/data/PortfolioPdx.html
+javadoc/org/apache/geode/cache/query/data/Position.html
+javadoc/org/apache/geode/cache/query/data/PositionNoDS.html
+javadoc/org/apache/geode/cache/query/data/PositionPdx.html
+javadoc/org/apache/geode/cache/query/data/ProhibitedSecurityQuote.html
+javadoc/org/apache/geode/cache/query/data/Quote.html
+javadoc/org/apache/geode/cache/query/data/Restricted.html
+javadoc/org/apache/geode/cache/query/data/SecurityMaster.html
+javadoc/org/apache/geode/cache/query/data/State.html
+javadoc/org/apache/geode/cache/query/data/Street.html
+javadoc/org/apache/geode/cache/query/data/Student.Subject.html
+javadoc/org/apache/geode/cache/query/data/Student.Teacher.html
+javadoc/org/apache/geode/cache/query/data/Student.html
+javadoc/org/apache/geode/cache/query/data/TestData.MyValue.html
+javadoc/org/apache/geode/cache/query/data/TestData.html
+javadoc/org/apache/geode/cache/query/data/TradingLine.html
+javadoc/org/apache/geode/cache/query/data/Vehicle.html
+javadoc/org/apache/geode/cache/query/data/Village.html
+javadoc/org/apache/geode/cache/query/data/package-frame.html
+javadoc/org/apache/geode/cache/query/data/package-summary.html
+javadoc/org/apache/geode/cache/query/data/package-tree.html
+javadoc/org/apache/geode/cache/query/dunit/CloseCacheAuthorization.html
+javadoc/org/apache/geode/cache/query/dunit/HelperTestCase.html
+javadoc/org/apache/geode/cache/query/dunit/TestObject.html
+javadoc/org/apache/geode/cache/query/dunit/package-frame.html
+javadoc/org/apache/geode/cache/query/dunit/package-summary.html
+javadoc/org/apache/geode/cache/query/dunit/package-tree.html
+javadoc/org/apache/geode/cache/query/functional/GroupByTestImpl.html
+javadoc/org/apache/geode/cache/query/functional/GroupByTestInterface.html
+javadoc/org/apache/geode/cache/query/functional/NonDistinctOrderByTestImplementation.html
+javadoc/org/apache/geode/cache/query/functional/OrderByPartitionedJUnitTestBase.html
+javadoc/org/apache/geode/cache/query/functional/OrderByTestImplementation.html
+javadoc/org/apache/geode/cache/query/functional/PdxGroupByTestImpl.html
+javadoc/org/apache/geode/cache/query/functional/StructSetOrResultsSet.html
+javadoc/org/apache/geode/cache/query/functional/package-frame.html
+javadoc/org/apache/geode/cache/query/functional/package-summary.html
+javadoc/org/apache/geode/cache/query/functional/package-tree.html
+javadoc/org/apache/geode/cache/query/package-frame.html
+javadoc/org/apache/geode/cache/query/package-summary.html
+javadoc/org/apache/geode/cache/query/package-tree.html
+javadoc/org/apache/geode/cache/query/transaction/Person.html
+javadoc/org/apache/geode/cache/query/transaction/package-frame.html
+javadoc/org/apache/geode/cache/query/transaction/package-summary.html
+javadoc/org/apache/geode/cache/query/transaction/package-tree.html
+javadoc/org/apache/geode/cache/query/types/CollectionType.html
+javadoc/org/apache/geode/cache/query/types/MapType.html
+javadoc/org/apache/geode/cache/query/types/ObjectType.html
+javadoc/org/apache/geode/cache/query/types/StructType.html
+javadoc/org/apache/geode/cache/query/types/package-frame.html
+javadoc/org/apache/geode/cache/query/types/package-summary.html
+javadoc/org/apache/geode/cache/query/types/package-tree.html
+javadoc/org/apache/geode/cache/server/CacheServer.html
+javadoc/org/apache/geode/cache/server/ClientSubscriptionConfig.html
+javadoc/org/apache/geode/cache/server/ServerLoad.html
+javadoc/org/apache/geode/cache/server/ServerLoadProbe.html
+javadoc/org/apache/geode/cache/server/ServerLoadProbeAdapter.html
+javadoc/org/apache/geode/cache/server/ServerMetrics.html
+javadoc/org/apache/geode/cache/server/package-frame.html
+javadoc/org/apache/geode/cache/server/package-summary.html
+javadoc/org/apache/geode/cache/server/package-tree.html
+javadoc/org/apache/geode/cache/snapshot/CacheSnapshotService.html
+javadoc/org/apache/geode/cache/snapshot/RegionGenerator.RegionType.html
+javadoc/org/apache/geode/cache/snapshot/RegionGenerator.SerializationType.html
+javadoc/org/apache/geode/cache/snapshot/RegionGenerator.html
+javadoc/org/apache/geode/cache/snapshot/RegionSnapshotService.html
+javadoc/org/apache/geode/cache/snapshot/SnapshotFilter.html
+javadoc/org/apache/geode/cache/snapshot/SnapshotIterator.html
+javadoc/org/apache/geode/cache/snapshot/SnapshotOptions.SnapshotFormat.html
+javadoc/org/apache/geode/cache/snapshot/SnapshotOptions.html
+javadoc/org/apache/geode/cache/snapshot/SnapshotReader.html
+javadoc/org/apache/geode/cache/snapshot/package-frame.html
+javadoc/org/apache/geode/cache/snapshot/package-summary.html
+javadoc/org/apache/geode/cache/snapshot/package-tree.html
+javadoc/org/apache/geode/cache/util/AutoBalancer.html
+javadoc/org/apache/geode/cache/util/CacheListenerAdapter.html
+javadoc/org/apache/geode/cache/util/CacheWriterAdapter.html
+javadoc/org/apache/geode/cache/util/CqListenerAdapter.html
+javadoc/org/apache/geode/cache/util/Gateway.OrderPolicy.html
+javadoc/org/apache/geode/cache/util/Gateway.html
+javadoc/org/apache/geode/cache/util/GatewayConflictHelper.html
+javadoc/org/apache/geode/cache/util/GatewayConflictResolver.html
+javadoc/org/apache/geode/cache/util/GatewayEvent.html
+javadoc/org/apache/geode/cache/util/ObjectSizer.html
+javadoc/org/apache/geode/cache/util/RegionMembershipListenerAdapter.html
+javadoc/org/apache/geode/cache/util/RegionRoleListenerAdapter.html
+javadoc/org/apache/geode/cache/util/StringPrefixPartitionResolver.html
+javadoc/org/apache/geode/cache/util/TimestampedEntryEvent.html
+javadoc/org/apache/geode/cache/util/TransactionListenerAdapter.html
+javadoc/org/apache/geode/cache/util/TxEventTestUtil.html
+javadoc/org/apache/geode/cache/util/package-frame.html
+javadoc/org/apache/geode/cache/util/package-summary.html
+javadoc/org/apache/geode/cache/util/package-tree.html
+javadoc/org/apache/geode/cache/wan/EventSequenceID.html
+javadoc/org/apache/geode/cache/wan/GatewayEventFilter.html
+javadoc/org/apache/geode/cache/wan/GatewayEventSubstitutionFilter.html
+javadoc/org/apache/geode/cache/wan/GatewayQueueEvent.html
+javadoc/org/apache/geode/cache/wan/GatewayReceiver.html
+javadoc/org/apache/geode/cache/wan/GatewayReceiverFactory.html
+javadoc/org/apache/geode/cache/wan/GatewaySender.OrderPolicy.html
+javadoc/org/apache/geode/cache/wan/GatewaySender.html
+javadoc/org/apache/geode/cache/wan/GatewaySenderFactory.html
+javadoc/org/apache/geode/cache/wan/GatewayTransportFilter.html
+javadoc/org/apache/geode/cache/wan/package-frame.html
+javadoc/org/apache/geode/cache/wan/package-summary.html
+javadoc/org/apache/geode/cache/wan/package-tree.html
+javadoc/org/apache/geode/cache30/CacheSerializableRunnable.CacheSerializableRunnableException.html
+javadoc/org/apache/geode/cache30/CacheSerializableRunnable.html
+javadoc/org/apache/geode/cache30/CacheTestCase.html
+javadoc/org/apache/geode/cache30/CacheXml70DUnitTestHelper.MyAsyncEventListener.html
+javadoc/org/apache/geode/cache30/CacheXml70DUnitTestHelper.html
+javadoc/org/apache/geode/cache30/CacheXmlTestCase.html
+javadoc/org/apache/geode/cache30/CertifiableTestCacheListener.html
+javadoc/org/apache/geode/cache30/ClientServerTestCase.CacheServerCacheLoader.html
+javadoc/org/apache/geode/cache30/ClientServerTestCase.html
+javadoc/org/apache/geode/cache30/MultiVMRegionTestCase.MyTransactionListener.html
+javadoc/org/apache/geode/cache30/MultiVMRegionTestCase.html
+javadoc/org/apache/geode/cache30/MyGatewayEventFilter1.html
+javadoc/org/apache/geode/cache30/MyGatewayEventFilter2.html
+javadoc/org/apache/geode/cache30/MyGatewayTransportFilter1.html
+javadoc/org/apache/geode/cache30/MyGatewayTransportFilter2.html
+javadoc/org/apache/geode/cache30/RegionTestCase.TestExpiry.html
+javadoc/org/apache/geode/cache30/RegionTestCase.html
+javadoc/org/apache/geode/cache30/TestCacheCallback.html
+javadoc/org/apache/geode/cache30/TestCacheListener.html
+javadoc/org/apache/geode/cache30/TestCacheLoader.html
+javadoc/org/apache/geode/cache30/TestCacheWriter.html
+javadoc/org/apache/geode/cache30/package-frame.html
+javadoc/org/apache/geode/cache30/package-summary.html
+javadoc/org/apache/geode/cache30/package-tree.html
+javadoc/org/apache/geode/codeAnalysis/AnalyzeSerializablesJUnitTestBase.html
+javadoc/org/apache/geode/codeAnalysis/ClassAndMethodDetails.html
+javadoc/org/apache/geode/codeAnalysis/ClassAndMethods.html
+javadoc/org/apache/geode/codeAnalysis/ClassAndVariableDetails.html
+javadoc/org/apache/geode/codeAnalysis/ClassAndVariables.html
+javadoc/org/apache/geode/codeAnalysis/CompiledClassUtils.html
+javadoc/org/apache/geode/codeAnalysis/decode/CompiledAttribute.html
+javadoc/org/apache/geode/codeAnalysis/decode/CompiledClass.html
+javadoc/org/apache/geode/codeAnalysis/decode/CompiledCode.ExceptionTableEntry.html
+javadoc/org/apache/geode/codeAnalysis/decode/CompiledCode.html
+javadoc/org/apache/geode/codeAnalysis/decode/CompiledField.html
+javadoc/org/apache/geode/codeAnalysis/decode/CompiledMethod.html
+javadoc/org/apache/geode/codeAnalysis/decode/cp/Cp.html
+javadoc/org/apache/geode/codeAnalysis/decode/cp/CpClass.html
+javadoc/org/apache/geode/codeAnalysis/decode/cp/CpDouble.html
+javadoc/org/apache/geode/codeAnalysis/decode/cp/CpFieldref.html
+javadoc/org/apache/geode/codeAnalysis/decode/cp/CpFloat.html
+javadoc/org/apache/geode/codeAnalysis/decode/cp/CpInterfaceMethodref.html
+javadoc/org/apache/geode/codeAnalysis/decode/cp/CpInvokeDynamic.html
+javadoc/org/apache/geode/codeAnalysis/decode/cp/CpLong.html
+javadoc/org/apache/geode/codeAnalysis/decode/cp/CpMethodHandle.html
+javadoc/org/apache/geode/codeAnalysis/decode/cp/CpMethodType.html
+javadoc/org/apache/geode/codeAnalysis/decode/cp/CpMethodref.html
+javadoc/org/apache/geode/codeAnalysis/decode/cp/CpNameAndType.html
+javadoc/org/apache/geode/codeAnalysis/decode/cp/CpString.html
+javadoc/org/apache/geode/codeAnalysis/decode/cp/CpUtf8.html
+javadoc/org/apache/geode/codeAnalysis/decode/cp/package-frame.html
+javadoc/org/apache/geode/codeAnalysis/decode/cp/package-summary.html
+javadoc/org/apache/geode/codeAnalysis/decode/cp/package-tree.html
+javadoc/org/apache/geode/codeAnalysis/decode/package-frame.html
+javadoc/org/apache/geode/codeAnalysis/decode/package-summary.html
+javadoc/org/apache/geode/codeAnalysis/decode/package-tree.html
+javadoc/org/apache/geode/codeAnalysis/package-frame.html
+javadoc/org/apache/geode/codeAnalysis/package-summary.html
+javadoc/org/apache/geode/codeAnalysis/package-tree.html
+javadoc/org/apache/geode/compression/CompressionException.html
+javadoc/org/apache/geode/compression/Compressor.html
+javadoc/org/apache/geode/compression/SnappyCompressor.html
+javadoc/org/apache/geode/compression/package-frame.html
+javadoc/org/apache/geode/compression/package-summary.html
+javadoc/org/apache/geode/compression/package-tree.html
+javadoc/org/apache/geode/connectors/jdbc/JdbcAsyncWriter.html
+javadoc/org/apache/geode/connectors/jdbc/JdbcConnectorException.html
+javadoc/org/apache/geode/connectors/jdbc/JdbcLoader.html
+javadoc/org/apache/geode/connectors/jdbc/JdbcWriter.html
+javadoc/org/apache/geode/connectors/jdbc/package-frame.html
+javadoc/org/apache/geode/connectors/jdbc/package-summary.html
+javadoc/org/apache/geode/connectors/jdbc/package-tree.html
+javadoc/org/apache/geode/distributed/AbstractLauncher.ServiceState.html
+javadoc/org/apache/geode/distributed/AbstractLauncher.Status.html
+javadoc/org/apache/geode/distributed/AbstractLauncher.html
+javadoc/org/apache/geode/distributed/ClientSocketFactory.html
+javadoc/org/apache/geode/distributed/ConfigurationPersistenceService.html
+javadoc/org/apache/geode/distributed/ConfigurationProperties.html
+javadoc/org/apache/geode/distributed/DistributedLockService.html
+javadoc/org/apache/geode/distributed/DistributedMember.html
+javadoc/org/apache/geode/distributed/DistributedSystem.html
+javadoc/org/apache/geode/distributed/DistributedSystemDisconnectedException.html
+javadoc/org/apache/geode/distributed/DurableClientAttributes.html
+javadoc/org/apache/geode/distributed/FutureCancelledException.html
+javadoc/org/apache/geode/distributed/GatewayCancelledException.html
+javadoc/org/apache/geode/distributed/LeaseExpiredException.html
+javadoc/org/apache/geode/distributed/Locator.html
+javadoc/org/apache/geode/distributed/LocatorLauncher.Builder.html
+javadoc/org/apache/geode/distributed/LocatorLauncher.Command.html
+javadoc/org/apache/geode/distributed/LocatorLauncher.LocatorState.html
+javadoc/org/apache/geode/distributed/LocatorLauncher.html
+javadoc/org/apache/geode/distributed/LockNotHeldException.html
+javadoc/org/apache/geode/distributed/LockServiceDestroyedException.html
+javadoc/org/apache/geode/distributed/OplogCancelledException.html
+javadoc/org/apache/geode/distributed/PoolCancelledException.html
+javadoc/org/apache/geode/distributed/Role.html
+javadoc/org/apache/geode/distributed/ServerLauncher.Builder.html
+javadoc/org/apache/geode/distributed/ServerLauncher.Command.html
+javadoc/org/apache/geode/distributed/ServerLauncher.ServerState.html
+javadoc/org/apache/geode/distributed/ServerLauncher.html
+javadoc/org/apache/geode/distributed/ServerLauncherCacheProvider.html
+javadoc/org/apache/geode/distributed/ServerLauncherParameters.html
+javadoc/org/apache/geode/distributed/TXManagerCancelledException.html
+javadoc/org/apache/geode/distributed/TestServerLauncherCacheProvider.html
+javadoc/org/apache/geode/distributed/package-frame.html
+javadoc/org/apache/geode/distributed/package-summary.html
+javadoc/org/apache/geode/distributed/package-tree.html
+javadoc/org/apache/geode/examples/SimpleSecurityManager.html
+javadoc/org/apache/geode/examples/package-frame.html
+javadoc/org/apache/geode/examples/package-summary.html
+javadoc/org/apache/geode/examples/package-tree.html
+javadoc/org/apache/geode/examples/security/ExamplePostProcessor.html
+javadoc/org/apache/geode/examples/security/ExampleSecurityManager.Role.html
+javadoc/org/apache/geode/examples/security/ExampleSecurityManager.User.html
+javadoc/org/apache/geode/examples/security/ExampleSecurityManager.html
+javadoc/org/apache/geode/examples/security/package-frame.html
+javadoc/org/apache/geode/examples/security/package-summary.html
+javadoc/org/apache/geode/examples/security/package-tree.html
+javadoc/org/apache/geode/experimental/driver/Driver.html
+javadoc/org/apache/geode/experimental/driver/DriverFactory.html
+javadoc/org/apache/geode/experimental/driver/Function.html
+javadoc/org/apache/geode/experimental/driver/FunctionService.html
+javadoc/org/apache/geode/experimental/driver/JSONWrapper.JSONWrapperImpl.html
+javadoc/org/apache/geode/experimental/driver/JSONWrapper.html
+javadoc/org/apache/geode/experimental/driver/NoOpSerializer.html
+javadoc/org/apache/geode/experimental/driver/ProtobufDriver.html
+javadoc/org/apache/geode/experimental/driver/ProtobufFunction.html
+javadoc/org/apache/geode/experimental/driver/ProtobufFunctionService.html
+javadoc/org/apache/geode/experimental/driver/ProtobufRegion.html
+javadoc/org/apache/geode/experimental/driver/Query.html
+javadoc/org/apache/geode/experimental/driver/QueryService.html
+javadoc/org/apache/geode/experimental/driver/Region.html
+javadoc/org/apache/geode/experimental/driver/SocketFactory.html
+javadoc/org/apache/geode/experimental/driver/ValueSerializer.html
+javadoc/org/apache/geode/experimental/driver/package-frame.html
+javadoc/org/apache/geode/experimental/driver/package-summary.html
+javadoc/org/apache/geode/experimental/driver/package-tree.html
+javadoc/org/apache/geode/i18n/LogWriterI18n.html
+javadoc/org/apache/geode/i18n/StringId.html
+javadoc/org/apache/geode/i18n/package-frame.html
+javadoc/org/apache/geode/i18n/package-summary.html
+javadoc/org/apache/geode/i18n/package-tree.html
+javadoc/org/apache/geode/lang/AttachAPINotFoundException.html
+javadoc/org/apache/geode/lang/Identifiable.html
+javadoc/org/apache/geode/lang/package-frame.html
+javadoc/org/apache/geode/lang/package-summary.html
+javadoc/org/apache/geode/lang/package-tree.html
+javadoc/org/apache/geode/management/AlreadyRunningException.html
+javadoc/org/apache/geode/management/AsyncEventQueueMXBean.html
+javadoc/org/apache/geode/management/BackupStatus.html
+javadoc/org/apache/geode/management/CacheServerMXBean.html
+javadoc/org/apache/geode/management/ClientHealthStatus.html
+javadoc/org/apache/geode/management/ClientQueueDetail.html
+javadoc/org/apache/geode/management/DependenciesNotFoundException.html
+javadoc/org/apache/geode/management/DiskBackupResult.html
+javadoc/org/apache/geode/management/DiskBackupStatus.html
+javadoc/org/apache/geode/management/DiskMetrics.html
+javadoc/org/apache/geode/management/DiskStoreMXBean.html
+javadoc/org/apache/geode/management/DistributedLockServiceMXBean.html
+javadoc/org/apache/geode/management/DistributedRegionMXBean.html
+javadoc/org/apache/geode/management/DistributedSystemMXBean.html
+javadoc/org/apache/geode/management/EvictionAttributesData.html
+javadoc/org/apache/geode/management/FixedPartitionAttributesData.html
+javadoc/org/apache/geode/management/GatewayReceiverMXBean.html
+javadoc/org/apache/geode/management/GatewaySenderMXBean.html
+javadoc/org/apache/geode/management/GemFireProperties.html
+javadoc/org/apache/geode/management/JMXNotificationType.html
+javadoc/org/apache/geode/management/JMXNotificationUserData.html
+javadoc/org/apache/geode/management/JVMMetrics.html
+javadoc/org/apache/geode/management/LocatorMXBean.html
+javadoc/org/apache/geode/management/LockServiceMXBean.html
+javadoc/org/apache/geode/management/MBeanUtil.html
+javadoc/org/apache/geode/management/MXBeanAwaitility.html
+javadoc/org/apache/geode/management/ManagementException.html
+javadoc/org/apache/geode/management/ManagementService.html
+javadoc/org/apache/geode/management/ManagementTestBase.html
+javadoc/org/apache/geode/management/ManagerMXBean.html
+javadoc/org/apache/geode/management/MemberMXBean.html
+javadoc/org/apache/geode/management/MembershipAttributesData.html
+javadoc/org/apache/geode/management/NetworkMetrics.html
+javadoc/org/apache/geode/management/OSMetrics.html
+javadoc/org/apache/geode/management/PartitionAttributesData.html
+javadoc/org/apache/geode/management/PersistentMemberDetails.html
+javadoc/org/apache/geode/management/RegionAttributesData.html
+javadoc/org/apache/geode/management/RegionMXBean.html
+javadoc/org/apache/geode/management/ServerLoadData.html
+javadoc/org/apache/geode/management/cli/CliFunction.html
+javadoc/org/apache/geode/management/cli/CliMetaData.AvailabilityMetadata.html
+javadoc/org/apache/geode/management/cli/CliMetaData.html
+javadoc/org/apache/geode/management/cli/CommandProcessingException.html
+javadoc/org/apache/geode/management/cli/CommandService.html
+javadoc/org/apache/geode/management/cli/CommandServiceException.html
+javadoc/org/apache/geode/management/cli/CommandStatement.html
+javadoc/org/apache/geode/management/cli/ConverterHint.html
+javadoc/org/apache/geode/management/cli/Disabled.html
+javadoc/org/apache/geode/management/cli/GfshCommand.html
+javadoc/org/apache/geode/management/cli/Result.Status.html
+javadoc/org/apache/geode/management/cli/Result.html
+javadoc/org/apache/geode/management/cli/SingleGfshCommand.html
+javadoc/org/apache/geode/management/cli/package-frame.html
+javadoc/org/apache/geode/management/cli/package-summary.html
+javadoc/org/apache/geode/management/cli/package-tree.html
+javadoc/org/apache/geode/management/membership/ClientMembership.html
+javadoc/org/apache/geode/management/membership/ClientMembershipEvent.html
+javadoc/org/apache/geode/management/membership/ClientMembershipListener.html
+javadoc/org/apache/geode/management/membership/ClientMembershipListenerAdapter.html
+javadoc/org/apache/geode/management/membership/MembershipEvent.html
+javadoc/org/apache/geode/management/membership/MembershipListener.html
+javadoc/org/apache/geode/management/membership/UniversalMembershipListenerAdapter.AdaptedMembershipEvent.html
+javadoc/org/apache/geode/management/membership/UniversalMembershipListenerAdapter.html
+javadoc/org/apache/geode/management/membership/package-frame.html
+javadoc/org/apache/geode/management/membership/package-summary.html
+javadoc/org/apache/geode/management/membership/package-tree.html
+javadoc/org/apache/geode/management/package-frame.html
+javadoc/org/apache/geode/management/package-summary.html
+javadoc/org/apache/geode/management/package-tree.html
+javadoc/org/apache/geode/memcached/GemFireMemcachedServer.Protocol.html
+javadoc/org/apache/geode/memcached/GemFireMemcachedServer.html
+javadoc/org/apache/geode/memcached/package-frame.html
+javadoc/org/apache/geode/memcached/package-summary.html
+javadoc/org/apache/geode/memcached/package-tree.html
+javadoc/org/apache/geode/modules/gatewaydelta/AbstractGatewayDeltaEvent.html
+javadoc/org/apache/geode/modules/gatewaydelta/GatewayDelta.html
+javadoc/org/apache/geode/modules/gatewaydelta/GatewayDeltaCreateEvent.html
+javadoc/org/apache/geode/modules/gatewaydelta/GatewayDeltaDestroyEvent.html
+javadoc/org/apache/geode/modules/gatewaydelta/GatewayDeltaEvent.html
+javadoc/org/apache/geode/modules/gatewaydelta/GatewayDeltaEventApplicationCacheListener.html
+javadoc/org/apache/geode/modules/gatewaydelta/GatewayDeltaForwarderCacheListener.html
+javadoc/org/apache/geode/modules/gatewaydelta/package-frame.html
+javadoc/org/apache/geode/modules/gatewaydelta/package-summary.html
+javadoc/org/apache/geode/modules/gatewaydelta/package-tree.html
+javadoc/org/apache/geode/modules/session/Callback.html
+javadoc/org/apache/geode/modules/session/CommandServlet.html
+javadoc/org/apache/geode/modules/session/EmbeddedTomcat.html
+javadoc/org/apache/geode/modules/session/ListenerStoredInSessionContext.html
+javadoc/org/apache/geode/modules/session/QueryCommand.html
+javadoc/org/apache/geode/modules/session/SessionCountingListener.html
+javadoc/org/apache/geode/modules/session/TestSessionsBase.html
+javadoc/org/apache/geode/modules/session/bootstrap/AbstractCache.html
+javadoc/org/apache/geode/modules/session/bootstrap/ClientServerCache.html
+javadoc/org/apache/geode/modules/session/bootstrap/LifecycleTypeAdapter.html
+javadoc/org/apache/geode/modules/session/bootstrap/PeerToPeerCache.html
+javadoc/org/apache/geode/modules/session/bootstrap/package-frame.html
+javadoc/org/apache/geode/modules/session/bootstrap/package-summary.html
+javadoc/org/apache/geode/modules/session/bootstrap/package-tree.html
+javadoc/org/apache/geode/modules/session/catalina/AbstractCacheLifecycleListener.html
+javadoc/org/apache/geode/modules/session/catalina/AbstractSessionCache.html
+javadoc/org/apache/geode/modules/session/catalina/ClientServerCacheLifecycleListener.html
+javadoc/org/apache/geode/modules/session/catalina/ClientServerSessionCache.html
+javadoc/org/apache/geode/modules/session/catalina/CommitSessionValve.html
+javadoc/org/apache/geode/modules/session/catalina/DeltaSession.html
+javadoc/org/apache/geode/modules/session/catalina/DeltaSession7.html
+javadoc/org/apache/geode/modules/session/catalina/DeltaSession8.html
+javadoc/org/apache/geode/modules/session/catalina/DeltaSessionFacade.html
+javadoc/org/apache/geode/modules/session/catalina/DeltaSessionInterface.html
+javadoc/org/apache/geode/modules/session/catalina/DeltaSessionManager.html
+javadoc/org/apache/geode/modules/session/catalina/JvmRouteBinderValve.html
+javadoc/org/apache/geode/modules/session/catalina/PeerToPeerCacheLifecycleListener.html
+javadoc/org/apache/geode/modules/session/catalina/PeerToPeerSessionCache.html
+javadoc/org/apache/geode/modules/session/catalina/SessionCache.html
+javadoc/org/apache/geode/modules/session/catalina/SessionManager.html
+javadoc/org/apache/geode/modules/session/catalina/Tomcat6DeltaSessionManager.html
+javadoc/org/apache/geode/modules/session/catalina/Tomcat7DeltaSessionManager.html
+javadoc/org/apache/geode/modules/session/catalina/Tomcat8DeltaSessionManager.html
+javadoc/org/apache/geode/modules/session/catalina/callback/LocalSessionCacheLoader.html
+javadoc/org/apache/geode/modules/session/catalina/callback/LocalSessionCacheWriter.html
+javadoc/org/apache/geode/modules/session/catalina/callback/SessionExpirationCacheListener.html
+javadoc/org/apache/geode/modules/session/catalina/callback/package-frame.html
+javadoc/org/apache/geode/modules/session/catalina/callback/package-summary.html
+javadoc/org/apache/geode/modules/session/catalina/callback/package-tree.html
+javadoc/org/apache/geode/modules/session/catalina/package-frame.html
+javadoc/org/apache/geode/modules/session/catalina/package-summary.html
+javadoc/org/apache/geode/modules/session/catalina/package-tree.html
+javadoc/org/apache/geode/modules/session/filter/SessionCachingFilter.RequestWrapper.html
+javadoc/org/apache/geode/modules/session/filter/SessionCachingFilter.html
+javadoc/org/apache/geode/modules/session/filter/SessionListener.html
+javadoc/org/apache/geode/modules/session/filter/package-frame.html
+javadoc/org/apache/geode/modules/session/filter/package-summary.html
+javadoc/org/apache/geode/modules/session/filter/package-tree.html
+javadoc/org/apache/geode/modules/session/functions/GetMaxInactiveInterval.html
+javadoc/org/apache/geode/modules/session/functions/GetSessionCount.html
+javadoc/org/apache/geode/modules/session/functions/GetSessionCreatedCount.html
+javadoc/org/apache/geode/modules/session/functions/GetSessionDestroyedCount.html
+javadoc/org/apache/geode/modules/session/functions/package-frame.html
+javadoc/org/apache/geode/modules/session/functions/package-summary.html
+javadoc/org/apache/geode/modules/session/functions/package-tree.html
+javadoc/org/apache/geode/modules/session/installer/Installer.html
+javadoc/org/apache/geode/modules/session/installer/JarClassLoader.html
+javadoc/org/apache/geode/modules/session/installer/args/Argument.html
+javadoc/org/apache/geode/modules/session/installer/args/ArgumentHandler.html
+javadoc/org/apache/geode/modules/session/installer/args/ArgumentProcessor.html
+javadoc/org/apache/geode/modules/session/installer/args/ArgumentValues.html
+javadoc/org/apache/geode/modules/session/installer/args/URLArgumentHandler.html
+javadoc/org/apache/geode/modules/session/installer/args/UnknownArgumentHandler.html
+javadoc/org/apache/geode/modules/session/installer/args/UsageException.html
+javadoc/org/apache/geode/modules/session/installer/args/package-frame.html
+javadoc/org/apache/geode/modules/session/installer/args/package-summary.html
+javadoc/org/apache/geode/modules/session/installer/args/package-tree.html
+javadoc/org/apache/geode/modules/session/installer/package-frame.html
+javadoc/org/apache/geode/modules/session/installer/package-summary.html
+javadoc/org/apache/geode/modules/session/installer/package-tree.html
+javadoc/org/apache/geode/modules/session/package-frame.html
+javadoc/org/apache/geode/modules/session/package-summary.html
+javadoc/org/apache/geode/modules/session/package-tree.html
+javadoc/org/apache/geode/modules/util/Banner.html
+javadoc/org/apache/geode/modules/util/BootstrappingFunction.html
+javadoc/org/apache/geode/modules/util/ClassLoaderObjectInputStream.html
+javadoc/org/apache/geode/modules/util/ContextMapper.html
+javadoc/org/apache/geode/modules/util/CreateRegionFunction.html
+javadoc/org/apache/geode/modules/util/DebugCacheListener.html
+javadoc/org/apache/geode/modules/util/ModuleStatistics.html
+javadoc/org/apache/geode/modules/util/RegionConfiguration.html
+javadoc/org/apache/geode/modules/util/RegionConfigurationCacheListener.html
+javadoc/org/apache/geode/modules/util/RegionHelper.html
+javadoc/org/apache/geode/modules/util/RegionSizeFunction.html
+javadoc/org/apache/geode/modules/util/RegionStatus.html
+javadoc/org/apache/geode/modules/util/ResourceManagerValidator.html
+javadoc/org/apache/geode/modules/util/SessionCustomExpiry.html
+javadoc/org/apache/geode/modules/util/TouchPartitionedRegionEntriesFunction.html
+javadoc/org/apache/geode/modules/util/TouchReplicatedRegionEntriesFunction.html
+javadoc/org/apache/geode/modules/util/package-frame.html
+javadoc/org/apache/geode/modules/util/package-summary.html
+javadoc/org/apache/geode/modules/util/package-tree.html
+javadoc/org/apache/geode/package-frame.html
+javadoc/org/apache/geode/package-summary.html
+javadoc/org/apache/geode/package-tree.html
+javadoc/org/apache/geode/pdx/DSInsidePdx.html
+javadoc/org/apache/geode/pdx/DomainObject.html
+javadoc/org/apache/geode/pdx/DomainObjectBad.html
+javadoc/org/apache/geode/pdx/DomainObjectClassLoadable.html
+javadoc/org/apache/geode/pdx/DomainObjectPdxAuto.Day.html
+javadoc/org/apache/geode/pdx/DomainObjectPdxAuto.html
+javadoc/org/apache/geode/pdx/DomainObjectPdxAutoNoDefaultConstructor.Day.html
+javadoc/org/apache/geode/pdx/DomainObjectPdxAutoNoDefaultConstructor.html
+javadoc/org/apache/geode/pdx/Employee.html
+javadoc/org/apache/geode/pdx/FieldType.html
+javadoc/org/apache/geode/pdx/JSONFormatter.html
+javadoc/org/apache/geode/pdx/JSONFormatterException.html
+javadoc/org/apache/geode/pdx/NestedPdx.html
+javadoc/org/apache/geode/pdx/NonPortableClassException.html
+javadoc/org/apache/geode/pdx/PdxConfigurationException.html
+javadoc/org/apache/geode/pdx/PdxFieldAlreadyExistsException.html
+javadoc/org/apache/geode/pdx/PdxFieldDoesNotExistException.html
+javadoc/org/apache/geode/pdx/PdxFieldTypeMismatchException.html
+javadoc/org/apache/geode/pdx/PdxInitializationException.html
+javadoc/org/apache/geode/pdx/PdxInstance.html
+javadoc/org/apache/geode/pdx/PdxInstanceFactory.html
+javadoc/org/apache/geode/pdx/PdxReader.html
+javadoc/org/apache/geode/pdx/PdxRegistryMismatchException.html
+javadoc/org/apache/geode/pdx/PdxSerializable.html
+javadoc/org/apache/geode/pdx/PdxSerializationException.html
+javadoc/org/apache/geode/pdx/PdxSerializer.html
+javadoc/org/apache/geode/pdx/PdxUnreadFields.html
+javadoc/org/apache/geode/pdx/PdxWriter.html
+javadoc/org/apache/geode/pdx/ReflectionBasedAutoSerializer.html
+javadoc/org/apache/geode/pdx/SimpleClass.SimpleEnum.html
+javadoc/org/apache/geode/pdx/SimpleClass.html
+javadoc/org/apache/geode/pdx/SimpleClass1.html
+javadoc/org/apache/geode/pdx/SimpleClass2.html
+javadoc/org/apache/geode/pdx/TestObjectForJSONFormatter.html
+javadoc/org/apache/geode/pdx/WritablePdxInstance.html
+javadoc/org/apache/geode/pdx/package-frame.html
+javadoc/org/apache/geode/pdx/package-summary.html
+javadoc/org/apache/geode/pdx/package-tree.html
+javadoc/org/apache/geode/protocol/serialization/ValueSerializer.html
+javadoc/org/apache/geode/protocol/serialization/package-frame.html
+javadoc/org/apache/geode/protocol/serialization/package-summary.html
+javadoc/org/apache/geode/protocol/serialization/package-tree.html
+javadoc/org/apache/geode/ra/GFConnection.html
+javadoc/org/apache/geode/ra/GFConnectionFactory.html
+javadoc/org/apache/geode/ra/package-frame.html
+javadoc/org/apache/geode/ra/package-summary.html
+javadoc/org/apache/geode/ra/package-tree.html
+javadoc/org/apache/geode/redis/GeodeRedisServer.html
+javadoc/org/apache/geode/redis/package-frame.html
+javadoc/org/apache/geode/redis/package-summary.html
+javadoc/org/apache/geode/redis/package-tree.html
+javadoc/org/apache/geode/security/AccessControl.html
+javadoc/org/apache/geode/security/AuthInitialize.html
+javadoc/org/apache/geode/security/AuthenticationFailedException.html
+javadoc/org/apache/geode/security/AuthenticationRequiredException.html
+javadoc/org/apache/geode/security/Authenticator.html
+javadoc/org/apache/geode/security/ClientAuthorizationTestCase.OpFlags.html
+javadoc/org/apache/geode/security/ClientAuthorizationTestCase.OperationWithAction.html
+javadoc/org/apache/geode/security/ClientAuthorizationTestCase.TestAuthzCredentialGenerator.html
+javadoc/org/apache/geode/security/ClientAuthorizationTestCase.TestCredentialGenerator.html
+javadoc/org/apache/geode/security/ClientAuthorizationTestCase.html
+javadoc/org/apache/geode/security/GemFireSecurityException.html
+javadoc/org/apache/geode/security/NotAuthorizedException.html
+javadoc/org/apache/geode/security/PDXPostProcessor.html
+javadoc/org/apache/geode/security/PostProcessor.html
+javadoc/org/apache/geode/security/ResourcePermission.Operation.html
+javadoc/org/apache/geode/security/ResourcePermission.Resource.html
+javadoc/org/apache/geode/security/ResourcePermission.Target.html
+javadoc/org/apache/geode/security/ResourcePermission.html
+javadoc/org/apache/geode/security/SecurableCommunicationChannels.html
+javadoc/org/apache/geode/security/SecurityManager.html
+javadoc/org/apache/geode/security/SecurityTestUtil.html
+javadoc/org/apache/geode/security/SecurityTestUtils.Employee.html
+javadoc/org/apache/geode/security/SecurityTestUtils.html
+javadoc/org/apache/geode/security/SimpleTestSecurityManager.html
+javadoc/org/apache/geode/security/SpySecurityManager.html
+javadoc/org/apache/geode/security/TestPostProcessor.html
+javadoc/org/apache/geode/security/TestSecurityManager.Role.html
+javadoc/org/apache/geode/security/TestSecurityManager.User.html
+javadoc/org/apache/geode/security/TestSecurityManager.html
+javadoc/org/apache/geode/security/generator/AuthzCredentialGenerator.ClassCode.html
+javadoc/org/apache/geode/security/generator/AuthzCredentialGenerator.html
+javadoc/org/apache/geode/security/generator/CredentialGenerator.ClassCode.html
+javadoc/org/apache/geode/security/generator/CredentialGenerator.html
+javadoc/org/apache/geode/security/generator/DummyAuthzCredentialGenerator.html
+javadoc/org/apache/geode/security/generator/DummyCredentialGenerator.html
+javadoc/org/apache/geode/security/generator/LdapUserCredentialGenerator.html
+javadoc/org/apache/geode/security/generator/PKCSCredentialGenerator.html
+javadoc/org/apache/geode/security/generator/SSLCredentialGenerator.html
+javadoc/org/apache/geode/security/generator/UserPasswordWithExtraPropsAuthInit.html
+javadoc/org/apache/geode/security/generator/XmlAuthzCredentialGenerator.html
+javadoc/org/apache/geode/security/generator/package-frame.html
+javadoc/org/apache/geode/security/generator/package-summary.html
+javadoc/org/apache/geode/security/generator/package-tree.html
+javadoc/org/apache/geode/security/package-frame.html
+javadoc/org/apache/geode/security/package-summary.html
+javadoc/org/apache/geode/security/package-tree.html
+javadoc/org/apache/geode/security/query/QuerySecurityBase.html
+javadoc/org/apache/geode/security/query/UserPermissions.html
+javadoc/org/apache/geode/security/query/data/PdxQueryTestObject.html
+javadoc/org/apache/geode/security/query/data/PdxTrade.html
+javadoc/org/apache/geode/security/query/data/QueryTestObject.html
+javadoc/org/apache/geode/security/query/data/package-frame.html
+javadoc/org/apache/geode/security/query/data/package-summary.html
+javadoc/org/apache/geode/security/query/data/package-tree.html
+javadoc/org/apache/geode/security/query/package-frame.html
+javadoc/org/apache/geode/security/query/package-summary.html
+javadoc/org/apache/geode/security/query/package-tree.html
+javadoc/org/apache/geode/security/templates/DummyAuthenticator.html
+javadoc/org/apache/geode/security/templates/DummyAuthorization.html
+javadoc/org/apache/geode/security/templates/FunctionSecurityPrmsHolder.html
+javadoc/org/apache/geode/security/templates/LdapUserAuthenticator.html
+javadoc/org/apache/geode/security/templates/PKCSAuthInit.html
+javadoc/org/apache/geode/security/templates/PKCSAuthenticator.html
+javadoc/org/apache/geode/security/templates/PKCSPrincipal.html
+javadoc/org/apache/geode/security/templates/SimpleAccessController.html
+javadoc/org/apache/geode/security/templates/SimpleAuthenticator.html
+javadoc/org/apache/geode/security/templates/UserPasswordAuthInit.html
+javadoc/org/apache/geode/security/templates/UsernamePrincipal.html
+javadoc/org/apache/geode/security/templates/XmlAuthorization.html
+javadoc/org/apache/geode/security/templates/XmlErrorHandler.html
+javadoc/org/apache/geode/security/templates/package-frame.html
+javadoc/org/apache/geode/security/templates/package-summary.html
+javadoc/org/apache/geode/security/templates/package-tree.html
+javadoc/org/apache/geode/session/tests/Client.Response.html
+javadoc/org/apache/geode/session/tests/Client.html
+javadoc/org/apache/geode/session/tests/ContainerInstall.ConnectionType.html
+javadoc/org/apache/geode/session/tests/ContainerInstall.html
+javadoc/org/apache/geode/session/tests/ContainerManager.html
+javadoc/org/apache/geode/session/tests/ServerContainer.html
+javadoc/org/apache/geode/session/tests/TomcatContainer.html
+javadoc/org/apache/geode/session/tests/TomcatInstall.TomcatVersion.html
+javadoc/org/apache/geode/session/tests/TomcatInstall.html
+javadoc/org/apache/geode/session/tests/package-frame.html
+javadoc/org/apache/geode/session/tests/package-summary.html
+javadoc/org/apache/geode/session/tests/package-tree.html
+javadoc/org/apache/geode/tools/pulse/tests/DataBrowserResultLoader.html
+javadoc/org/apache/geode/tools/pulse/tests/JMXBaseBean.html
+javadoc/org/apache/geode/tools/pulse/tests/JMXProperties.html
+javadoc/org/apache/geode/tools/pulse/tests/Member.html
+javadoc/org/apache/geode/tools/pulse/tests/MemberMBean.html
+javadoc/org/apache/geode/tools/pulse/tests/PulseTestData.ClusterStatus.html
+javadoc/org/apache/geode/tools/pulse/tests/PulseTestData.DataBrowser.html
+javadoc/org/apache/geode/tools/pulse/tests/PulseTestData.DataPerspectiveView.html
+javadoc/org/apache/geode/tools/pulse/tests/PulseTestData.RedundancyZone.html
+javadoc/org/apache/geode/tools/pulse/tests/PulseTestData.ServerGroups.html
+javadoc/org/apache/geode/tools/pulse/tests/PulseTestData.TopNavigation.html
+javadoc/org/apache/geode/tools/pulse/tests/PulseTestData.Topology.html
+javadoc/org/apache/geode/tools/pulse/tests/PulseTestData.html
+javadoc/org/apache/geode/tools/pulse/tests/PulseTestLocators.ClusterStatus.html
+javadoc/org/apache/geode/tools/pulse/tests/PulseTestLocators.DataBrowser.html
+javadoc/org/apache/geode/tools/pulse/tests/PulseTestLocators.DataPerspectiveView.html
+javadoc/org/apache/geode/tools/pulse/tests/PulseTestLocators.HtmlAttributes.html
+javadoc/org/apache/geode/tools/pulse/tests/PulseTestLocators.MemberDetailsView.html
+javadoc/org/apache/geode/tools/pulse/tests/PulseTestLocators.RedundancyZone.html
+javadoc/org/apache/geode/tools/pulse/tests/PulseTestLocators.RegionDetailsView.html
+javadoc/org/apache/geode/tools/pulse/tests/PulseTestLocators.ServerGroups.html
+javadoc/org/apache/geode/tools/pulse/tests/PulseTestLocators.TopNavigation.html
+javadoc/org/apache/geode/tools/pulse/tests/PulseTestLocators.TopologyView.html
+javadoc/org/apache/geode/tools/pulse/tests/PulseTestLocators.html
+javadoc/org/apache/geode/tools/pulse/tests/Region.html
+javadoc/org/apache/geode/tools/pulse/tests/RegionMBean.html
+javadoc/org/apache/geode/tools/pulse/tests/RegionOnMember.html
+javadoc/org/apache/geode/tools/pulse/tests/RegionOnMemberMBean.html
+javadoc/org/apache/geode/tools/pulse/tests/Server.html
+javadoc/org/apache/geode/tools/pulse/tests/ServerObject.html
+javadoc/org/apache/geode/tools/pulse/tests/ServerObjectMBean.html
+javadoc/org/apache/geode/tools/pulse/tests/package-frame.html
+javadoc/org/apache/geode/tools/pulse/tests/package-summary.html
+javadoc/org/apache/geode/tools/pulse/tests/package-tree.html
+javadoc/org/apache/geode/tools/pulse/tests/rules/ScreenshotOnFailureRule.html
+javadoc/org/apache/geode/tools/pulse/tests/rules/ServerRule.html
+javadoc/org/apache/geode/tools/pulse/tests/rules/WebDriverRule.html
+javadoc/org/apache/geode/tools/pulse/tests/rules/package-frame.html
+javadoc/org/apache/geode/tools/pulse/tests/rules/package-summary.html
+javadoc/org/apache/geode/tools/pulse/tests/rules/package-tree.html
+javadoc/org/apache/geode/tools/pulse/tests/ui/PulseTestConstants.html
+javadoc/org/apache/geode/tools/pulse/tests/ui/package-frame.html
+javadoc/org/apache/geode/tools/pulse/tests/ui/package-summary.html
+javadoc/org/apache/geode/tools/pulse/tests/ui/package-tree.html
+javadoc/org/apache/geode/util/test/TestUtil.html
+javadoc/org/apache/geode/util/test/package-frame.html
+javadoc/org/apache/geode/util/test/package-summary.html
+javadoc/org/apache/geode/util/test/package-tree.html
+javadoc/overview-frame.html
+javadoc/overview-summary.html
+javadoc/overview-tree.html
+javadoc/package-list
+javadoc/script.js
+javadoc/serialized-form.html
+javadoc/stylesheet.css
+lib/HikariCP-3.2.0.jar
+lib/activation-1.1.jar
+lib/antlr-2.7.7.jar
+lib/classgraph-4.0.6.jar
+lib/commons-beanutils-1.9.3.jar
+lib/commons-codec-1.10.jar
+lib/commons-collections-3.2.2.jar
+lib/commons-digester-2.1.jar
+lib/commons-io-2.6.jar
+lib/commons-lang-2.6.jar
+lib/commons-logging-1.2.jar
+lib/commons-modeler-2.0.1.jar
+lib/commons-validator-1.6.jar
+lib/fastutil-8.2.1.jar
+lib/findbugs-annotations-1.3.9-1.jar
+lib/geode-common-1.8.0-SNAPSHOT.jar
+lib/geode-connectors-1.8.0-SNAPSHOT.jar
+lib/geode-core-1.8.0-SNAPSHOT.jar
+lib/geode-cq-1.8.0-SNAPSHOT.jar
+lib/geode-dependencies.jar
+lib/geode-jca-1.8.0-SNAPSHOT.rar
+lib/geode-json-1.8.0-SNAPSHOT.jar
+lib/geode-lucene-1.8.0-SNAPSHOT.jar
+lib/geode-old-client-support-1.8.0-SNAPSHOT.jar
+lib/geode-protobuf-1.8.0-SNAPSHOT.jar
+lib/geode-protobuf-messages-1.8.0-SNAPSHOT.jar
+lib/geode-rebalancer-1.8.0-SNAPSHOT.jar
+lib/geode-wan-1.8.0-SNAPSHOT.jar
+lib/geode-web-1.8.0-SNAPSHOT.jar
+lib/gfsh-dependencies.jar
+lib/jackson-annotations-2.9.6.jar
+lib/jackson-core-2.9.6.jar
+lib/jackson-databind-2.9.6.jar
+lib/jansi-1.17.1.jar
+lib/javax.mail-api-1.6.1.jar
+lib/javax.resource-api-1.7.jar
+lib/javax.servlet-api-3.1.0.jar
+lib/javax.transaction-api-1.2.jar
+lib/jetty-http-9.4.8.v20171121.jar
+lib/jetty-io-9.4.8.v20171121.jar
+lib/jetty-security-9.4.8.v20171121.jar
+lib/jetty-server-9.4.8.v20171121.jar
+lib/jetty-servlet-9.4.8.v20171121.jar
+lib/jetty-util-9.4.8.v20171121.jar
+lib/jetty-webapp-9.4.8.v20171121.jar
+lib/jetty-xml-9.4.8.v20171121.jar
+lib/jgroups-3.6.14.Final.jar
+lib/jline-2.12.jar
+lib/jna-4.1.0.jar
+lib/jopt-simple-5.0.4.jar
+lib/log4j-api-2.11.0.jar
+lib/log4j-core-2.11.0.jar
+lib/log4j-jcl-2.11.0.jar
+lib/log4j-jul-2.11.0.jar
+lib/log4j-slf4j-impl-2.11.0.jar
+lib/lucene-analyzers-common-6.6.2.jar
+lib/lucene-analyzers-phonetic-6.6.2.jar
+lib/lucene-core-6.6.2.jar
+lib/lucene-queries-6.6.2.jar
+lib/lucene-queryparser-6.6.2.jar
+lib/mx4j-3.0.2.jar
+lib/mx4j-remote-3.0.2.jar
+lib/mx4j-tools-3.0.1.jar
+lib/netty-all-4.1.27.Final.jar
+lib/protobuf-java-3.6.0.jar
+lib/ra.jar
+lib/rmiio-2.1.2.jar
+lib/shiro-cache-1.4.0.jar
+lib/shiro-config-core-1.4.0.jar
+lib/shiro-config-ogdl-1.4.0.jar
+lib/shiro-core-1.4.0.jar
+lib/shiro-crypto-cipher-1.4.0.jar
+lib/shiro-crypto-core-1.4.0.jar
+lib/shiro-crypto-hash-1.4.0.jar
+lib/shiro-event-1.4.0.jar
+lib/shiro-lang-1.4.0.jar
+lib/slf4j-api-1.7.25.jar
+lib/snappy-0.4.jar
+lib/spring-aop-4.3.18.RELEASE.jar
+lib/spring-beans-4.3.18.RELEASE.jar
+lib/spring-context-4.3.18.RELEASE.jar
+lib/spring-core-4.3.18.RELEASE.jar
+lib/spring-expression-4.3.18.RELEASE.jar
+lib/spring-shell-1.2.0.RELEASE.jar
+lib/spring-web-4.3.18.RELEASE.jar
+tools/ClientProtocol/geode-protobuf-messages-definitions-1.8.0-SNAPSHOT.zip
+tools/Extensions/geode-web-1.8.0-SNAPSHOT.war
+tools/Extensions/geode-web-api-1.8.0-SNAPSHOT.war
+tools/Modules/Apache_Geode_Modules-1.8.0-SNAPSHOT-AppServer.zip
+tools/Modules/Apache_Geode_Modules-1.8.0-SNAPSHOT-Tomcat.zip
+tools/Modules/Apache_Geode_Modules-1.8.0-SNAPSHOT-tcServer.zip
+tools/Modules/Apache_Geode_Modules-1.8.0-SNAPSHOT-tcServer30.zip
+tools/Pulse/geode-pulse-1.8.0-SNAPSHOT.war