aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/models/vnfModel.ts
diff options
context:
space:
mode:
authorIttay Stern <ittay.stern@att.com>2018-08-29 17:01:32 +0300
committerIttay Stern <ittay.stern@att.com>2019-02-18 18:35:30 +0200
commit6f900cc45d7dd7f97430812b86b5c1d1693c8ae3 (patch)
tree936005c364dc5a7264d6304d4777c3d83494db22 /vid-webpack-master/src/app/shared/models/vnfModel.ts
parent67d99f816cc583643c35193197594cf78d8ce60a (diff)
merge from ecomp a88f0072 - Modern UI
Issue-ID: VID-378 Change-Id: Ibcb23dd27f550cf32ce2fe0239f0f496ae014ff6 Signed-off-by: Ittay Stern <ittay.stern@att.com>
Diffstat (limited to 'vid-webpack-master/src/app/shared/models/vnfModel.ts')
-rw-r--r--vid-webpack-master/src/app/shared/models/vnfModel.ts51
1 files changed, 13 insertions, 38 deletions
diff --git a/vid-webpack-master/src/app/shared/models/vnfModel.ts b/vid-webpack-master/src/app/shared/models/vnfModel.ts
index e1302f1d0..8389606b6 100644
--- a/vid-webpack-master/src/app/shared/models/vnfModel.ts
+++ b/vid-webpack-master/src/app/shared/models/vnfModel.ts
@@ -1,52 +1,27 @@
-import {NodeModel, NodeModelResponseInterface} from "./nodeModel";
-import {VfcInstanceGroupMap} from "./vfcInstanceGroupMap";
+import {
+ Level1Model,
+ Level1ModelProperties,
+ Level1ModelResponseInterface
+} from "./nodeModel";
-export interface VnfProperties {
- ecomp_generated_naming: string
-}
-export interface VNFModelResponseInterface extends NodeModelResponseInterface{
+export interface VnfProperties extends Level1ModelProperties{
+ ecomp_generated_naming: string;
+}
- serviceType: string;
- serviceRole: string;
- subCategory: string;
- customizationUuid: string;
- serviceEcompNaming: boolean;
- type: string;
- modelCustomizationName: string;
+export interface VNFModelResponseInterface extends Level1ModelResponseInterface{
properties: VnfProperties;
- vfcInstanceGroups: VfcInstanceGroupMap;
}
-export class VNFModel extends NodeModel{
-
- serviceType: string;
- serviceRole: string;
- subCategory: string;
- customizationUuid: string;
- isUserProvidedNaming: boolean;
- type: string;
- modelCustomizationName: string;
- vfcInstanceGroups: VfcInstanceGroupMap;
+export class VNFModel extends Level1Model{
+ properties: VnfProperties;
- constructor(vnfJson?: VNFModelResponseInterface){
+ constructor(vnfJson?: VNFModelResponseInterface) {
super(vnfJson);
if (vnfJson) {
- this.serviceType = vnfJson.serviceType;
- this.serviceRole = vnfJson.serviceRole;
- this.subCategory = vnfJson.subCategory;
- this.customizationUuid = vnfJson.customizationUuid;
- this.isUserProvidedNaming = this.getIsUserProvidedName(vnfJson);
- this.type = vnfJson.type;
- this.modelCustomizationName = vnfJson.modelCustomizationName;
- this.vfcInstanceGroups = vnfJson.vfcInstanceGroups;
-
+ this.properties = vnfJson.properties;
}
}
- private getIsUserProvidedName(vnfJson) {
- const ecompGeneratedNaming = vnfJson.properties.ecomp_generated_naming;
- return ecompGeneratedNaming !== undefined && ecompGeneratedNaming === "false";
- };
}