org.apache.cocoon.components.source.impl

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Content Management System » apache lenya 2.0 » org.apache.cocoon.components.source.impl 
org.apache.cocoon.components.source.impl
Java Source File NameTypeComment
AbstractConfigurableSourceDescriptor.javaClass Abstract base class SourceDescriptors that want to configure the set of properties they handle beforehand.
AbstractConfigurableSourceInspector.javaClass Abstract base class for SourceInspectors that want to configure the set of properties they handle beforehand.
AbstractImageSourceInspector.javaClass Abstract base class for inspectors that can calculate the size of an image of a particular type.
AvalonToCocoonSource.javaClass This source objects wraps an Avalon Excalibur Source to get an obsolete Cocoon Source object for the use of the deprecated org.apache.cocoon.environment.SourceResolver.resolve(String) method.
AvalonToCocoonSourceInvocationHandler.javaClass An InvocationHandler which acts as a proxy for excalibur Source objects to make them compatible with the cocoon Source interface.
BlobSource.javaClass A Source that takes its content in a single JDBC column.
BlobSourceFactory.javaClass A factory for 'blob:' sources.
CachedSourceResponse.javaClass Cached response for caching Source contents and extra meta information.
CachingSource.javaClass This class implements a proxy like source that uses another source to get the content.
CachingSourceFactory.javaClass This class implements a proxy like source caches the contents of the source it wraps.
CocoonToAvalonSource.javaClass This source objects wraps an obsolete Cocoon Source object to avoid recoding existing source objects.
ContextSourceFactory.javaClass A factory for the context protocol using the context of the servlet api.
DelayedRefreshSourceWrapper.javaClass A wrapper around a Source that reduces the number of calls to Source.getLastModified() which can be a costly operation.
EmptySource.javaClass A Source that generates completely empty XML document or an XML document that contains just a root node.
EmptySourceFactory.javaClass A factory for 'empty:' sources (see EmptySource ).
GIFSourceInspector.javaClass This source inspector adds extra attributes for image files.
author:
   Stephan Michels
author:
   Donald A.
InspectableTraversableCachingSource.javaClass TraversableCachingSource that adds support for SourceProperty caching.
JPEGSourceInspector.javaClass This source inspector adds extra attributes for image files.
author:
   Stephan Michels
author:
   Donald A.
ModuleSource.javaClass A Source that takes its content from a module.
ModuleSourceFactory.javaClass A factory for 'module:' sources (see ModuleSource ).
MultiSourceValidity.javaClass
PartSource.javaClass Implementation of a Source that gets its content from a PartOnDisk or PartInMemory held in the Request when a file is uploaded.
PartSourceFactory.javaClass A factory for org.apache.cocoon.servlet.multipart.Part based sources (see PartSource ).
QDoxSource.javaClass Source implementation for XML Javadoc.
QDoxSourceFactory.javaClass This org.apache.excalibur.source.SourceFactory SourceFactory creates org.apache.excalibur.source.Source Source s for the javadoc: URI scheme.
RepositorySource.javaClass Source wrapper that enhances the wrapped sources with additional capabilities.
RepositorySourceFactory.javaClass Creates RepositorySources.
SimpleJdbcSourceDescriptor.javaClass 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.javaClass Implementation of a Source that gets its content by invoking a pipeline.
SitemapSourceFactory.javaClass This class implements the cocoon: protocol.
SlideSource.javaClass A sources from jakarta slide repositories.
SlideSourceFactory.javaClass A factory for sources from a Jakarta Slide repository.
SourceDeferredValidity.javaClass Implementation of a Source that gets its content by invoking a pipeline.
SourceDescriptorManager.javaClass This source descriptor acts as container for a set of source inspectors/descriptors.
SourceFactoryWrapper.javaClass This class wraps a Cocoon SourceFactory and makes it usable within the Avalon Excalibur source resolving architecure.
TraversableCachingSource.javaClass Traversable version of org.apache.cocoon.components.source.impl.CachingSource .
URLFactoryWrapper.javaClass This class wraps a Cocoon URLFactory and makes it usable within the Avalon Excalibur source resolving architecure.
WebDAVSource.javaClass A source implementation to get access to WebDAV repositories.
WebDAVSourceFactory.javaClass
WebDAVSourceTestCase.javaClass
XMLDBSource.javaClass This class implements the xmldb:// pseudo-protocol and allows to get XML content from an XML:DB enabled XML database.
XMLDBSourceFactory.javaClass 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.javaClass A ModifiableSource that takes its content from a module.
XModuleSourceFactory.javaClass A factory for 'xmodule:' sources (see XModuleSource ).
XPathSourceInspector.javaClass This source inspector inspects XML files with a xpath expression.
ZipSource.javaClass
ZipSourceFactory.javaClass Implementation of a Source that gets its content from a ZIP archive.
ZipSourceTestCase.javaClass
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.