Author: jdillon
Date: Tue Oct 7 01:22:44 2008
New Revision: 702384
URL: http://svn.apache.org/viewvc?rev=702384&view=rev
Log:
More lazy-init
Modified:
geronimo/gshell/trunk/gshell-remote/gshell-whisper/src/main/resources/META-INF/spring/components.xml
Modified: geronimo/gshell/trunk/gshell-remote/gshell-whisper/src/main/resources/META-INF/spring/components.xml
URL: http://svn.apache.org/viewvc/geronimo/gshell/trunk/gshell-remote/gshell-whisper/src/main/resources/META-INF/spring/components.xml?rev=702384&r1=702383&r2=702384&view=diff
==============================================================================
--- geronimo/gshell/trunk/gshell-remote/gshell-whisper/src/main/resources/META-INF/spring/components.xml
(original)
+++ geronimo/gshell/trunk/gshell-remote/gshell-whisper/src/main/resources/META-INF/spring/components.xml
Tue Oct 7 01:22:44 2008
@@ -55,7 +55,7 @@
<bean id="sslTransportFactory" class="org.apache.geronimo.gshell.whisper.transport.ssl.SslTransportFactory"
lazy-init="true"/>
- <bean id="sslContextFactory" class="org.apache.geronimo.gshell.whisper.ssl.BogusSSLContextFactory"/>
+ <bean id="sslContextFactory" class="org.apache.geronimo.gshell.whisper.ssl.BogusSSLContextFactory"
lazy-init="true"/>
<bean id="sslTransport" class="org.apache.geronimo.gshell.whisper.transport.ssl.SslTransport"
scope="prototype">
<property name="sslContextFactory" ref="sslContextFactory"/>
|