donaldp 02/05/12 06:13:57
Modified: merlin/src/java/org/apache/excalibur/merlin
PipelineService.java
Log:
Removed uneeded specifiers that violate JLS
Revision Changes Path
1.2 +7 -10
jakarta-avalon-excalibur/merlin/src/java/org/apache/excalibur/merlin/PipelineService.java
Index: PipelineService.java
===================================================================
RCS file:
/home/cvs/jakarta-avalon-excalibur/merlin/src/java/org/apache/excalibur/merlin/PipelineService.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- PipelineService.java 10 May 2002 17:53:09 -0000 1.1
+++ PipelineService.java 12 May 2002 13:13:57 -0000 1.2
@@ -7,7 +7,6 @@
*
* Original contribution by OSM SARL, http://www.osm.net
*/
-
package org.apache.excalibur.merlin;
import org.apache.avalon.framework.component.Component;
@@ -20,27 +19,25 @@
* Interface supporting service loading and execution.
* @author Stephen McConnell <[EMAIL PROTECTED]>
*/
-public interface PipelineService
+public interface PipelineService
extends Component, Configurable, Contextualizable, Initializable,
Disposable
{
-
/**
* Service lookup key.
*/
- public static final String PIPELINE_SERVICE_KEY = "PIPELINE_SERVICE_KEY";
+ String PIPELINE_SERVICE_KEY = "PIPELINE_SERVICE_KEY";
/**
- * Applies sercies logging, contextulization, configuration,
initalization
+ * Applies sercies logging, contextulization, configuration, initalization
* and disposal, including dependent service composition and pipline
exeecution.
- * @param target the name of the implementation class of the the
component to
+ * @param target the name of the implementation class of the the
component to
* load into the pipeline
* @return Object the initalized service
- * @exception Exception if no corresponding [class-name].xinfo file can
be found,
+ * @exception Exception if no corresponding [class-name].xinfo file can
be found,
* or if a service pipeline general execution is encountered
*/
- public Object pipeline( String target ) throws Exception;
-
-
+ Object pipeline( String target )
+ throws Exception;
}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>