forked from wso2-extensions/identity-tools-debugger
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeveloper-debugger.toml
92 lines (71 loc) · 2.79 KB
/
developer-debugger.toml
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
enabled = true
[db_multi_connection_logger]
enable = true
[execution_time_logger]
enable = true
interceptions = [ "DefaultRequestCoordinator", "SessionDataStore", "AbstractUserStoreManager", "AccessTokenIssuer", "AccessTokenDAOImpl", "RequestObjectDAOImpl", "AuthorizationCodeDAOImpl", "OAuthScopeDAOImpl", "ReceiptDAOImpl", "PurposeDAOImpl", "PurposeCategoryDAOImpl", "PIICategoryDAOImpl"]
# Comment out unwanted interceptions.
[[interception]]
name="data_source_proxy"
class="org.apache.tomcat.jdbc.pool.DataSourceProxy"
[[data_source_proxy]]
method = "getConnection"
arguments = [] # Empty for 0 argument and class name for other types
return = "java.sql.Connection" # Empty for void and class name for other types.
[[interception]]
name="DefaultRequestCoordinator"
class="org.wso2.carbon.identity.application.authentication.framework.handler.request.impl.DefaultRequestCoordinator"
[[DefaultRequestCoordinator]]
method = "handle"
arguments = ["javax.servlet.http.HttpServletRequest", "javax.servlet.http.HttpServletResponse"]
return = ""
[[interception]]
name="AbstractUserStoreManager"
class="org.wso2.carbon.user.core.common.AbstractUserStoreManager"
[[AbstractUserStoreManager]]
method = "authenticate"
arguments = ["java.lang.String", "java.lang.Object"]
return = "boolean"
[[interception]]
name="AccessTokenIssuer"
class="org.wso2.carbon.identity.oauth2.token.AccessTokenIssuer"
[[AccessTokenIssuer]]
method = "issue"
arguments = ["org.wso2.carbon.identity.oauth2.dto.OAuth2AccessTokenReqDTO"]
return = "org.wso2.carbon.identity.oauth2.dto.OAuth2AccessTokenRespDTO"
[[interception]]
name="SessionDataStore"
class="org.wso2.carbon.identity.application.authentication.framework.store.SessionDataStore"
all_public_methods = true
[[interception]]
name="AccessTokenDAOImpl"
class="org.wso2.carbon.identity.oauth2.dao.AccessTokenDAOImpl"
all_public_methods = true
[[interception]]
name="RequestObjectDAOImpl"
class="org.wso2.carbon.identity.openidconnect.dao.RequestObjectDAOImpl"
all_public_methods = true
[[interception]]
name="AuthorizationCodeDAOImpl"
class="org.wso2.carbon.identity.oauth2.dao.AuthorizationCodeDAOImpl"
all_public_methods = true
[[interception]]
name="OAuthScopeDAOImpl"
class="org.wso2.carbon.identity.oauth2.dao.OAuthScopeDAOImpl"
all_public_methods = true
[[interception]]
name="ReceiptDAOImpl"
class="org.wso2.carbon.consent.mgt.core.dao.impl.ReceiptDAOImpl"
all_public_methods = true
[[interception]]
name="PurposeDAOImpl"
class="org.wso2.carbon.consent.mgt.core.dao.impl.PurposeDAOImpl"
all_public_methods = true
[[interception]]
name="PurposeCategoryDAOImpl"
class="org.wso2.carbon.consent.mgt.core.dao.impl.PurposeCategoryDAOImpl"
all_public_methods = true
[[interception]]
name="PIICategoryDAOImpl"
class="org.wso2.carbon.consent.mgt.core.dao.impl.PIICategoryDAOImpl"
all_public_methods = true