]> 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
Do some clean up in SLC
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / execution / xml / AsFlowDecorator.java
index 98d22fe1508bb64105fc4c3105a651c7737081b9..d88792d9e68a78e496c2f285146670510071f39f 100644 (file)
@@ -20,6 +20,7 @@ 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 +30,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,22 +40,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;
 
                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
@@ -68,8 +58,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)