You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by ol...@apache.org on 2006/03/14 21:09:42 UTC

svn commit: r385868 - /jakarta/httpcomponents/trunk/http-core/src/contrib/org/apache/http/contrib/spring/http-beans.xml

Author: olegk
Date: Tue Mar 14 12:09:40 2006
New Revision: 385868

URL: http://svn.apache.org/viewcvs?rev=385868&view=rev
Log:
Renamed EntityWriter to EntitySerializer and EntityGenerator to EntityDeserializer

Modified:
    jakarta/httpcomponents/trunk/http-core/src/contrib/org/apache/http/contrib/spring/http-beans.xml

Modified: jakarta/httpcomponents/trunk/http-core/src/contrib/org/apache/http/contrib/spring/http-beans.xml
URL: http://svn.apache.org/viewcvs/jakarta/httpcomponents/trunk/http-core/src/contrib/org/apache/http/contrib/spring/http-beans.xml?rev=385868&r1=385867&r2=385868&view=diff
==============================================================================
--- jakarta/httpcomponents/trunk/http-core/src/contrib/org/apache/http/contrib/spring/http-beans.xml (original)
+++ jakarta/httpcomponents/trunk/http-core/src/contrib/org/apache/http/contrib/spring/http-beans.xml Tue Mar 14 12:09:40 2006
@@ -55,20 +55,20 @@
     class="org.apache.http.impl.DefaultHttpResponseFactory" 
     singleton="false" />
   
-  <bean id="http-entity-writer"
-    class="org.apache.http.impl.entity.DefaultClientEntityWriter" 
+  <bean id="http-entity-serializer"
+    class="org.apache.http.impl.entity.DefaultEntitySerializer" 
     singleton="false" />
   
-  <bean id="http-entity-generator"
-    class="org.apache.http.impl.entity.DefaultEntityGenerator" 
+  <bean id="http-entity-deserializer"
+    class="org.apache.http.impl.entity.DefaultEntityDeserializer" 
     singleton="false" />
   
   <bean id="http-connection" 
     class="org.apache.http.impl.DefaultHttpClientConnection" 
     singleton="false">
     <property name="responseFactory"><ref bean="http-response-factory"/></property>
-    <property name="entityWriter"><ref bean="http-entity-writer"/></property>
-    <property name="entityGenerator"><ref bean="http-entity-generator"/></property>
+    <property name="entitySerializer"><ref bean="http-entity-serializer"/></property>
+    <property name="entityDeserializer"><ref bean="http-entity-deserializer"/></property>
   </bean>
 
   <bean id="conn-reuse-strategy"