From cbb06d3381e41d0534b6c9f0744514a6998baedc Mon Sep 17 00:00:00 2001 From: John Blum Date: Sun, 24 Jun 2018 21:21:27 -0700 Subject: [PATCH] Fix packages references to java, org.apache.geode, org.springframework and com.gemstone.gemfire. --- spring-geode-docs/src/docs/asciidoc/data-serialization.adoc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spring-geode-docs/src/docs/asciidoc/data-serialization.adoc b/spring-geode-docs/src/docs/asciidoc/data-serialization.adoc index 2d179570..15d86e05 100644 --- a/spring-geode-docs/src/docs/asciidoc/data-serialization.adoc +++ b/spring-geode-docs/src/docs/asciidoc/data-serialization.adoc @@ -89,8 +89,7 @@ The SDG `MappingPdxSerializer` offers the following capabilities: 2. Includes support for both `includes` and `excludes` with {spring-data-geode-docs-html}/#mapping.pdx-serializer.type-filtering[type filtering]. Additionally, type filters can be implemented using Java's `java.util.function.Predicate` interface as opposed to GemFire/Geode's limited regex capabilities provided by the `ReflectionBasedAutoSerializer` class. By default, `MappingPdxSerializer` -excludes all types in the following packages: `java.*`, `org.apache.geode.*`, `org.springframework.*` -and `com.gemstone.gemfire.*` (legacy). +excludes all types in the following packages: `java`, `org.apache.geode`, `org.springframework` & `com.gemstone.gemfire`. 3. Handles {spring-data-geode-docs-html}/#mapping.pdx-serializer.transient-properties[transient object fields & properties] when either Java's `transient` keyword or Spring Data's `@Transient` annotation is used.