aboutsummaryrefslogtreecommitdiffstats
path: root/docs/oom_hardcoded_certificates.rst
AgeCommit message (Expand)AuthorFilesLines
2020-12-07[DOC] Remove warnings from documentation buildEric Debeau1-0/+2
2020-08-19[DOC] Correct RST filesEric Debeau1-67/+5
2020-08-03Improved readability of Hardcoded Certs list docdeen19851-34/+34
2020-06-08[AAF SMS] Use certInitializer for certificatesSylvain Desbureaux1-0/+2
2020-05-28[AAF] Add CMPv2 Cert ServiceEmmettCox1-0/+2
2020-05-06[COMMON] Override truststore in aaf_agent imageKrzysztof Opasiak1-2/+4
2020-05-05MUSIC spring boot helm charts (music-sb)Tschaen, Brendan1-0/+2
2020-05-04Release RC1Huabing Zhao1-0/+2
2020-04-16Add HTTPS ceritificate in CLI OOM chartsjitendra sharma1-0/+2
2020-04-15Update sparky-be server certJimmy Forsyth1-0/+2
2020-04-14Add APPC to cert tableTaka Cho1-0/+4
2020-04-07Merge "Add optf-cmso oom helm charts"Krzysztof Opasiak1-0/+6
2020-04-06Add optf-cmso oom helm chartsvrvarma1-0/+6
2020-04-05Added trust store for SOL003 Adapter & ETSI Catalog ManagerRamesh Parthasarathy1-0/+2
2020-04-02Updated sdc cert.k.kedron1-0/+2
2020-03-31[SO] Onboard ONAP CA during init phaseSylvain Desbureaux1-15/+37
2020-03-30Add server cert info for AAI mSJimmy Forsyth1-5/+15
2020-03-19New VID certificate valid until: Mar 17, 2021Ittay Stern1-0/+18
ngular/common/http'; import { Inject, Injectable } from '@angular/core'; import { Response } from '@angular/http'; import { Observable } from 'rxjs/Observable'; import { ISdcConfig, SdcConfigToken } from '../config/sdc-config.config'; import {map} from "rxjs/operators"; @Injectable() export class ElementService { protected baseUrl; constructor(protected http: HttpClient, @Inject(SdcConfigToken) sdcConfig: ISdcConfig) { this.baseUrl = sdcConfig.api.root; } getCategoryBasetypes(categoryName:string):Observable<BaseTypeResponse[]> { return this.http.get<ListBaseTypesResponse>(this.baseUrl + "/v1/category/services/" + categoryName + "/baseTypes") .pipe(map(response => response.baseTypes)); } }