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 2009/02/14 22:20:22 UTC

svn commit: r744570 - in /httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio: entity/ protocol/ util/

Author: olegk
Date: Sat Feb 14 21:20:20 2009
New Revision: 744570

URL: http://svn.apache.org/viewvc?rev=744570&view=rev
Log:
Added deprecation comments

Modified:
    httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/ByteArrayNIOEntity.java
    httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/FileNIOEntity.java
    httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/HttpNIOEntity.java
    httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/StringNIOEntity.java
    httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/protocol/NHttpClientHandlerBase.java
    httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/protocol/NHttpServiceHandlerBase.java
    httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/util/ContentOutputBuffer.java

Modified: httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/ByteArrayNIOEntity.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/ByteArrayNIOEntity.java?rev=744570&r1=744569&r2=744570&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/ByteArrayNIOEntity.java (original)
+++ httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/ByteArrayNIOEntity.java Sat Feb 14 21:20:20 2009
@@ -43,7 +43,8 @@
  * standard {@link HttpEntity} interface this class also implements NIO specific 
  * {@link HttpNIOEntity}.
  *
- *
+ * @deprecated Use {@link NByteArrayEntity}
+ * 
  * @version $Revision$
  * 
  * @since 4.0

Modified: httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/FileNIOEntity.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/FileNIOEntity.java?rev=744570&r1=744569&r2=744570&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/FileNIOEntity.java (original)
+++ httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/FileNIOEntity.java Sat Feb 14 21:20:20 2009
@@ -44,7 +44,8 @@
  * {@link HttpEntity} interface this class also implements NIO specific 
  * {@link HttpNIOEntity}.
  *
- *
+ * @deprecated Use {@link NFileEntity}
+ * 
  * @version $Revision$
  * 
  * @since 4.0

Modified: httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/HttpNIOEntity.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/HttpNIOEntity.java?rev=744570&r1=744569&r2=744570&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/HttpNIOEntity.java (original)
+++ httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/HttpNIOEntity.java Sat Feb 14 21:20:20 2009
@@ -37,6 +37,8 @@
 import org.apache.http.HttpEntity;
 
 /**
+ * @deprecated Use {@link ProducingNHttpEntity}
+ * 
  * @since 4.0
  */
 @Deprecated

Modified: httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/StringNIOEntity.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/StringNIOEntity.java?rev=744570&r1=744569&r2=744570&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/StringNIOEntity.java (original)
+++ httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/entity/StringNIOEntity.java Sat Feb 14 21:20:20 2009
@@ -44,6 +44,7 @@
  * standard {@link HttpEntity} interface this class also implements NIO specific 
  * {@link HttpNIOEntity}.
  *
+ * @deprecated Use {@link NStringEntity}
  *
  * @version $Revision$
  * 

Modified: httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/protocol/NHttpClientHandlerBase.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/protocol/NHttpClientHandlerBase.java?rev=744570&r1=744569&r2=744570&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/protocol/NHttpClientHandlerBase.java (original)
+++ httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/protocol/NHttpClientHandlerBase.java Sat Feb 14 21:20:20 2009
@@ -42,6 +42,8 @@
 import org.apache.http.protocol.HttpProcessor;
 
 /**
+ * @deprecated No longer used.
+ * 
  * @since 4.0
  */
 @Deprecated

Modified: httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/protocol/NHttpServiceHandlerBase.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/protocol/NHttpServiceHandlerBase.java?rev=744570&r1=744569&r2=744570&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/protocol/NHttpServiceHandlerBase.java (original)
+++ httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/protocol/NHttpServiceHandlerBase.java Sat Feb 14 21:20:20 2009
@@ -45,6 +45,8 @@
 import org.apache.http.protocol.HttpRequestHandlerResolver;
 
 /**
+ * @deprecated No longer used.
+ * 
  * @since 4.0
  */
 @Deprecated

Modified: httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/util/ContentOutputBuffer.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/util/ContentOutputBuffer.java?rev=744570&r1=744569&r2=744570&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/util/ContentOutputBuffer.java (original)
+++ httpcomponents/httpcore/trunk/module-nio/src/main/java/org/apache/http/nio/util/ContentOutputBuffer.java Sat Feb 14 21:20:20 2009
@@ -59,6 +59,9 @@
      */
     void reset();
     
+    /**
+     * @deprecated No longer used.
+     */
     @Deprecated
     void flush() throws IOException;