Class ProcessConstants.ProcessElementIdentifierPath
- java.lang.Object
-
- de.aristaflow.adept2.model.globals.ProcessConstants.ProcessElementIdentifierPath
-
- Enclosing class:
- ProcessConstants
public static class ProcessConstants.ProcessElementIdentifierPath extends Object
This class holds information about the structure of identifier pathes of the process elements identified by the constants defined in classProcessConstants.ProcessElementIdentifier
.These information are organized in arrays. The first field in such an array contains the process element identifier of that process element the first ID within the identifier path in a process element identifier URI is assigned to. The next field contains the process element identifier of the process element the next ID within the identifier path is assigned to. And so on.
Each identifier path is seen relatively the base template and to the base instance respectively.
For further information about the identifier pathes see
ProcessElementIdentifierTools
.- Author:
- Markus Lauer
-
-
Constructor Summary
Constructors Constructor Description ProcessElementIdentifierPath()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static String[]
getIdentifierPathRelToBase(String processElementType)
Returns the information about the structure of the identifier path for the given process element.
-
-
-
Method Detail
-
getIdentifierPathRelToBase
public static final String[] getIdentifierPathRelToBase(String processElementType)
Returns the information about the structure of the identifier path for the given process element. This method returns null if the passed identifier is unknown.- Parameters:
processElementType
- The identifier that specifies the type of the process element.- Returns:
- the information about the identifier path or null if the passed identifier is unknown.
-
-