Uses of Interface
com.armatiek.infofuze.source.DataSourceIf

Packages that use DataSourceIf
com.armatiek.infofuze.pool   
com.armatiek.infofuze.source   
com.armatiek.infofuze.source.filesystem   
com.armatiek.infofuze.source.filesystem.cifs   
com.armatiek.infofuze.source.filesystem.local   
com.armatiek.infofuze.source.filesystem.webcrawl   
com.armatiek.infofuze.source.filesystem.webdav   
com.armatiek.infofuze.source.jdbc   
com.armatiek.infofuze.source.ldap   
com.armatiek.infofuze.source.solr   
com.armatiek.infofuze.stream   
 

Uses of DataSourceIf in com.armatiek.infofuze.pool
 

Methods in com.armatiek.infofuze.pool that return DataSourceIf
 DataSourceIf SourcePool.getSource(java.lang.String name)
          Returns the DataSourceIf object with specified name from the pool.
 

Methods in com.armatiek.infofuze.pool with parameters of type DataSourceIf
 void SourcePool.returnSource(DataSourceIf source)
          Returns specified DataSourceIf to the pool.
 

Uses of DataSourceIf in com.armatiek.infofuze.source
 

Classes in com.armatiek.infofuze.source that implement DataSourceIf
 class AbstractSAXSource
          An abstract base class for all SAX based Source classes.
 class AbstractStreamSource
          An abstract base class for all stream based Source classes.
 class CSVSource
           
 class NullSource
          The NullSource provides an empty XML stream.
 

Uses of DataSourceIf in com.armatiek.infofuze.source.filesystem
 

Classes in com.armatiek.infofuze.source.filesystem that implement DataSourceIf
 class FileSystemSource
          A JAXP bases abstract base class for all filesystem based Source classes.
 class HTTPBasedSource
          A JAXP bases abstract base class for all HTTP based Source classes.
 

Uses of DataSourceIf in com.armatiek.infofuze.source.filesystem.cifs
 

Classes in com.armatiek.infofuze.source.filesystem.cifs that implement DataSourceIf
 class CIFSSource
          JAXP based Source class that can be used to stream an XML representation of files within a CIFS/SMB filesystem.
 

Uses of DataSourceIf in com.armatiek.infofuze.source.filesystem.local
 

Classes in com.armatiek.infofuze.source.filesystem.local that implement DataSourceIf
 class LocalFileSystemSource
          JAXP based Source class that can be used to stream an XML representation of files within a local filesystem.
 

Uses of DataSourceIf in com.armatiek.infofuze.source.filesystem.webcrawl
 

Classes in com.armatiek.infofuze.source.filesystem.webcrawl that implement DataSourceIf
 class WebCrawlSource
          JAXP based Source class that can be used to stream an XML representation of the result of a website spider/crawl.
 

Uses of DataSourceIf in com.armatiek.infofuze.source.filesystem.webdav
 

Classes in com.armatiek.infofuze.source.filesystem.webdav that implement DataSourceIf
 class WebDAVSource
          JAXP based Source class that can be used to stream an XML representation of filesystems that can be accessed using the WebDAV protocol.
 

Uses of DataSourceIf in com.armatiek.infofuze.source.jdbc
 

Classes in com.armatiek.infofuze.source.jdbc that implement DataSourceIf
 class AbstractJDBCSource
           
 class DirectJDBCSource
           
 class JNDIJDBCSource
           
 class PooledJDBCSource
           
 

Uses of DataSourceIf in com.armatiek.infofuze.source.ldap
 

Classes in com.armatiek.infofuze.source.ldap that implement DataSourceIf
 class LDAPSource
          The LDAPSource can be used to stream the result of a search operation on a directory service using the Lightweight Directory Access Protocol (LDAP).
 

Uses of DataSourceIf in com.armatiek.infofuze.source.solr
 

Classes in com.armatiek.infofuze.source.solr that implement DataSourceIf
 class SolrSource
          JAXP based Source class that can be used to stream the XML response of a Solr search operation.
 

Uses of DataSourceIf in com.armatiek.infofuze.stream
 

Constructors in com.armatiek.infofuze.stream with parameters of type DataSourceIf
AutoCloseReader(java.io.Reader reader, DataSourceIf source)
          Creates an automatically closing proxy for the given reader.