Bug 1381 SDN controller details pop-up doesn't show some attributes
[osm/NG-UI.git] / src / models / SDNControllerModel.ts
index 2b5ab87..4aa0aed 100644 (file)
 /** 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 @@ export interface SDNControllerList {
     identifier: string;
     'type': string;
     operationalState: string;
-    ip: string;
-    port: string;
+    url: string;
 }