-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsolr_auth_web.json
77 lines (77 loc) · 2.4 KB
/
solr_auth_web.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
{
"action_page_dir": "/projects/SolrAuthManager/pages/",
"pages": [
{
"page": "testpage.html"
}
],
"scripts": [],
"actions": [
{
"name": "test",
"page": "testpage.html",
"ContentType": "text/html",
"handler": "com.cprassoc.solr.auth.web.handlers.TestPageHandler"
},
{
"name": "isonline",
"page": "",
"ContentType": "application/json",
"handler": "com.cprassoc.solr.auth.web.handlers.IsOnlineHandler"
},
{
"name": "isauthenabled",
"page": "",
"ContentType": "application/json",
"handler": "com.cprassoc.solr.auth.web.handlers.IsAuthEnabledHandler"
},
{
"name": "listusers",
"page": "",
"ContentType": "application/json",
"handler": "com.cprassoc.solr.auth.web.handlers.ManageUsersHandler"
},
{
"name": "edituser",
"page": "",
"ContentType": "application/json",
"handler": "com.cprassoc.solr.auth.web.handlers.ManageUsersHandler"
},
{
"name": "adduser",
"page": "",
"ContentType": "application/json",
"handler": "com.cprassoc.solr.auth.web.handlers.ManageUsersHandler"
},
{
"name": "deleteuser",
"page": "",
"ContentType": "application/json",
"handler": "com.cprassoc.solr.auth.web.handlers.ManageUsersHandler"
},
{
"name": "listroles",
"page": "",
"ContentType": "application/json",
"handler": "com.cprassoc.solr.auth.web.handlers.ManageRolesHandler"
},
{
"name": "listpermissions",
"page": "",
"ContentType": "application/json",
"handler": "com.cprassoc.solr.auth.web.handlers.ManagePermissionsHandler"
},
{
"name": "getsecurityjson",
"page": "",
"ContentType": "application/json",
"handler": "com.cprassoc.solr.auth.web.handlers.SecurityJsonHandler"
},
{
"name": "properties",
"page": "",
"ContentType": "application/json",
"handler": "com.cprassoc.solr.auth.web.handlers.ManagePropertiesHandler"
}
]
}