aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/models/vnfInstance.ts
blob: 6082de67e4076225703753222c080883f172bccd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import {VfModuleMap} from "./vfModulesMap";
import {Level1Instance} from "./level1Instance";


export class VnfInstance extends Level1Instance {

  vfModules: { [vf_module_model_name: string] : VfModuleMap; };
  vnfStoreKey : string;
  position: number;
  statusMessage?: string;

  constructor() {
    super();
    this.vfModules = {};
    this.vnfStoreKey = null;
  }
}