diff options
author | Dan Timoney <dtimoney@att.com> | 2019-04-12 13:00:15 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-04-12 13:00:15 +0000 |
commit | 132919b18a3d0c66b4cd86ba56144f51edba8b7b (patch) | |
tree | 7e6b95da952942370bc8aea426f6382ce8c416ea /cds-ui/server/src/services/resource-dictionary.service.ts | |
parent | 8055cf0081b832df4a7f8598d8196d8f2f3992d7 (diff) | |
parent | ebbafcac64d3dadf3abc380f091ccc368386af34 (diff) |
Merge "Resource Dictionary Loopback integration"
Diffstat (limited to 'cds-ui/server/src/services/resource-dictionary.service.ts')
-rw-r--r-- | cds-ui/server/src/services/resource-dictionary.service.ts | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/cds-ui/server/src/services/resource-dictionary.service.ts b/cds-ui/server/src/services/resource-dictionary.service.ts new file mode 100644 index 000000000..44ba1a347 --- /dev/null +++ b/cds-ui/server/src/services/resource-dictionary.service.ts @@ -0,0 +1,23 @@ +import {getService} from '@loopback/service-proxy'; +import {inject, Provider} from '@loopback/core'; +import {ResourceDictionaryDataSource} from '../datasources'; + +export interface ResourceDictionaryService { + getByName(name: string, authtoken: string): Promise<JSON>; + getSourceMapping(authtoken: string): Promise<JSON>; + getByTags(tags: string, authtoken: string): Promise<JSON>; + save(authtoken: string, resourceDictionary: JSON): Promise<JSON>; + searchbyNames(authtoken: string, resourceDictionaryList: JSON): Promise<JSON>; +} + +export class ResourceDictionaryServiceProvider implements Provider<ResourceDictionaryService> { + constructor( + // resourceDictionary must match the name property in the datasource json file + @inject('datasources.resourceDictionary') + protected dataSource: ResourceDictionaryDataSource = new ResourceDictionaryDataSource(), + ) {} + + value(): Promise<ResourceDictionaryService> { + return getService(this.dataSource); + } +} |