[SPR-7724] Example email addresses in the reference manual now use example.org as the domain name.

This commit is contained in:
Sam Brannen 2011-10-07 01:23:26 +00:00
parent 118ee3fce8
commit 1317b821b9
1 changed files with 5 additions and 5 deletions

View File

@ -462,20 +462,20 @@ argument.required=Ebagum lad, the '{0}' argument is required, I say, required.</
<interfacename>ApplicationEventMulticaster</interfacename> <interfacename>ApplicationEventMulticaster</interfacename>
interface.</para> interface.</para>
<para>The following example demonstrates the bean definitions used to <para>The following example shows the bean definitions used to
register and configure each of the classes above:</para> register and configure each of the classes above:</para>
<programlisting language="xml"><![CDATA[<bean id="emailService" class="example.EmailService"> <programlisting language="xml"><![CDATA[<bean id="emailService" class="example.EmailService">
<property name="blackList"> <property name="blackList">
<list> <list>
<value>black@list.org</value> <value>known.spammer@example.org</value>
<value>white@list.org</value> <value>known.hacker@example.org</value>
<value>john@doe.org</value> <value>john.doe@example.org</value>
</list> </list>
</property> </property>
</bean> </bean>
<bean id="blackListNotifier" class="example.BlackListNotifier"> <bean id="blackListNotifier" class="example.BlackListNotifier">
<property name="notificationAddress" value="spam@list.org"/> <property name="notificationAddress" value="blacklist@example.org"/>
</bean>]]></programlisting> </bean>]]></programlisting>
<para>Putting it all together, when the <methodname>sendEmail()</methodname> <para>Putting it all together, when the <methodname>sendEmail()</methodname>