當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript adf-core.AppConfigService類代碼示例

本文整理匯總了TypeScript中@alfresco/adf-core.AppConfigService的典型用法代碼示例。如果您正苦於以下問題:TypeScript AppConfigService類的具體用法?TypeScript AppConfigService怎麽用?TypeScript AppConfigService使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了AppConfigService類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: constructor

 constructor(
     private http: HttpClient,
     private alfrescoApi: AlfrescoApiService,
     private appConfig: AppConfigService) {
         this.ecmHost = this.appConfig.get<string>('ecmHost');
     }
開發者ID:AlbertoRamirezLosilla,項目名稱:alfresco-esign-cert,代碼行數:6,代碼來源:signature.service.ts

示例2: refreshData

 refreshData(): void {
     if (this.processInstance) {
         const defaultProperties = this.initDefaultProperties();
         const filteredProperties: string[] = this.appConfig.get('adf-process-instance-header.presets.properties');
         this.properties = defaultProperties.filter((cardItem) => this.isValidSelection(filteredProperties, cardItem));
     }
 }
開發者ID:Alfresco,項目名稱:alfresco-ng2-components,代碼行數:7,代碼來源:process-instance-header.component.ts

示例3: loadApps

 loadApps() {
     const apps = this.appConfig.get<any>('alfresco-deployed-apps', []);
     apps.map((app) => {
         app.theme = app.theme ? app.theme : 'theme-1';
         app.icon = app.icon ? app.icon : 'favorite';
     });
     this.deployedApps = apps;
 }
開發者ID:Alfresco,項目名稱:alfresco-ng2-components,代碼行數:8,代碼來源:app-deployment-cloud.service.ts

示例4: buildCreateTaskUrl

 private buildCreateTaskUrl(appName: string): any {
     return `${this.appConfigService.get('bpmHost')}/${appName}-rb/v1/tasks`;
 }
開發者ID:Alfresco,項目名稱:alfresco-ng2-components,代碼行數:3,代碼來源:start-task-cloud.service.ts

示例5: getApplicationUrl

 private getApplicationUrl(): string {
     return `${this.appConfigService.get('bpmHost')}/alfresco-deployment-service/v1/applications`;
 }
開發者ID:Alfresco,項目名稱:alfresco-ng2-components,代碼行數:3,代碼來源:apps-process-cloud.service.ts

示例6: getUserApi

  private getUserApi() {
    return `${this.appConfigService.get('identityHost')}/users`;
 }
開發者ID:Alfresco,項目名稱:alfresco-ng2-components,代碼行數:3,代碼來源:identity-user.service.ts

示例7: buildRolesUrl

 private buildRolesUrl(groupId: string): any {
     return `${this.appConfigService.get('identityHost')}/groups/${groupId}/role-mappings/realm/composite`;
 }
開發者ID:Alfresco,項目名稱:alfresco-ng2-components,代碼行數:3,代碼來源:group-cloud.service.ts

示例8: getGroupsApi

 private getGroupsApi() {
     return `${this.appConfigService.get('identityHost')}/groups`;
 }
開發者ID:Alfresco,項目名稱:alfresco-ng2-components,代碼行數:3,代碼來源:group-cloud.service.ts

示例9: getApplicationIdApi

 private getApplicationIdApi() {
     return `${this.appConfigService.get('identityHost')}/clients`;
 }
開發者ID:Alfresco,項目名稱:alfresco-ng2-components,代碼行數:3,代碼來源:group-cloud.service.ts

示例10: groupClientRoleMappingApi

 private groupClientRoleMappingApi(groupId: string, clientId: string): any {
     return `${this.appConfigService.get('identityHost')}/groups/${groupId}/role-mappings/clients/${clientId}`;
 }
開發者ID:Alfresco,項目名稱:alfresco-ng2-components,代碼行數:3,代碼來源:group-cloud.service.ts


注:本文中的@alfresco/adf-core.AppConfigService類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。