Uses of Class
javax.activation.DataHandler
-
Packages that use DataHandler Package Description com.sun.mail.imap An IMAP protocol provider for the JavaMail API that provides access to an IMAP message store.javax.activation The JavaBeans(TM) Activation Framework is used by the JavaMail(TM) API to manage MIME data.javax.mail The JavaMail™ API provides classes that model a mail system.javax.mail.internet Classes specific to Internet mail systems. -
-
Uses of DataHandler in com.sun.mail.imap
Methods in com.sun.mail.imap that return DataHandler Modifier and Type Method Description DataHandler
IMAPBodyPart. getDataHandler()
DataHandler
IMAPMessage. getDataHandler()
Get the DataHandler object for this message.Methods in com.sun.mail.imap with parameters of type DataHandler Modifier and Type Method Description void
IMAPBodyPart. setDataHandler(DataHandler content)
void
IMAPMessage. setDataHandler(DataHandler content)
-
Uses of DataHandler in javax.activation
Fields in javax.activation declared as DataHandler Modifier and Type Field Description (package private) DataHandler
DataHandlerDataSource. dataHandler
Methods in javax.activation with parameters of type DataHandler Modifier and Type Method Description java.lang.Object
CommandInfo. getCommandObject(DataHandler dh, java.lang.ClassLoader loader)
Return the instantiated JavaBean component.void
CommandObject. setCommandContext(java.lang.String verb, DataHandler dh)
Initialize the Command with the verb it is requested to handle and the DataHandler that describes the data it will operate on.Constructors in javax.activation with parameters of type DataHandler Constructor Description DataHandlerDataSource(DataHandler dh)
The constructor. -
Uses of DataHandler in javax.mail
Methods in javax.mail that return DataHandler Modifier and Type Method Description DataHandler
Part. getDataHandler()
Return a DataHandler for the content within this part.Methods in javax.mail with parameters of type DataHandler Modifier and Type Method Description void
Part. setDataHandler(DataHandler dh)
This method provides the mechanism to set this part's content. -
Uses of DataHandler in javax.mail.internet
Subclasses of DataHandler in javax.mail.internet Modifier and Type Class Description (package private) static class
MimeBodyPart.MimePartDataHandler
A special DataHandler used only as a marker to indicate that the source of the data is a MimePart (that is, a byte array or a stream).Fields in javax.mail.internet declared as DataHandler Modifier and Type Field Description protected DataHandler
MimeBodyPart. dh
The DataHandler object representing this Part's content.protected DataHandler
MimeMessage. dh
The DataHandler object representing this Message's content.Methods in javax.mail.internet that return DataHandler Modifier and Type Method Description DataHandler
MimeBodyPart. getDataHandler()
Return a DataHandler for this body part's content.DataHandler
MimeMessage. getDataHandler()
Return a DataHandler for this Message's content.Methods in javax.mail.internet with parameters of type DataHandler Modifier and Type Method Description static java.lang.String
MimeUtility. getEncoding(DataHandler dh)
Same asgetEncoding(DataSource)
except that instead of reading the data from anInputStream
it uses thewriteTo
method to examine the data.void
MimeBodyPart. setDataHandler(DataHandler dh)
This method provides the mechanism to set this body part's content.void
MimeMessage. setDataHandler(DataHandler dh)
This method provides the mechanism to set this part's content.
-