aboutsummaryrefslogtreecommitdiffstats
path: root/deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/components/property/node-template/node-template.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/components/property/node-template/node-template.component.html')
-rw-r--r--deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/components/property/node-template/node-template.component.html49
1 files changed, 0 insertions, 49 deletions
diff --git a/deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/components/property/node-template/node-template.component.html b/deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/components/property/node-template/node-template.component.html
deleted file mode 100644
index a7cef5a3..00000000
--- a/deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/components/property/node-template/node-template.component.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<!--
-/**
- * Copyright (c) 2017 ZTE Corporation.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * and the Apache License 2.0 which both accompany this distribution,
- * and are available at http://www.eclipse.org/legal/epl-v10.html
- * and http://www.apache.org/licenses/LICENSE-2.0
- *
- * Contributors:
- * ZTE - initial API and implementation and/or initial documentation
- */
--->
-
-<div class="form-group row">
- <label class="col-md-3 form-control-label text-md-right">{{'WORKFLOW.TOSCA_NODE' | translate}}</label>
- <div class="col-md-9">
- <select class="form-control" [ngModel]="node.template.id"
- (ngModelChange)="node.template.id=$event; nodeTemplateChanged();">
- <option *ngFor="let template of nodeTemplates" value="{{template.id}}">{{template.name}}</option>
- </select>
- </div>
-</div>
-
-<div class="form-group row">
- <label class="col-md-3 form-control-label text-md-right">{{'WORKFLOW.TOSCA_INTERFACE' | translate}}</label>
- <div class="col-md-9">
- <select class="form-control" [ngModel]="node.nodeInterface"
- (ngModelChange)="nodeInterfaceChanged($event);">
- <option *ngFor="let interface of nodeInterfaces" value="{{interface}}">{{interface}}</option>
- </select>
- </div>
-</div>
-
-<div class="form-group row">
- <label class="col-md-3 form-control-label text-md-right">{{'WORKFLOW.TOSCA_OPERATION' | translate}}</label>
- <div class="col-md-9">
- <select class="form-control" [ngModel]="node.operation"
- (ngModelChange)="nodeOperationChanged($event)">
- <option *ngFor="let operation of nodeOperations" value="{{operation}}">{{operation}}</option>
- </select>
- </div>
-</div>
-<hr>
-
-<wfm-parameter *ngFor="let input of node.input" [param]="input" [valueSource]= "inputSources" [planItems]="planItems"></wfm-parameter>
-<hr *ngIf="0 < node.input.length">
-<wfm-parameter *ngFor="let output of node.output" [param]="output" [valueSource]= "outputSources" [planItems]="planItems"></wfm-parameter>
-