Class TextLineCodecFactory
java.lang.Object
org.apache.mina.filter.codec.textline.TextLineCodecFactory
- All Implemented Interfaces:
ProtocolCodecFactory
A
ProtocolCodecFactory
that performs encoding and decoding between
a text line data and a Java string object. This codec is useful especially
when you work with a text-based protocols such as SMTP and IMAP.-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance with the current defaultCharset
.TextLineCodecFactory
(Charset charset) Creates a new instance with the specifiedCharset
. -
Method Summary
Modifier and TypeMethodDescriptionReturns a new (or reusable) instance ofProtocolDecoder
which decodes binary or protocol-specific data into message objects.int
Returns the allowed maximum size of the line to be decoded.Returns a new (or reusable) instance ofProtocolEncoder
which encodes message objects into binary or protocol-specific data.int
Returns the allowed maximum size of the encoded line.void
setDecoderMaxLineLength
(int maxLineLength) Sets the allowed maximum size of the line to be decoded.void
setEncoderMaxLineLength
(int maxLineLength) Sets the allowed maximum size of the encoded line.
-
Constructor Details
-
Method Details
-
getEncoder
Description copied from interface:ProtocolCodecFactory
Returns a new (or reusable) instance ofProtocolEncoder
which encodes message objects into binary or protocol-specific data.- Specified by:
getEncoder
in interfaceProtocolCodecFactory
-
getDecoder
Description copied from interface:ProtocolCodecFactory
Returns a new (or reusable) instance ofProtocolDecoder
which decodes binary or protocol-specific data into message objects.- Specified by:
getDecoder
in interfaceProtocolCodecFactory
-
getEncoderMaxLineLength
public int getEncoderMaxLineLength()Returns the allowed maximum size of the encoded line. If the size of the encoded line exceeds this value, the encoder will throw aIllegalArgumentException
. The default value isInteger.MAX_VALUE
.This method does the same job with
TextLineEncoder.getMaxLineLength()
. -
setEncoderMaxLineLength
public void setEncoderMaxLineLength(int maxLineLength) Sets the allowed maximum size of the encoded line. If the size of the encoded line exceeds this value, the encoder will throw aIllegalArgumentException
. The default value isInteger.MAX_VALUE
.This method does the same job with
TextLineEncoder.setMaxLineLength(int)
. -
getDecoderMaxLineLength
public int getDecoderMaxLineLength()Returns the allowed maximum size of the line to be decoded. If the size of the line to be decoded exceeds this value, the decoder will throw aBufferDataException
. The default value is 1024 (1KB).This method does the same job with
TextLineDecoder.getMaxLineLength()
. -
setDecoderMaxLineLength
public void setDecoderMaxLineLength(int maxLineLength) Sets the allowed maximum size of the line to be decoded. If the size of the line to be decoded exceeds this value, the decoder will throw aBufferDataException
. The default value is 1024 (1KB).This method does the same job with
TextLineDecoder.setMaxLineLength(int)
.
-