summaryrefslogtreecommitdiffstats
path: root/cds-ui/server/src/services/resource-dictionary.service.ts
diff options
context:
space:
mode:
authorDan Timoney <dtimoney@att.com>2019-05-13 12:52:44 +0000
committerGerrit Code Review <gerrit@onap.org>2019-05-13 12:52:44 +0000
commit425e1b49c18f4caebea2af79849e81c5aefb34b3 (patch)
tree97be7f9445d962f80ae23737693f3f0039ae4ce6 /cds-ui/server/src/services/resource-dictionary.service.ts
parent7bace3db55c2ca51431e88191cc7a8587d7aa508 (diff)
parent087d4b667a9c5517ac7d014c2bbdad994b927147 (diff)
Merge "Modify CDS-UI server to allow communicating with external blueprint mS"
Diffstat (limited to 'cds-ui/server/src/services/resource-dictionary.service.ts')
-rw-r--r--cds-ui/server/src/services/resource-dictionary.service.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/cds-ui/server/src/services/resource-dictionary.service.ts b/cds-ui/server/src/services/resource-dictionary.service.ts
index 44ba1a347..8bc61fad1 100644
--- a/cds-ui/server/src/services/resource-dictionary.service.ts
+++ b/cds-ui/server/src/services/resource-dictionary.service.ts
@@ -3,11 +3,11 @@ 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>;
+ getByName(name: string): Promise<JSON>;
+ getSourceMapping(): Promise<JSON>;
+ getByTags(tags: string): Promise<JSON>;
+ save(resourceDictionary: JSON): Promise<JSON>;
+ searchbyNames(resourceDictionaryList: JSON): Promise<JSON>;
}
export class ResourceDictionaryServiceProvider implements Provider<ResourceDictionaryService> {