Uses of Class
org.apache.james.mime4j.codec.DecodeMonitor
-
-
Uses of DecodeMonitor in org.apache.james.mime4j.codec
Fields in org.apache.james.mime4j.codec declared as DecodeMonitor Modifier and Type Field Description static DecodeMonitor
DecodeMonitor. SILENT
The SILENT monitor ignore requests.static DecodeMonitor
DecodeMonitor. STRICT
The STRICT monitor throws an exception on every event.Methods in org.apache.james.mime4j.codec with parameters of type DecodeMonitor Modifier and Type Method Description static String
DecoderUtil. decodeEncodedWords(String body, DecodeMonitor monitor)
Decodes a string containing encoded words as defined by RFC 2047.static String
DecoderUtil. decodeEncodedWords(String body, DecodeMonitor monitor, Charset fallback)
Decodes a string containing encoded words as defined by RFC 2047.static String
DecoderUtil. decodeEncodedWords(String body, DecodeMonitor monitor, Charset fallback, Map<Charset,Charset> charsetOverrides)
Decodes a string containing encoded words as defined by RFC 2047.Constructors in org.apache.james.mime4j.codec with parameters of type DecodeMonitor Constructor Description Base64InputStream(int bufsize, InputStream in, DecodeMonitor monitor)
Base64InputStream(InputStream in, DecodeMonitor monitor)
QuotedPrintableInputStream(int bufsize, InputStream in, DecodeMonitor monitor)
QuotedPrintableInputStream(InputStream in, DecodeMonitor monitor)
-
Uses of DecodeMonitor in org.apache.james.mime4j.dom
Methods in org.apache.james.mime4j.dom with parameters of type DecodeMonitor Modifier and Type Method Description T
FieldParser. parse(Field rawField, DecodeMonitor monitor)
Parses raw (unstructured) field and converts it into a structured field.Message.Builder
Message.Builder. use(DecodeMonitor monitor)
SetsDecodeMonitor
that will be used to handle malformed data when executingMessage.Builder.parse(java.io.InputStream)
. -
Uses of DecodeMonitor in org.apache.james.mime4j.field
Fields in org.apache.james.mime4j.field declared as DecodeMonitor Modifier and Type Field Description protected DecodeMonitor
AbstractField. monitor
Methods in org.apache.james.mime4j.field with parameters of type DecodeMonitor Modifier and Type Method Description static ParsedField
DefaultFieldParser. parse(String rawStr, DecodeMonitor monitor)
Parses the given string and returns an instance of theParsedField
class.static ParsedField
DefaultFieldParser. parse(ByteSequence raw, DecodeMonitor monitor)
Parses the given byte sequence and returns an instance of theParsedField
class.ParsedField
DelegatingFieldParser. parse(Field rawField, DecodeMonitor monitor)
static ParsedField
LenientFieldParser. parse(String rawStr, DecodeMonitor monitor)
Parses the given string and returns an instance of theField
class.static ParsedField
LenientFieldParser. parse(ByteSequence raw, DecodeMonitor monitor)
Parses the given byte sequence and returns an instance of theParsedField
class.Constructors in org.apache.james.mime4j.field with parameters of type DecodeMonitor Constructor Description AbstractField(Field rawField, DecodeMonitor monitor)
-
Uses of DecodeMonitor in org.apache.james.mime4j.field.address
Methods in org.apache.james.mime4j.field.address with parameters of type DecodeMonitor Modifier and Type Method Description Address
DefaultAddressParser. parseAddress(CharSequence text, DecodeMonitor monitor)
Parses the specified raw string into an address.AddressList
DefaultAddressParser. parseAddressList(CharSequence text, DecodeMonitor monitor)
Parse the address list string, such as the value of a From, To, Cc, Bcc, Sender, or Reply-To header.Group
DefaultAddressParser. parseGroup(CharSequence text, DecodeMonitor monitor)
Parses the specified raw string into a group address.Mailbox
DefaultAddressParser. parseMailbox(CharSequence text, DecodeMonitor monitor)
Parses the specified raw string into a mailbox address.Constructors in org.apache.james.mime4j.field.address with parameters of type DecodeMonitor Constructor Description LenientAddressParser(DecodeMonitor monitor)
-
Uses of DecodeMonitor in org.apache.james.mime4j.message
Methods in org.apache.james.mime4j.message with parameters of type DecodeMonitor Modifier and Type Method Description void
DefaultMessageBuilder. setDecodeMonitor(DecodeMonitor monitor)
MessageBuilder
MessageBuilder. use(DecodeMonitor monitor)
Deprecated.Constructors in org.apache.james.mime4j.message with parameters of type DecodeMonitor Constructor Description DefaultBodyDescriptorBuilder(String parentMimeType, FieldParser<? extends ParsedField> fieldParser, DecodeMonitor monitor)
Creates a newBodyDescriptor
instance.SimpleContentHandler(FieldParser<? extends ParsedField> fieldParser, DecodeMonitor monitor)
-
Uses of DecodeMonitor in org.apache.james.mime4j.parser
Constructors in org.apache.james.mime4j.parser with parameters of type DecodeMonitor Constructor Description MimeStreamParser(MimeConfig config, DecodeMonitor monitor, BodyDescriptorBuilder bodyDescBuilder)
-
Uses of DecodeMonitor in org.apache.james.mime4j.samples.dom
Subclasses of DecodeMonitor in org.apache.james.mime4j.samples.dom Modifier and Type Class Description class
LoggingMonitor
Fields in org.apache.james.mime4j.samples.dom declared as DecodeMonitor Modifier and Type Field Description static DecodeMonitor
LoggingMonitor. MONITOR
-
Uses of DecodeMonitor in org.apache.james.mime4j.storage
Constructors in org.apache.james.mime4j.storage with parameters of type DecodeMonitor Constructor Description StorageBodyFactory(StorageProvider storageProvider, DecodeMonitor monitor)
Creates a newBodyFactory
instance that uses the given storage provider for creating message bodies from input streams. -
Uses of DecodeMonitor in org.apache.james.mime4j.stream
Constructors in org.apache.james.mime4j.stream with parameters of type DecodeMonitor Constructor Description MimeTokenStream(MimeConfig config, DecodeMonitor monitor, BodyDescriptorBuilder bodyDescBuilder)
MimeTokenStream(MimeConfig config, DecodeMonitor monitor, FieldBuilder fieldBuilder, BodyDescriptorBuilder bodyDescBuilder)
-