diff options
Diffstat (limited to 'catalog-ui/src/app/ng2/services')
-rw-r--r-- | catalog-ui/src/app/ng2/services/component-services/component.service.ts | 10 | ||||
-rw-r--r-- | catalog-ui/src/app/ng2/services/workflow.service.ts | 6 |
2 files changed, 8 insertions, 8 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 diff --git a/catalog-ui/src/app/ng2/services/workflow.service.ts b/catalog-ui/src/app/ng2/services/workflow.service.ts index 36d56d6fa7..81a2ea3b7f 100644 --- a/catalog-ui/src/app/ng2/services/workflow.service.ts +++ b/catalog-ui/src/app/ng2/services/workflow.service.ts @@ -3,7 +3,7 @@ import { Response } from "@angular/http"; import { Observable } from "rxjs/Observable"; import { HttpService } from "./http.service"; import { SdcConfigToken, ISdcConfig } from "../config/sdc-config.config"; -import { Component, CreateOperationResponse } from "app/models"; +import { Component, OperationModel } from "app/models"; interface WorkflowOutputParameter { name: string, @@ -30,9 +30,9 @@ export class WorkflowServiceNg2 { this.catalogBaseUrl = sdcConfig.api.POST_workflow_artifact; } - public associateWorkflowArtifact(component: Component, operation: CreateOperationResponse): Observable<any> { + public associateWorkflowArtifact(component: Component, operation: OperationModel): Observable<any> { return this.http.post(this.baseUrl + '/workflows/' + operation.workflowId + '/versions/' + operation.workflowVersionId + '/artifact-deliveries', { - endpoint: this.catalogBaseUrl + '/' + component.getTypeUrl() + component.uuid + '/interfaces/' + operation.interfaceId + '/operations/' + operation.uniqueId + '/artifacts/' + operation.artifactUUID, + endpoint: this.catalogBaseUrl + '/' + component.getTypeUrl() + component.uuid + '/interfaces/' + operation.interfaceId + '/operations/' + operation.uniqueId + '/artifacts/' + operation.implementation.artifactUUID, method: 'POST' }) .map((res:Response) => { |