Merge changes from topics "VID-11", "VID-10", "VID-9"
[vid.git] / vid-webpack-master / src / app / shared / models / vnfInstance.ts
1 import {VfModuleMap} from "./vfModulesMap";
2 import {Level1Instance} from "./level1Instance";
3
4
5 export class VnfInstance extends Level1Instance {
6
7   vfModules: { [vf_module_model_name: string] : VfModuleMap; };
8   vnfStoreKey : string;
9   position: number;
10   statusMessage?: string;
11   upgradedVFMSonsCounter: number;
12
13   constructor() {
14     super();
15     this.vfModules = {};
16     this.vnfStoreKey = null;
17     this.upgradedVFMSonsCounter = 0;
18   }
19 }