Uses of Interface
javax.activation.DataSource

Packages that use DataSource
com.arsdigita.acs   
javax.activation   
javax.mail   
javax.mail.internet   
 

Uses of DataSource in com.arsdigita.acs
 

Classes in com.arsdigita.acs that implement DataSource
(package private)  class ServletRequestDataSource
           
 

Uses of DataSource in javax.activation
 

Classes in javax.activation that implement DataSource
(package private)  class DataHandlerDataSource
          The DataHanderDataSource class implements the DataSource interface when the DataHandler is constructed with an Object and a mimeType string.
 class FileDataSource
          The FileDataSource class implements a simple DataSource object that encapsulates a file.
 class URLDataSource
          The URLDataSource class provides an object that wraps a URL object in a DataSource interface.
 

Methods in javax.activation that return DataSource
 DataSource DataHandler.getDataSource()
          Return the DataSource associated with this instance of DataHandler.
 

Methods in javax.activation with parameters of type DataSource
 Object DataContentHandler.getTransferData(DataFlavor df, DataSource ds)
          Returns an object which represents the data to be transferred.
 Object DataContentHandler.getContent(DataSource ds)
          Return an object representing the data in its most preferred form.
 Object DataSourceDataContentHandler.getTransferData(DataFlavor df, DataSource ds)
          Return the Transfer Data of type DataFlavor from InputStream.
 Object DataSourceDataContentHandler.getContent(DataSource ds)
           
 Object ObjectDataContentHandler.getTransferData(DataFlavor df, DataSource ds)
          Return the Transfer Data of type DataFlavor from InputStream.
 Object ObjectDataContentHandler.getContent(DataSource ds)
           
 

Constructors in javax.activation with parameters of type DataSource
DataHandler(DataSource ds)
          Create a DataHandler instance referencing the specified DataSource.
DataSourceDataContentHandler(DataContentHandler dch, DataSource ds)
          The constructor.
 

Uses of DataSource in javax.mail
 

Subinterfaces of DataSource in javax.mail
 interface MultipartDataSource
          MultipartDataSource is a DataSource that contains body parts.
 

Uses of DataSource in javax.mail.internet
 

Classes in javax.mail.internet that implement DataSource
 class MimePartDataSource
          A utility class that implements a DataSource out of a MimePart.
 

Fields in javax.mail.internet declared as DataSource
protected  DataSource MimeMultipart.ds
           
 

Methods in javax.mail.internet with parameters of type DataSource
static String MimeUtility.getEncoding(DataSource ds)
          Get the content-transfer-encoding that should be applied to the input stream of this datasource, to make it mailsafe.
 

Constructors in javax.mail.internet with parameters of type DataSource
MimeMultipart(DataSource ds)
          Constructs a MimeMultipart object and its bodyparts from the given DataSource.