aboutsummaryrefslogtreecommitdiffstats
path: root/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/topo/Edge.js
diff options
context:
space:
mode:
authorseshukm <seshu.kumar.m@huawei.com>2017-01-20 17:46:34 +0530
committerseshukm <seshu.kumar.m@huawei.com>2017-01-20 17:46:34 +0530
commit928ff2eb017b4cfe2a9d775688493fdcbed5c008 (patch)
treef0bea7b5baf04db7206ca0c8a3247598500e0dbc /portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/topo/Edge.js
parentf0b211f269df2b0bb10d5552d14aeb8991a750ed (diff)
Client code change form GSO-GUI to OPEN-O GUI
code restructured for the OPEN-O CLient. Issue-Id : CLIENT-11 Change-Id: Ib2846320c5522ca373ba7b1c12e3caa9443e5ea1 Signed-off-by: seshukm <seshu.kumar.m@huawei.com>
Diffstat (limited to 'portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/topo/Edge.js')
-rw-r--r--portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/topo/Edge.js33
1 files changed, 33 insertions, 0 deletions
diff --git a/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/topo/Edge.js b/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/topo/Edge.js
new file mode 100644
index 00000000..643f0e4a
--- /dev/null
+++ b/portal-lifecyclemgr/src/main/webapp/lifecyclemgr/js/topo/Edge.js
@@ -0,0 +1,33 @@
+/* Copyright 2016, Huawei Technologies Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+var edgeColors = {
+ red : "#f00",
+ green: "#0f0",
+ blue: "#00f",
+ yellow: "#ff0",
+ grey: "#555",
+ black: "#000"
+}
+
+function Edge(id, label, source, target, size, color) {
+ this.id = id;
+ this.label = label;
+ this.source = source;
+ this.target = target;
+ this.type = 'line';
+ this.size = size;
+ this.color = edgeColors[color];
+}