unico 2003/12/08 10:07:42
Modified: src/blocks/slide/java/org/apache/cocoon/components/slide/impl
SlideRepositoryImpl.java
Log:
add explanatory comment as to why Composable
Revision Changes Path
1.3 +6 -7
cocoon-2.1/src/blocks/slide/java/org/apache/cocoon/components/slide/impl/SlideRepositoryImpl.java
Index: SlideRepositoryImpl.java
===================================================================
RCS file:
/home/cvs/cocoon-2.1/src/blocks/slide/java/org/apache/cocoon/components/slide/impl/SlideRepositoryImpl.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- SlideRepositoryImpl.java 3 Dec 2003 12:06:05 -0000 1.2
+++ SlideRepositoryImpl.java 8 Dec 2003 18:07:42 -0000 1.3
@@ -54,7 +54,6 @@
import java.util.Hashtable;
import org.apache.avalon.framework.activity.Disposable;
-
import org.apache.avalon.framework.component.Component;
import org.apache.avalon.framework.configuration.Configurable;
import org.apache.avalon.framework.configuration.Configuration;
@@ -68,24 +67,24 @@
import org.apache.avalon.framework.service.ServiceManager;
import org.apache.avalon.framework.service.Serviceable;
import org.apache.avalon.framework.thread.ThreadSafe;
-
import org.apache.cocoon.Constants;
import org.apache.cocoon.components.slide.SlideRepository;
import org.apache.cocoon.environment.Context;
-
import org.apache.excalibur.source.Source;
import org.apache.excalibur.source.SourceResolver;
import org.apache.excalibur.xml.sax.SAXParser;
-
import org.apache.slide.common.Domain;
import org.apache.slide.common.EmbeddedDomain;
import org.apache.slide.common.NamespaceAccessToken;
-
import org.xml.sax.InputSource;
/**
* The class represent a manger for slide repositories
- *
+ *
+ * IMPORTANT: do not remove Component interface as this cause ECM to
+ * throw an exception during startup. (Due to dynamic proxy generation
+ * and the fact that JTA is not on the classpath).
+ *
* @author <a href="mailto:[EMAIL PROTECTED]">Stephan Michels</a>
* @version CVS $Id$
*/