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

removed double-double-brackets in type name

parent f0cd7d49
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ public class DependencyGraphCreatorStage extends AbstractTransformation<Software
public static DependencyGraphCreatorStage deploymentContainerLevel() {
return new DependencyGraphCreatorStage(DependencyGraphCreator.builder()
.containers().containerDependencies()
.containerTypeName("<<execution container>>")
.containerTypeName("execution container")
.graphName("DeploymentContainersDependencyGraph")
.build());
}
......@@ -20,7 +20,7 @@ public class DependencyGraphCreatorStage extends AbstractTransformation<Software
public static DependencyGraphCreatorStage deploymentComponentLevel() {
return new DependencyGraphCreatorStage(DependencyGraphCreator.builder()
.containers().components().componentDependencies()
.containerTypeName("<<execution container>>").componentTypeName("<<deployment component>>")
.containerTypeName("execution container").componentTypeName("deployment component")
.graphName("DeploymentComponentsDependencyGraph")
.build());
}
......@@ -28,7 +28,7 @@ public class DependencyGraphCreatorStage extends AbstractTransformation<Software
public static DependencyGraphCreatorStage deploymentOperationLevel() {
return new DependencyGraphCreatorStage(DependencyGraphCreator.builder()
.containers().components().operations().operationDependencies()
.containerTypeName("<<execution container>>").componentTypeName("<<deployment component>>")
.containerTypeName("execution container").componentTypeName("deployment component")
.graphName("DeploymentOperationsDependencyGraph")
.build());
}
......@@ -36,7 +36,7 @@ public class DependencyGraphCreatorStage extends AbstractTransformation<Software
public static DependencyGraphCreatorStage assemblyComponentLevel() {
return new DependencyGraphCreatorStage(DependencyGraphCreator.builder()
.components().componentDependencies()
.componentTypeName("<<assembly component>>")
.componentTypeName("assembly component")
.graphName("AssemblyComponentsDependencyGraph")
.build());
}
......@@ -44,7 +44,7 @@ public class DependencyGraphCreatorStage extends AbstractTransformation<Software
public static DependencyGraphCreatorStage assemblyOperationLevel() {
return new DependencyGraphCreatorStage(DependencyGraphCreator.builder()
.components().operations().operationDependencies()
.componentTypeName("<<assembly component>>")
.componentTypeName("assembly component")
.graphName("AssemblyOperationsDependencyGraph")
.build());
}
......
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