generator-anubhav-sac
Version:
Anubhav Trainings - Anubhav SAC HANA Adapter
52 lines (51 loc) • 1.08 kB
JSON
{
"xsappname": "<%= projectName %>",
"tenant-mode": "dedicated",
"scopes": [
{
<% if(authorization){ -%>
"name": "$XSAPPNAME.Viewer",
"description": "Viewer"
<% } else { -%>
"name": "uaa.user",
"description": "UAA"
<% } -%>
}
],
"role-templates": [
{
<% if(authorization){ -%>
"name": "Viewer",
"description": "Viewer",
"scope-references": [
"$XSAPPNAME.Viewer"
]
<% } else { -%>
"name": "Token_Exchange",
"description": "UAA Token Exchange",
"scope-references": [
"uaa.user"
]
<% } -%>
}
]
<% if(authorization){ -%>
,
"role-collections": [
{
"name": "<%= projectName %>_Viewer",
"description": "Viewing access",
"role-template-references": [
"$XSAPPNAME.Viewer"
]
}
],
"oauth2-configuration": {
"token-validity": 60000,
"refresh-token-validity": 2592000,
"redirect-uris": [
"https://*.cfapps.us10-001.hana.ondemand.com/login/callback"
]
}
<% } -%>
}