-
Notifications
You must be signed in to change notification settings - Fork 46
/
xs-security.json
100 lines (100 loc) · 2.56 KB
/
xs-security.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"xsappname": "openSAPHANA2020-ex",
"tenant-mode": "shared",
"scopes": [
{
"name": "$XSAPPNAME.Display",
"description": "display"
},
{
"name": "$XSAPPNAME.Create",
"description": "create"
},
{
"name": "$XSAPPNAME.Edit",
"description": "edit"
},
{
"name": "$XSAPPNAME.Delete",
"description": "delete"
},
{
"name": "$XSAPPNAME.Admin",
"description": "admin"
},
{
"name": "xs_authorization.read",
"description": "Read authorization information from UAA"
},
{
"name": "xs_authorization.write",
"description": "Write authorization information to UAA"
}
],
"attributes": [
{
"name": "client",
"description": "Session Client",
"valueType": "int"
},
{
"name": "country",
"description": "country",
"valueType": "s"
}
],
"role-templates": [
{
"name": "Token_Exchange",
"description": "UAA",
"scope-references": [
"uaa.user"
]
},
{
"name": "Viewer",
"description": "View all records",
"scope-references": [
"$XSAPPNAME.Display"
],
"attribute-references": [
"client",
"country"
]
},
{
"name": "Editor",
"description": "Edit and Delete records",
"scope-references": [
"$XSAPPNAME.Create",
"$XSAPPNAME.Edit",
"$XSAPPNAME.Delete",
"$XSAPPNAME.Display"
],
"attribute-references": [
"client"
]
},
{
"name": "Admin",
"description": "Application Admin",
"scope-references": [
"$XSAPPNAME.Create",
"$XSAPPNAME.Edit",
"$XSAPPNAME.Delete",
"$XSAPPNAME.Display",
"$XSAPPNAME.Admin"
],
"attribute-references": [
"client"
]
}
],
"oauth2-configuration": {
"redirect-uris": [
"http://localhost:5000",
"http://localhost:5000/login/callback",
"https://*applicationstudio.cloud.sap/login/callback"
]
}
}