Uses of Interface
org.apache.james.mime4j.dom.Body
-
Packages that use Body Package Description org.apache.james.mime4j.dom org.apache.james.mime4j.internal org.apache.james.mime4j.message -
-
Uses of Body in org.apache.james.mime4j.dom
Subinterfaces of Body in org.apache.james.mime4j.dom Modifier and Type Interface Description interface
Message
An MIME message (as defined in RFC 2045).interface
Multipart
A MIME multipart body (as defined in RFC 2045).Classes in org.apache.james.mime4j.dom that implement Body Modifier and Type Class Description class
BinaryBody
A body containing binary data.class
SingleBody
Abstract implementation of a single message body; that is, a body that does not contain (directly or indirectly) any other child bodies.class
TextBody
Encapsulates the contents of atext/*
entity body.Methods in org.apache.james.mime4j.dom that return Body Modifier and Type Method Description Body
Entity. getBody()
Gets the body of this entity.Body
Entity. removeBody()
Removes and returns the body of this entity.Methods in org.apache.james.mime4j.dom with parameters of type Body Modifier and Type Method Description void
Entity. setBody(Body body)
Sets the body of this entity.Message.Builder
Message.Builder. setBody(Body body)
void
MessageWriter. writeBody(Body body, OutputStream out)
-
Uses of Body in org.apache.james.mime4j.internal
Methods in org.apache.james.mime4j.internal that return Body Modifier and Type Method Description Body
AbstractEntityBuilder. getBody()
Returns message body.Methods in org.apache.james.mime4j.internal with parameters of type Body Modifier and Type Method Description AbstractEntityBuilder
AbstractEntityBuilder. setBody(Body body)
Sets body of this message. -
Uses of Body in org.apache.james.mime4j.message
Classes in org.apache.james.mime4j.message that implement Body Modifier and Type Class Description class
AbstractMessage
Abstract MIME message.class
AbstractMultipart
Abstract MIME multipart body.class
MessageImpl
Default implementation ofMessage
.class
MultipartImpl
Default implementation ofMultipart
.Methods in org.apache.james.mime4j.message that return Body Modifier and Type Method Description Body
DefaultMessageBuilder. copy(Body body)
Returns a copy of the givenBody
that can be used (and modified) independently of the original.Body
AbstractEntity. getBody()
Gets the body of this entity.Body
MessageBuilder. getBody()
Deprecated.Body
AbstractEntity. removeBody()
Removes and returns the body of this entity.Methods in org.apache.james.mime4j.message with parameters of type Body Modifier and Type Method Description Body
DefaultMessageBuilder. copy(Body body)
Returns a copy of the givenBody
that can be used (and modified) independently of the original.void
AbstractEntity. setBody(Body body)
Sets the body of this entity.BodyPartBuilder
BodyPartBuilder. setBody(Body body)
MessageBuilder
MessageBuilder. setBody(Body body)
Deprecated.void
DefaultMessageWriter. writeBody(Body body, OutputStream out)
Write the specifiedBody
to the specifiedOutputStream
.
-