Skip to content
Snippets Groups Projects
Commit 50b04b6d authored by Sören Henning's avatar Sören Henning
Browse files

short names for components

parent 2e948974
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,6 @@ public class DeploymentDependencyGraphCreator {
Vertex containerVertex = graph.addVertex(container.getIdentifier());
containerVertex.setProperty("Name", container.getName());
containerVertex.setProperty("ShortName", NameConverter.toShortOperationName(container.getName()));
containerVertex.setProperty("Type", "<<execution container>>");
containerVertex.setProperty("DurationTimeUnit", this.timeUnit.toString());
if (container.getMaxDuration() != null) {
......@@ -81,7 +80,7 @@ public class DeploymentDependencyGraphCreator {
Vertex componentVertex = componentGraph.addVertex(component.getIdentifier());
componentVertex.setProperty("Name", component.getName());
componentVertex.setProperty("ShortName", NameConverter.toShortOperationName(component.getName()));
componentVertex.setProperty("ShortName", NameConverter.toShortComponentName(component.getName()));
componentVertex.setProperty("Type", "<<deployment component>>");
componentVertex.setProperty("DurationTimeUnit", this.timeUnit.toString());
if (component.getMaxDuration() != null) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment