Package lumis.util
Class ScriptPathUtil.ProcessEntry
- java.lang.Object
-
- lumis.util.ScriptPathUtil.ProcessEntry
-
- Enclosing class:
- ScriptPathUtil
public static class ScriptPathUtil.ProcessEntry extends Object
Represents an entry in the xpath of a node provided to have its corresponding classPath attribute or node configured with the value of it's corresponding scriptPath attribute or node resolved, if it exists, indicating if such replacement must be made from the attribute or node.- Since:
- 8.1.0
- Version:
- $Revision: 17770 $ $Date: 2015-09-30 20:06:01 -0300 (Wed, 30 Sep 2015) $
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ScriptPathUtil.ProcessEntry
from(String classNameAttributeName, String scriptPathAttributeName, String xpath, ScriptPathUtil.ProcessType processType)
Returns a process entry using the given class attribute or node name, script path attribute or node name, the XPath to be processed and the process type.static ScriptPathUtil.ProcessEntry
from(String xpath, ScriptPathUtil.ProcessType processType)
Returns a process entry using the default class attribute or node name, the default script path attribute or node name, the given XPath to be processed and the given process type.
-
-
-
Method Detail
-
from
public static ScriptPathUtil.ProcessEntry from(String classNameAttributeName, String scriptPathAttributeName, String xpath, ScriptPathUtil.ProcessType processType)
Returns a process entry using the given class attribute or node name, script path attribute or node name, the XPath to be processed and the process type.- Parameters:
classNameAttributeName
- the class attribute or node name.scriptPathAttributeName
- the script path attribute or node name.xpath
- the XPath to be processed.processType
- the process type.- Returns:
- a process entry using the given class attribute or node name, script path attribute or node name, the XPath to be processed and the process type.
- Since:
- 8.1.0
-
from
public static ScriptPathUtil.ProcessEntry from(String xpath, ScriptPathUtil.ProcessType processType)
Returns a process entry using the default class attribute or node name, the default script path attribute or node name, the given XPath to be processed and the given process type.- Parameters:
xpath
- the XPath to be processed.processType
- the process type.- Returns:
- a process entry using the default class attribute or node name, the default script path attribute or node name, the given XPath to be processed and the given process type.
- Since:
- 8.1.0
-
-