Uses of Class
org.apache.james.mime4j.message.BodyPartBuilder
-
Packages that use BodyPartBuilder Package Description org.apache.james.mime4j.message -
-
Uses of BodyPartBuilder in org.apache.james.mime4j.message
Methods in org.apache.james.mime4j.message that return BodyPartBuilder Modifier and Type Method Description static BodyPartBuilder
BodyPartBuilder. create()
BodyPartBuilder
BodyPartBuilder. setBody(byte[] bin, String mimeType)
Sets binary content of this message with the given MIME type.BodyPartBuilder
BodyPartBuilder. setBody(String text, String subtype, Charset charset)
Sets text of this message with the given MIME subtype and charset.BodyPartBuilder
BodyPartBuilder. setBody(String text, Charset charset)
Sets text of this message with the charset.BodyPartBuilder
BodyPartBuilder. setBody(BinaryBody binaryBody)
BodyPartBuilder
BodyPartBuilder. setBody(Body body)
BodyPartBuilder
BodyPartBuilder. setBody(Message message)
BodyPartBuilder
BodyPartBuilder. setBody(Multipart multipart)
BodyPartBuilder
BodyPartBuilder. setBody(TextBody textBody)
BodyPartBuilder
BodyPartBuilder. setContentDisposition(String dispositionType)
BodyPartBuilder
BodyPartBuilder. setContentDisposition(String dispositionType, String filename)
BodyPartBuilder
BodyPartBuilder. setContentDisposition(String dispositionType, String filename, long size)
BodyPartBuilder
BodyPartBuilder. setContentDisposition(String dispositionType, String filename, long size, Date creationDate, Date modificationDate, Date readDate)
BodyPartBuilder
BodyPartBuilder. setContentTransferEncoding(String contentTransferEncoding)
BodyPartBuilder
BodyPartBuilder. setContentType(String mimeType, NameValuePair... parameters)
BodyPartBuilder
BodyPartBuilder. setField(Field field)
BodyPartBuilder
BodyPartBuilder. use(BodyFactory bodyFactory)
SetsBodyFactory
that will be used to generate message body.Methods in org.apache.james.mime4j.message with parameters of type BodyPartBuilder Modifier and Type Method Description MultipartBuilder
MultipartBuilder. addBodyPart(BodyPartBuilder bodyPart)
-