SGF-15
+ more client schema fixes
This commit is contained in:
costin
2010-08-31 14:37:35 +03:00
parent ddbfc16655
commit ee51f1957b
2 changed files with 2 additions and 2 deletions

View File

@@ -107,7 +107,7 @@ class ClientRegionParser extends AbstractSingleBeanDefinitionParser {
BeanDefinitionBuilder regexInterestBuilder = BeanDefinitionBuilder.genericBeanDefinition(RegexInterest.class);
parseCommonInterestAttr(subElement, regexInterestBuilder);
ParsingUtils.setPropertyValue(subElement, builder, "key", "key");
ParsingUtils.setPropertyValue(subElement, builder, "pattern", "key");
return regexInterestBuilder.getBeanDefinition();
}

View File

@@ -81,7 +81,7 @@ The name of the cache loader bean referred by this declaration. If no reference
<xsd:annotation>
<xsd:documentation source="com.gemstone.gemfire.cache.CacheListener"><![CDATA[
A cache listener definition for this region. A cache listener handles region or entry related events (that occur after
various operations on the region). Multiple listener can be declared in a nested manner.
various operations on the region). Multiple listeners can be declared in a nested manner.
Note: Avoid the risk of deadlock. Since the listener is invoked while holding a lock on the entry generating the event,
it is easy to generate a deadlock by interacting with the region. For this reason, it is highly recommended to use some