X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=vid-webpack-master%2Fsrc%2Fapp%2Fshared%2Fservices%2FaaiService%2Faai.service.ts;h=9026a5648a61e34e3f4b3f68cfa5c33a6ccfcb6e;hb=3f216a5ba38d70c193256f05c634093da9599984;hp=1cc5593f7573a2c88368c357806a97e7c8dcd082;hpb=212806afa99581acd7618add8be958d945690867;p=vid.git diff --git a/vid-webpack-master/src/app/shared/services/aaiService/aai.service.ts b/vid-webpack-master/src/app/shared/services/aaiService/aai.service.ts index 1cc5593f7..9026a5648 100644 --- a/vid-webpack-master/src/app/shared/services/aaiService/aai.service.ts +++ b/vid-webpack-master/src/app/shared/services/aaiService/aai.service.ts @@ -44,6 +44,11 @@ export class AaiService { } + sdncPreload(): Observable { + let pathQuery: string = Constants.Path.PRE_LOAD; + return this.http.post(pathQuery, {}) + } + getServiceModelById = (serviceModelId: string): Observable => { if (_.has(this.store.getState().service.serviceHierarchy, serviceModelId)) { return of( JSON.parse(JSON.stringify(this.store.getState().service.serviceHierarchy[serviceModelId])));