Uses of Interface
org.apache.http.entity.ContentLengthStrategy
Packages that use ContentLengthStrategy
Package
Description
Default implementations of HTTP connections for synchronous,
blocking communication.
Default implementations of entity content strategies.
Default implementations of HTTP connections for asynchronous,
even driven communication.
-
Uses of ContentLengthStrategy in org.apache.http.impl
Fields in org.apache.http.impl declared as ContentLengthStrategyModifier and TypeFieldDescriptionprivate final ContentLengthStrategyBHttpConnectionBase.incomingContentStrategyprivate final ContentLengthStrategyDefaultBHttpClientConnectionFactory.incomingContentStrategyprivate final ContentLengthStrategyDefaultBHttpServerConnectionFactory.incomingContentStrategyprivate final ContentLengthStrategyBHttpConnectionBase.outgoingContentStrategyprivate final ContentLengthStrategyDefaultBHttpClientConnectionFactory.outgoingContentStrategyprivate final ContentLengthStrategyDefaultBHttpServerConnectionFactory.outgoingContentStrategyConstructors in org.apache.http.impl with parameters of type ContentLengthStrategyModifierConstructorDescriptionprotectedBHttpConnectionBase(int bufferSize, int fragmentSizeHint, CharsetDecoder charDecoder, CharsetEncoder charEncoder, MessageConstraints messageConstraints, ContentLengthStrategy incomingContentStrategy, ContentLengthStrategy outgoingContentStrategy) Creates new instance of BHttpConnectionBase.DefaultBHttpClientConnection(int bufferSize, int fragmentSizeHint, CharsetDecoder charDecoder, CharsetEncoder charEncoder, MessageConstraints constraints, ContentLengthStrategy incomingContentStrategy, ContentLengthStrategy outgoingContentStrategy, HttpMessageWriterFactory<HttpRequest> requestWriterFactory, HttpMessageParserFactory<HttpResponse> responseParserFactory) Creates new instance of DefaultBHttpClientConnection.DefaultBHttpClientConnectionFactory(ConnectionConfig cconfig, ContentLengthStrategy incomingContentStrategy, ContentLengthStrategy outgoingContentStrategy, HttpMessageWriterFactory<HttpRequest> requestWriterFactory, HttpMessageParserFactory<HttpResponse> responseParserFactory) DefaultBHttpServerConnection(int bufferSize, int fragmentSizeHint, CharsetDecoder charDecoder, CharsetEncoder charEncoder, MessageConstraints constraints, ContentLengthStrategy incomingContentStrategy, ContentLengthStrategy outgoingContentStrategy, HttpMessageParserFactory<HttpRequest> requestParserFactory, HttpMessageWriterFactory<HttpResponse> responseWriterFactory) Creates new instance of DefaultBHttpServerConnection.DefaultBHttpServerConnectionFactory(ConnectionConfig cconfig, ContentLengthStrategy incomingContentStrategy, ContentLengthStrategy outgoingContentStrategy, HttpMessageParserFactory<HttpRequest> requestParserFactory, HttpMessageWriterFactory<HttpResponse> responseWriterFactory) -
Uses of ContentLengthStrategy in org.apache.http.impl.entity
Classes in org.apache.http.impl.entity that implement ContentLengthStrategyModifier and TypeClassDescriptionclassDecorator forContentLengthStrategyimplementations that disallows the use of identity transfer encoding.classThe lax implementation of the content length strategy.classThe strict implementation of the content length strategy.Fields in org.apache.http.impl.entity declared as ContentLengthStrategyModifier and TypeFieldDescriptionprivate final ContentLengthStrategyDisallowIdentityContentLengthStrategy.contentLengthStrategyprivate final ContentLengthStrategyEntityDeserializer.lenStrategyDeprecated.private final ContentLengthStrategyEntitySerializer.lenStrategyDeprecated.Constructors in org.apache.http.impl.entity with parameters of type ContentLengthStrategyModifierConstructorDescriptionDisallowIdentityContentLengthStrategy(ContentLengthStrategy contentLengthStrategy) EntityDeserializer(ContentLengthStrategy lenStrategy) Deprecated.EntitySerializer(ContentLengthStrategy lenStrategy) Deprecated. -
Uses of ContentLengthStrategy in org.apache.http.impl.nio
Fields in org.apache.http.impl.nio declared as ContentLengthStrategyModifier and TypeFieldDescriptionprivate final ContentLengthStrategyDefaultNHttpClientConnectionFactory.incomingContentStrategyprivate final ContentLengthStrategyDefaultNHttpServerConnectionFactory.incomingContentStrategyprotected final ContentLengthStrategyNHttpConnectionBase.incomingContentStrategyprivate final ContentLengthStrategySSLNHttpClientConnectionFactory.incomingContentStrategyprivate final ContentLengthStrategySSLNHttpServerConnectionFactory.incomingContentStrategyprivate final ContentLengthStrategyDefaultNHttpClientConnectionFactory.outgoingContentStrategyprivate final ContentLengthStrategyDefaultNHttpServerConnectionFactory.outgoingContentStrategyprotected final ContentLengthStrategyNHttpConnectionBase.outgoingContentStrategyprivate final ContentLengthStrategySSLNHttpClientConnectionFactory.outgoingContentStrategyprivate final ContentLengthStrategySSLNHttpServerConnectionFactory.outgoingContentStrategyMethods in org.apache.http.impl.nio that return ContentLengthStrategyModifier and TypeMethodDescriptionprotected ContentLengthStrategyDefaultNHttpServerConnection.createIncomingContentStrategy()Deprecated.(4.3) use constructor.protected ContentLengthStrategyNHttpConnectionBase.createIncomingContentStrategy()Deprecated.(4.3) use constructor.protected ContentLengthStrategyNHttpConnectionBase.createOutgoingContentStrategy()Deprecated.(4.3) use constructor.Constructors in org.apache.http.impl.nio with parameters of type ContentLengthStrategyModifierConstructorDescriptionDefaultNHttpClientConnection(IOSession session, int bufferSize, int fragmentSizeHint, ByteBufferAllocator allocator, CharsetDecoder charDecoder, CharsetEncoder charEncoder, MessageConstraints constraints, ContentLengthStrategy incomingContentStrategy, ContentLengthStrategy outgoingContentStrategy, NHttpMessageWriterFactory<HttpRequest> requestWriterFactory, NHttpMessageParserFactory<HttpResponse> responseParserFactory) Creates new instance DefaultNHttpClientConnection given the underlying I/O session.DefaultNHttpClientConnectionFactory(ContentLengthStrategy incomingContentStrategy, ContentLengthStrategy outgoingContentStrategy, NHttpMessageParserFactory<HttpResponse> responseParserFactory, NHttpMessageWriterFactory<HttpRequest> requestWriterFactory, ByteBufferAllocator allocator, ConnectionConfig cconfig) DefaultNHttpServerConnection(IOSession session, int bufferSize, int fragmentSizeHint, ByteBufferAllocator allocator, CharsetDecoder charDecoder, CharsetEncoder charEncoder, MessageConstraints constraints, ContentLengthStrategy incomingContentStrategy, ContentLengthStrategy outgoingContentStrategy, NHttpMessageParserFactory<HttpRequest> requestParserFactory, NHttpMessageWriterFactory<HttpResponse> responseWriterFactory) Creates new instance DefaultNHttpServerConnection given the underlying I/O session.DefaultNHttpServerConnectionFactory(ContentLengthStrategy incomingContentStrategy, ContentLengthStrategy outgoingContentStrategy, NHttpMessageParserFactory<HttpRequest> requestParserFactory, NHttpMessageWriterFactory<HttpResponse> responseWriterFactory, ByteBufferAllocator allocator, ConnectionConfig cconfig) protectedNHttpConnectionBase(IOSession session, int bufferSize, int fragmentSizeHint, ByteBufferAllocator allocator, CharsetDecoder charDecoder, CharsetEncoder charEncoder, MessageConstraints constraints, ContentLengthStrategy incomingContentStrategy, ContentLengthStrategy outgoingContentStrategy) Creates new instance NHttpConnectionBase given the underlying I/O session.protectedNHttpConnectionBase(IOSession session, int bufferSize, int fragmentSizeHint, ByteBufferAllocator allocator, CharsetDecoder charDecoder, CharsetEncoder charEncoder, ContentLengthStrategy incomingContentStrategy, ContentLengthStrategy outgoingContentStrategy) Creates new instance NHttpConnectionBase given the underlying I/O session.SSLNHttpClientConnectionFactory(SSLContext sslContext, SSLSetupHandler sslHandler, ContentLengthStrategy incomingContentStrategy, ContentLengthStrategy outgoingContentStrategy, NHttpMessageParserFactory<HttpResponse> responseParserFactory, NHttpMessageWriterFactory<HttpRequest> requestWriterFactory, ByteBufferAllocator allocator, ConnectionConfig cconfig) SSLNHttpServerConnectionFactory(SSLContext sslContext, SSLSetupHandler sslHandler, ContentLengthStrategy incomingContentStrategy, ContentLengthStrategy outgoingContentStrategy, NHttpMessageParserFactory<HttpRequest> requestParserFactory, NHttpMessageWriterFactory<HttpResponse> responseWriterFactory, ByteBufferAllocator allocator, ConnectionConfig cconfig)