org.apache.cocoon.components.source.impl |
|
Java Source File Name | Type | Comment |
AbstractConfigurableSourceDescriptor.java | Class | Abstract base class SourceDescriptors that want to
configure the set of properties they handle beforehand. |
AbstractConfigurableSourceInspector.java | Class | Abstract base class for SourceInspectors that want to
configure the set of properties they handle beforehand. |
AbstractImageSourceInspector.java | Class | Abstract base class for inspectors that can calculate
the size of an image of a particular type. |
BlobSource.java | Class | A Source that takes its content in a single JDBC column. |
BlobSourceFactory.java | Class | A factory for 'blob:' sources. |
CachedSourceResponse.java | Class | Cached response for caching Source contents and extra meta information. |
CachingSource.java | Class | This class implements a proxy like source that uses another source
to get the content. |
CachingSourceFactory.java | Class | This class implements a proxy like source caches the contents of the source
it wraps. |
ContextSourceFactory.java | Class | A factory for the context protocol using the context of the servlet api. |
DelayedRefreshSourceWrapper.java | Class | A wrapper around a Source that reduces the number of calls to
Source.getLastModified() which can be a costly operation. |
EmptySource.java | Class | A Source that generates completely empty XML document or an
XML document that contains just a root node. |
EmptySourceFactory.java | Class | A factory for 'empty:' sources (see
EmptySource ). |
GIFSourceInspector.java | Class | This source inspector adds extra attributes for image files.
author: Stephan Michels author: Donald A. |
InspectableTraversableCachingSource.java | Class | TraversableCachingSource that adds support for SourceProperty caching. |
JPEGSourceInspector.java | Class | This source inspector adds extra attributes for image files.
author: Stephan Michels author: Donald A. |
ModuleSource.java | Class | A Source that takes its content from a
module. |
ModuleSourceFactory.java | Class | A factory for 'module:' sources (see
ModuleSource ). |
MultiSourceValidity.java | Class | |
PartSource.java | Class | Implementation of a
Source that gets its content
from a PartOnDisk or PartInMemory held in the Request when
a file is uploaded. |
PartSourceFactory.java | Class | A factory for
org.apache.cocoon.servlet.multipart.Part based sources (see
PartSource ). |
QDoxSource.java | Class | Source implementation for XML Javadoc. |
QDoxSourceFactory.java | Class | This
org.apache.excalibur.source.SourceFactory SourceFactory creates
org.apache.excalibur.source.Source Source s for the javadoc: URI scheme. |
RepositorySource.java | Class | Source wrapper that enhances the wrapped sources with additional capabilities. |
RepositorySourceFactory.java | Class | Creates RepositorySources. |
SimpleJdbcSourceDescriptor.java | Class | Simple SourceDescriptor implementation that can stores
properties over JDBC.
The descriptor is to be configured with the name of a datasource that
contains a table with the following scheme:
CREATE TABLE SOURCEPROPS(
SOURCE VARCHAR NOT NULL,
NAMESPACE VARCHAR NOT NULL,
NAME VARCHAR NOT NULL,
VALUE VARCHAR NOT NULL,
CONSTRAINT SYS_CT_11 UNIQUE(SOURCE,NAMESPACE,NAME))
The implementation will attempt to connect to the EventAware cache in
order to notify it during changes. |
SitemapSource.java | Class | Implementation of a
Source that gets its content
by invoking a pipeline. |
SitemapSourceFactory.java | Class | This class implements the cocoon: protocol. |
SlideSource.java | Class | A sources from jakarta slide repositories. |
SlideSourceFactory.java | Class | A factory for sources from a Jakarta Slide repository. |
SourceDeferredValidity.java | Class | Implementation of a
Source that gets its content
by invoking a pipeline. |
SourceDescriptorManager.java | Class | This source descriptor acts as container for a set of source inspectors/descriptors. |
TraversableCachingSource.java | Class | Traversable version of
org.apache.cocoon.components.source.impl.CachingSource . |
WebDAVSource.java | Class | A source implementation to get access to WebDAV repositories. |
WebDAVSourceFactory.java | Class | |
XMLDBSource.java | Class | This class implements the xmldb:// pseudo-protocol and allows to get XML
content from an XML:DB enabled XML database. |
XMLDBSourceFactory.java | Class | This class implements the xmldb:// pseudo-protocol and allows to get XML
content from an XML:DB enabled XML database.
The configuration of this protocol is as follows:
<source-factory name="xmldb" src="org.apache.cocoon.components.source.impl.XMLDBSourceFactory>
<driver type="foo" class="org.foomaker.FooXMLDBDriver"
user="scott" password="tiger"
collection="//localhost:8080/foo/base-path/"/>
<driver...
<source-factory>
The type attribute indicates the database type that will be used for URLs (e.g.
xmldb:foo:/path/ ). |
XModuleSource.java | Class | A ModifiableSource that takes its content from a
module. |
XModuleSourceFactory.java | Class | A factory for 'xmodule:' sources (see
XModuleSource ). |
XPathSourceInspector.java | Class | This source inspector inspects XML files with a xpath expression. |
ZipSource.java | Class | |
ZipSourceFactory.java | Class | Implementation of a
Source that gets its content from
a ZIP archive. |