aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/services/responses/component-generic-response.ts
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-ui/src/app/ng2/services/responses/component-generic-response.ts')
-rw-r--r--catalog-ui/src/app/ng2/services/responses/component-generic-response.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/catalog-ui/src/app/ng2/services/responses/component-generic-response.ts b/catalog-ui/src/app/ng2/services/responses/component-generic-response.ts
index 09ace56965..784a3d0ac9 100644
--- a/catalog-ui/src/app/ng2/services/responses/component-generic-response.ts
+++ b/catalog-ui/src/app/ng2/services/responses/component-generic-response.ts
@@ -59,6 +59,8 @@ export class ComponentGenericResponse implements Serializable<ComponentGenericR
public derivedList:Array<any>;
public nodeFilterforNode: Array<any>;
public substitutionFilterForTopologyTemplate: Array<any>;
+ public derivedFromGenericType;
+ public derivedFromGenericVersion;
deserialize (response): ComponentGenericResponse {
@@ -130,6 +132,12 @@ export class ComponentGenericResponse implements Serializable<ComponentGenericR
if(response.substitutionFilterForTopologyTemplate) {
this.substitutionFilterForTopologyTemplate = response.substitutionFilterForTopologyTemplate;
}
+ if(response.derivedFromGenericType) {
+ this.derivedFromGenericType = response.derivedFromGenericType;
+ }
+ if(response.derivedFromGenericVersion) {
+ this.derivedFromGenericVersion = response.derivedFromGenericVersion;
+ }
return this;
}
}