diff options
author | Arielk <Ariel.Kenan@amdocs.com> | 2019-02-28 16:37:57 +0200 |
---|---|---|
committer | Arielk <Ariel.Kenan@amdocs.com> | 2019-02-28 16:45:22 +0200 |
commit | e0c98681f9fcbae59eab32822784ae95c4768d40 (patch) | |
tree | b34640753dcc0f2f622555406ae241bb33eed7c0 /catalog-ui/src/app/ng2/services/component-services | |
parent | 1ca0cce9f4e2397b9fe33c906003a4dba51a934c (diff) |
fix artifact delivery id implementation
Change-Id: Ib2dc33852ff86ec0fd789b74e6a1fd7d9a50e798
Issue-ID: SDC-2084
Signed-off-by: Arielk <Ariel.Kenan@amdocs.com>
Diffstat (limited to 'catalog-ui/src/app/ng2/services/component-services')
-rw-r--r-- | catalog-ui/src/app/ng2/services/component-services/component.service.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/catalog-ui/src/app/ng2/services/component-services/component.service.ts b/catalog-ui/src/app/ng2/services/component-services/component.service.ts index e9036a805d..41bfc4e088 100644 --- a/catalog-ui/src/app/ng2/services/component-services/component.service.ts +++ b/catalog-ui/src/app/ng2/services/component-services/component.service.ts @@ -25,7 +25,7 @@ import 'rxjs/add/operator/map'; import 'rxjs/add/operator/toPromise'; import {Response, URLSearchParams} from '@angular/http'; import { Component, ComponentInstance, InputBEModel, InstancePropertiesAPIMap, FilterPropertiesAssignmentData, - PropertyBEModel, OperationModel, BEOperationModel, CreateOperationResponse} from "app/models"; + PropertyBEModel, OperationModel, BEOperationModel} from "app/models"; import {downgradeInjectable} from '@angular/upgrade/static'; import {COMPONENT_FIELDS, CommonUtils, SERVICE_FIELDS} from "app/utils"; import {ComponentGenericResponse} from "../responses/component-generic-response"; @@ -139,7 +139,7 @@ export class ComponentServiceNg2 { }); } - createInterfaceOperation(component:Component, operation:OperationModel):Observable<CreateOperationResponse> { + createInterfaceOperation(component:Component, operation:OperationModel):Observable<OperationModel> { const operationList = { 'interfaces': { [operation.interfaceType]: { @@ -154,7 +154,7 @@ export class ComponentServiceNg2 { .map((res:Response) => { const interf = _.find(res.json().interfaces, (interf: any) => interf.type === operation.interfaceType); const newOperation = _.find(interf.operations, (op:OperationModel) => op.name === operation.name); - return new CreateOperationResponse({ + return new OperationModel({ ...newOperation, interfaceType: interf.type, interfaceId: interf.uniqueId @@ -162,7 +162,7 @@ export class ComponentServiceNg2 { }); } - updateInterfaceOperation(component:Component, operation:OperationModel):Observable<CreateOperationResponse> { + updateInterfaceOperation(component:Component, operation:OperationModel):Observable<OperationModel> { const operationList = { 'interfaces': { [operation.interfaceType]: { @@ -177,7 +177,7 @@ export class ComponentServiceNg2 { .map((res:Response) => { const interf = _.find(res.json().interfaces, (interf: any) => interf.type === operation.interfaceType); const newOperation = _.find(interf.operations, (op:OperationModel) => op.name === operation.name); - return new CreateOperationResponse({ + return new OperationModel({ ...newOperation, interfaceType: interf.type, interfaceId: interf.uniqueId |