X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=runtime%2Forg.argeo.slc.core%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fslc%2Fcore%2Fexecution%2Fxml%2FAsFlowDecorator.java;h=0a23b37a032f5cd990159ed28c9dccc81a6d9f4d;hb=13e60ab2bd66f0e8f23c7fca0791e2c382a49cfd;hp=1b38a2ebc2cda23f72cd888e02cb1d267b8ec024;hpb=cd5ecf6b79eea687ac472d53245450429e9ef4a8;p=gpl%2Fargeo-slc.git diff --git a/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/xml/AsFlowDecorator.java b/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/xml/AsFlowDecorator.java index 1b38a2ebc..0a23b37a0 100644 --- a/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/xml/AsFlowDecorator.java +++ b/runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/xml/AsFlowDecorator.java @@ -1,3 +1,19 @@ +/* + * Copyright (C) 2010 Mathieu Baudier + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * 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; @@ -22,19 +38,22 @@ 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; - } + // 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);