blob: 30e2993acf06ce2fc366b7df014d0d1985267faf [file] [log] [blame]
Instrumental7a1817b2018-11-05 11:11:15 -06001#########
2# ============LICENSE_START====================================================
3# org.onap.aaf
4# ===========================================================================
5# Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
6# ===========================================================================
7# Licensed under the Apache License, Version 2.0 (the "License");
8# you may not use this file except in compliance with the License.
9# You may obtain a copy of the License at
10#
11# http://www.apache.org/licenses/LICENSE-2.0
12#
13# Unless required by applicable law or agreed to in writing, software
14# distributed under the License is distributed on an "AS IS" BASIS,
15# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16# See the License for the specific language governing permissions and
17# limitations under the License.
18# ============LICENSE_END====================================================
19#
Instrumentala20accc2018-03-26 13:49:56 -070020############################################################
21# Properties for OAuth Example
22# Jonathan Gathman
23# on 2018-01-30
24# These properties are the BARE essentials for OAuth calling
25############################################################
26# aaf_locate is the replacement whenever a URL is set to "AAF_LOCATE_URL"
27# at this time, only AAF has this ability.
28#
29# This is, effectively, the Environment you will use for AAF Location
30# TEST ENV
31aaf_locate_url=https://aaftest.test.att.com
32
33# IST ENV
34# aaf_locate_url=https://aafist.test.att.com
35
36# PROD ENV
37# aaf_locate_url=https://aaf.it.att.com
38
39cadi_latitude=<YOUR Latitude (try bing.com/maps)
40cadi_longitude=<YOUR Longitude>
41
42aaf_url=https://AAF_LOCATE_URL/locate/com.att.aaf.service:2.0
43cadi_keyfile=<YOUR Keyfile. Create with java -jar cadi-core<Version>.jar keygen keyfile. chmod 400 keyfile>
44
45aaf_id=<YOUR Fully Qualified AAF MechID>
46aaf_password=enc:<YOUR encrypted passwrod. Create with java -jar cadi-core<Version>.jar digest keyfile>
47# aaf_alias=<YOUR AAF Certman Generated alias FOR the right AAF Env>
48
49# aaf_conn_timeout=6000
50# aaf_timeout=10000
51
52# A Sample AAF OAuth Enabled Service
53#aaf_oauth2_hello_url=https://AAF_LOCATE_URL/locate/com.att.aaf.hello:2.0/hello
54aaf_oauth2_hello_url=http://135.46.170.156:32245/restservices/echo/v1/testCXF/testGet
55
56# OAuth2
57# AAF OAuth2 Service.
58aaf_oauth2_token_url=https://AAF_LOCATE_URL/locate/com.att.aaf.token:2.0/token
59aaf_oauth2_introspect_url=https://AAF_LOCATE_URL/locate/com.att.aaf.introspect:2.0/introspect
60
61#ISAM
62aaf_alt_oauth2_domain=isam.att.com
63#aaf_alt_oauth2_client_id=<get from ISAM>
Instrumental88aec4e2018-05-18 07:26:59 -050064#aaf_alt_oauth2_domain=people.osaaf.org
Instrumentala20accc2018-03-26 13:49:56 -070065
66#ISAM TEST
Instrumental17ca7442018-03-29 16:54:19 -050067aaf_alt_oauth2_token_url=https://oauth.stage.elogin.att.com/mga/sps/oauth/oauth20/token
68aaf_alt_oauth2_introspect_url=https://oauthapp.stage.att.com/mga/sps/oauth/oauth20/introspect
69aaf_alt_oauth2_client_secret=enc:<encrypt with cadi tool>
Instrumentala20accc2018-03-26 13:49:56 -070070
71#ISAM PROD
72#aaf_alt_oauth2_token_url=https://oauth.idp.elogin.att.com/mga/sps/oauth/oauth20/token
73#aaf_alt_oauth2_introspect_url=https://oa-app.e-access.att.com/mga/sps/oauth/oauth20/introspect
74#aaf_alt_oauth2_client_secret=enc:<encrypt with cadi tool>
75
76