+ correctly rename Partition/RegionAttrFactory to XXXFactoryBean

This commit is contained in:
Costin Leau
2010-12-06 17:04:03 +02:00
parent bc769f354d
commit eb9b1d0092
7 changed files with 13 additions and 13 deletions

View File

@@ -43,9 +43,9 @@
<!-- region with various attributes -->
<bean id="attr-region" class="org.springframework.data.gemfire.RegionFactoryBean" p:cache-ref="cache" lazy-init="true">
<property name="attributes">
<bean class="org.springframework.data.gemfire.RegionAttributesFactory" p:initial-capacity="1024">
<bean class="org.springframework.data.gemfire.RegionAttributesFactoryBean" p:initial-capacity="1024">
<property name="partitionAttributes">
<bean class="org.springframework.data.gemfire.PartitionAttributesFactory" p:redundant-copies="1" p:local-max-memory="512"/>
<bean class="org.springframework.data.gemfire.PartitionAttributesFactoryBean" p:redundant-copies="1" p:local-max-memory="512"/>
</property>
</bean>
</property>