Bug 1381 SDN controller details pop-up doesn't show some attributes
* Modified the UI to show the IP and port as URL
Change-Id: Ia6aa9a86c736f96bd3c42bb25f28d0e77b092083
Signed-off-by: Barath Kumar R <barath.r@tataelxsi.co.in>
diff --git a/src/models/SDNControllerModel.ts b/src/models/SDNControllerModel.ts
index 2b5ab87..4aa0aed 100644
--- a/src/models/SDNControllerModel.ts
+++ b/src/models/SDNControllerModel.ts
@@ -22,16 +22,15 @@
/** Interface for SDNControllerModel */
export interface SDNControllerModel {
dpid: string;
- ip: string;
name: string;
password: string;
- port: string;
schema_version: string;
'type': string;
user: string;
version: string;
_admin: ADMIN;
_id: string;
+ url:string;
}
/** Interface for _ADMIN */
@@ -70,6 +69,5 @@
identifier: string;
'type': string;
operationalState: string;
- ip: string;
- port: string;
+ url: string;
}