]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/xml/AsFlowDecorator.java
Ignore files
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / execution / xml / AsFlowDecorator.java
index 0a23b37a032f5cd990159ed28c9dccc81a6d9f4d..ecdf5b56a92220cb4e282e343110a0e2a4055432 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
+ * Copyright (C) 2007-2012 Argeo GmbH
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-
 package org.argeo.slc.core.execution.xml;
 
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 import org.argeo.slc.SlcException;
 import org.argeo.slc.core.execution.DefaultExecutionFlow;
+import org.argeo.slc.execution.ExecutionFlow;
 import org.springframework.beans.factory.config.BeanDefinitionHolder;
 import org.springframework.beans.factory.config.RuntimeBeanReference;
 import org.springframework.beans.factory.support.BeanDefinitionBuilder;
@@ -29,6 +29,7 @@ import org.springframework.beans.factory.xml.ParserContext;
 import org.w3c.dom.Attr;
 import org.w3c.dom.Node;
 
+/** Publishes a {@link Runnable} as an {@link ExecutionFlow} */
 public class AsFlowDecorator implements BeanDefinitionDecorator {
        private Log log = LogFactory.getLog(AsFlowDecorator.class);
 
@@ -38,25 +39,10 @@ public class AsFlowDecorator implements BeanDefinitionDecorator {
                String attrValue = ((Attr) node).getValue();
                if (attrValue.charAt(attrValue.length() - 1) == '/')
                        throw new SlcException(attrValue + " cannot end with a path");
-               // int lastSlash = attrValue.lastIndexOf('/');
-               // String path;
-               // String flowBeanName;
-               // if (lastSlash > 0) {
-               // flowBeanName = attrValue.substring(lastSlash + 1);
-               // path = attrValue.substring(0, lastSlash);
-               // } else if (lastSlash == 0) {
-               // flowBeanName = attrValue.substring(lastSlash + 1);
-               // path = null;
-               // } else {
-               // flowBeanName = attrValue;
-               // path = null;
-               // }
-               //
                final String flowBeanName = attrValue;
-               final String path = null;
 
                if (log.isTraceEnabled())
-                       log.debug("path=" + path + ", flowBeanName=" + flowBeanName);
+                       log.trace("flowBeanName=" + flowBeanName);
 
                if (ctx.getRegistry().containsBeanDefinition(flowBeanName))
                        throw new SlcException("A bean named " + flowBeanName
@@ -71,8 +57,8 @@ public class AsFlowDecorator implements BeanDefinitionDecorator {
                else
                        executables.add(new RuntimeBeanReference(beanName));
 
-               if (path != null)
-                       flow.addPropertyValue("path", path);
+               // if (path != null)
+               // flow.addPropertyValue("path", path);
                flow.addPropertyValue("executables", executables);
 
                if (beanName != null)