@rockcarver/frodo-lib 0.16.2-2 → 0.16.2-3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (118) hide show
  1. package/CHANGELOG.md +5 -1
  2. package/cjs/api/AgentApi.js +221 -0
  3. package/cjs/api/AgentApi.js.map +1 -0
  4. package/cjs/api/AgentApi.test.js.map +1 -0
  5. package/cjs/api/ApiTypes.js.map +1 -1
  6. package/cjs/api/BaseApi.js +15 -11
  7. package/cjs/api/BaseApi.js.map +1 -1
  8. package/cjs/index.js +5 -1
  9. package/cjs/index.js.map +1 -1
  10. package/cjs/ops/AgentOps.js +805 -0
  11. package/cjs/ops/AgentOps.js.map +1 -0
  12. package/cjs/ops/AgentOps.test.js.map +1 -0
  13. package/cjs/ops/AuthenticateOps.js +8 -8
  14. package/cjs/ops/AuthenticateOps.js.map +1 -1
  15. package/cjs/ops/JourneyOps.test.js.map +1 -1
  16. package/cjs/ops/OpsTypes.js.map +1 -1
  17. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/ajays_client.json +22 -0
  18. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/api_client.json +22 -0
  19. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/ig_chico.json +22 -0
  20. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/ig_mytestrun_com.json +32 -0
  21. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/J2EEAgent/javaAgent.json +623 -0
  22. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/J2EEAgent/tomcatagent.json +630 -0
  23. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/WebAgent/apacheagent.json +456 -0
  24. package/cjs/test/mocks/AgentApi/deleteAgentByTypeAndId/WebAgent/webserver.json +455 -0
  25. package/cjs/test/mocks/AgentApi/findAgentById/ajays_client.json +19 -0
  26. package/cjs/test/mocks/AgentApi/findAgentById/apacheagent.json +142 -0
  27. package/cjs/test/mocks/AgentApi/findAgentById/api_client.json +19 -0
  28. package/cjs/test/mocks/AgentApi/findAgentById/ig_chico.json +19 -0
  29. package/cjs/test/mocks/AgentApi/findAgentById/ig_mytestrun_com.json +29 -0
  30. package/cjs/test/mocks/AgentApi/findAgentById/javaAgent.json +190 -0
  31. package/cjs/test/mocks/AgentApi/findAgentById/tomcatagent.json +191 -0
  32. package/cjs/test/mocks/AgentApi/findAgentById/webserver.json +144 -0
  33. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/ajays_client.json +23 -0
  34. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/api_client.json +22 -0
  35. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/ig_chico.json +22 -0
  36. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/ig_mytestrun_com.json +33 -0
  37. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/J2EEAgent/javaAgent.json +193 -0
  38. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/J2EEAgent/tomcatagent.json +195 -0
  39. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/WebAgent/apacheagent.json +145 -0
  40. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/WebAgent/webserver.json +148 -0
  41. package/cjs/test/mocks/AgentApi/findAgentByTypeAndId/not_found.json +8 -0
  42. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/ajays_client.json +22 -0
  43. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/api_client.json +22 -0
  44. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/ig_chico.json +22 -0
  45. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/ig_mytestrun_com.json +32 -0
  46. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/J2EEAgent/javaAgent.json +623 -0
  47. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/J2EEAgent/tomcatagent.json +630 -0
  48. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/WebAgent/apacheagent.json +456 -0
  49. package/cjs/test/mocks/AgentApi/getAgentByTypeAndId/WebAgent/webserver.json +455 -0
  50. package/cjs/test/mocks/AgentApi/getAgentTypes/agentTypes.json +54 -0
  51. package/cjs/test/mocks/AgentApi/getAgents/agents.json +3862 -0
  52. package/cjs/test/mocks/AgentApi/getAgentsByType/IdentityGatewayAgents.json +73 -0
  53. package/cjs/test/mocks/AgentApi/getAgentsByType/J2EEAgents.json +379 -0
  54. package/cjs/test/mocks/AgentApi/getAgentsByType/WebAgents.json +284 -0
  55. package/cjs/test/mocks/ForgeRockApiMockEngine.js +147 -20
  56. package/cjs/test/mocks/ForgeRockApiMockEngine.js.map +1 -1
  57. package/esm/api/AgentApi.mjs +164 -0
  58. package/esm/api/AgentApi.test.mjs +267 -0
  59. package/esm/api/BaseApi.mjs +16 -4
  60. package/esm/index.mjs +2 -0
  61. package/esm/ops/AgentOps.mjs +576 -0
  62. package/esm/ops/AgentOps.test.mjs +1212 -0
  63. package/esm/ops/AuthenticateOps.mjs +8 -8
  64. package/esm/ops/JourneyOps.test.mjs +4 -8
  65. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/ajays_client.json +22 -0
  66. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/api_client.json +22 -0
  67. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/ig_chico.json +22 -0
  68. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/IdentityGatewayAgent/ig_mytestrun_com.json +32 -0
  69. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/J2EEAgent/javaAgent.json +623 -0
  70. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/J2EEAgent/tomcatagent.json +630 -0
  71. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/WebAgent/apacheagent.json +456 -0
  72. package/esm/test/mocks/AgentApi/deleteAgentByTypeAndId/WebAgent/webserver.json +455 -0
  73. package/esm/test/mocks/AgentApi/findAgentById/ajays_client.json +19 -0
  74. package/esm/test/mocks/AgentApi/findAgentById/apacheagent.json +142 -0
  75. package/esm/test/mocks/AgentApi/findAgentById/api_client.json +19 -0
  76. package/esm/test/mocks/AgentApi/findAgentById/ig_chico.json +19 -0
  77. package/esm/test/mocks/AgentApi/findAgentById/ig_mytestrun_com.json +29 -0
  78. package/esm/test/mocks/AgentApi/findAgentById/javaAgent.json +190 -0
  79. package/esm/test/mocks/AgentApi/findAgentById/tomcatagent.json +191 -0
  80. package/esm/test/mocks/AgentApi/findAgentById/webserver.json +144 -0
  81. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/ajays_client.json +23 -0
  82. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/api_client.json +22 -0
  83. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/ig_chico.json +22 -0
  84. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/IdentityGatewayAgent/ig_mytestrun_com.json +33 -0
  85. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/J2EEAgent/javaAgent.json +193 -0
  86. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/J2EEAgent/tomcatagent.json +195 -0
  87. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/WebAgent/apacheagent.json +145 -0
  88. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/WebAgent/webserver.json +148 -0
  89. package/esm/test/mocks/AgentApi/findAgentByTypeAndId/not_found.json +8 -0
  90. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/ajays_client.json +22 -0
  91. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/api_client.json +22 -0
  92. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/ig_chico.json +22 -0
  93. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/IdentityGatewayAgent/ig_mytestrun_com.json +32 -0
  94. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/J2EEAgent/javaAgent.json +623 -0
  95. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/J2EEAgent/tomcatagent.json +630 -0
  96. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/WebAgent/apacheagent.json +456 -0
  97. package/esm/test/mocks/AgentApi/getAgentByTypeAndId/WebAgent/webserver.json +455 -0
  98. package/esm/test/mocks/AgentApi/getAgentTypes/agentTypes.json +54 -0
  99. package/esm/test/mocks/AgentApi/getAgents/agents.json +3862 -0
  100. package/esm/test/mocks/AgentApi/getAgentsByType/IdentityGatewayAgents.json +73 -0
  101. package/esm/test/mocks/AgentApi/getAgentsByType/J2EEAgents.json +379 -0
  102. package/esm/test/mocks/AgentApi/getAgentsByType/WebAgents.json +284 -0
  103. package/esm/test/mocks/ForgeRockApiMockEngine.mjs +136 -20
  104. package/package.json +2 -2
  105. package/types/api/AgentApi.d.ts +51 -0
  106. package/types/api/AgentApi.d.ts.map +1 -0
  107. package/types/api/ApiTypes.d.ts +3 -0
  108. package/types/api/ApiTypes.d.ts.map +1 -1
  109. package/types/api/BaseApi.d.ts.map +1 -1
  110. package/types/index.d.ts +2 -0
  111. package/types/index.d.ts.map +1 -1
  112. package/types/ops/AgentOps.d.ts +210 -0
  113. package/types/ops/AgentOps.d.ts.map +1 -0
  114. package/types/ops/AuthenticateOps.d.ts.map +1 -1
  115. package/types/ops/OpsTypes.d.ts +5 -1
  116. package/types/ops/OpsTypes.d.ts.map +1 -1
  117. package/types/test/mocks/ForgeRockApiMockEngine.d.ts +35 -2
  118. package/types/test/mocks/ForgeRockApiMockEngine.d.ts.map +1 -1
@@ -0,0 +1,73 @@
1
+ {
2
+ "result": [
3
+ {
4
+ "_id": "ig_chico",
5
+ "_rev": "1137074734",
6
+ "igTokenIntrospection": "Realm_Subs",
7
+ "status": "Active",
8
+ "igCdssoRedirectUrls": [],
9
+ "userpassword": null,
10
+ "_type": {
11
+ "_id": "IdentityGatewayAgent",
12
+ "name": "Identity Gateway Agents",
13
+ "collection": true
14
+ }
15
+ },
16
+ {
17
+ "_id": "ig_mytestrun_com",
18
+ "_rev": "-836339434",
19
+ "igTokenIntrospection": "Realm_Subs",
20
+ "status": "Active",
21
+ "igCdssoRedirectUrls": [
22
+ "https://ig.mytestrun.com/expanse/cdsso/redirect",
23
+ "https://ig.mytestrun.com/ig-sample-app/cdsso/redirect",
24
+ "https://ig.mytestrun.com/forgerock/cdsso/redirect",
25
+ "https://ig.scheuber.io/ig/studio/cdsso/redirect",
26
+ "https://ig.mytestrun.com/prometheus/cdsso/redirect",
27
+ "https://ig.mytestrun.com/grafana/cdsso/redirect",
28
+ "https://ig.mytestrun.com/bi/cdsso/redirect",
29
+ "https://ig.mytestrun.com/ig/studio/cdsso/redirect",
30
+ "https://ig.mytestrun.com/ig/cdsso/redirect"
31
+ ],
32
+ "agentgroup": null,
33
+ "userpassword": null,
34
+ "_type": {
35
+ "_id": "IdentityGatewayAgent",
36
+ "name": "Identity Gateway Agents",
37
+ "collection": true
38
+ }
39
+ },
40
+ {
41
+ "_id": "ajays_client",
42
+ "_rev": "-1579763659",
43
+ "igTokenIntrospection": "Realm_Subs",
44
+ "status": "Active",
45
+ "igCdssoRedirectUrls": [],
46
+ "agentgroup": null,
47
+ "userpassword": null,
48
+ "_type": {
49
+ "_id": "IdentityGatewayAgent",
50
+ "name": "Identity Gateway Agents",
51
+ "collection": true
52
+ }
53
+ },
54
+ {
55
+ "_id": "api_client",
56
+ "_rev": "296563267",
57
+ "igTokenIntrospection": "Realm_Subs",
58
+ "status": "Active",
59
+ "igCdssoRedirectUrls": [],
60
+ "userpassword": null,
61
+ "_type": {
62
+ "_id": "IdentityGatewayAgent",
63
+ "name": "Identity Gateway Agents",
64
+ "collection": true
65
+ }
66
+ }
67
+ ],
68
+ "resultCount": 4,
69
+ "pagedResultsCookie": null,
70
+ "totalPagedResultsPolicy": "EXACT",
71
+ "totalPagedResults": 4,
72
+ "remainingPagedResults": -1
73
+ }
@@ -0,0 +1,379 @@
1
+ {
2
+ "result": [
3
+ {
4
+ "_id": "javaAgent",
5
+ "_rev": "409658535",
6
+ "ssoJ2EEAgentConfig": {
7
+ "encodeCookies": false,
8
+ "cookieResetDomains": {},
9
+ "authExchangeUri": null,
10
+ "authExchangeCookieName": null,
11
+ "setCookieInternalMap": {},
12
+ "excludedUserAgentsList": [],
13
+ "cdssoRedirectUri": "/agent/post-authn-redirect",
14
+ "cookieResetPaths": {},
15
+ "cdssoSecureCookies": false,
16
+ "acceptSsoTokenEnabled": false,
17
+ "acceptSsoTokenDomainList": [""],
18
+ "cdssoDomainList": [""],
19
+ "setCookieAttributeMap": {},
20
+ "cookieResetEnabled": false,
21
+ "cookieResetNames": [""],
22
+ "acceptIPDPCookie": false,
23
+ "httpOnly": true
24
+ },
25
+ "amServicesJ2EEAgent": {
26
+ "urlPolicyEnvPostParameters": [""],
27
+ "policyEvaluationRealm": "/",
28
+ "authServiceHost": "openam-volker-dev.forgeblocks.com",
29
+ "policyNotifications": true,
30
+ "conditionalLoginUrl": [""],
31
+ "customLoginEnabled": false,
32
+ "legacyLoginUrlList": [""],
33
+ "agentAdviceEncode": false,
34
+ "authServicePort": 443,
35
+ "urlPolicyEnvGetParameters": [""],
36
+ "restrictToRealm": {},
37
+ "urlPolicyEnvJsessionParameters": [""],
38
+ "amLoginUrl": [],
39
+ "conditionalLogoutUrl": [""],
40
+ "authServiceProtocol": "https",
41
+ "policyEvaluationApplication": "iPlanetAMWebAgentService",
42
+ "authSuccessRedirectUrl": false,
43
+ "overridePolicyEvaluationRealmEnabled": false
44
+ },
45
+ "globalJ2EEAgentConfig": {
46
+ "userTokenName": "UserToken",
47
+ "fqdnDefault": "openam-volker-dev.forgeblocks.com",
48
+ "httpSessionBinding": true,
49
+ "userpassword": null,
50
+ "webSocketConnectionIntervalInMinutes": 30,
51
+ "localAuditLogRotation": false,
52
+ "filterMode": {
53
+ "": "ALL"
54
+ },
55
+ "debugLogfileRotationSize": 52428800,
56
+ "status": "Active",
57
+ "debugLevel": "error",
58
+ "lbCookieName": "amlbcookie",
59
+ "auditLogLocation": "REMOTE",
60
+ "lbCookieEnabled": false,
61
+ "userPrincipalFlag": false,
62
+ "fqdnCheck": false,
63
+ "preAuthCookieMaxAge": 300,
64
+ "localAuditRotationSize": 52428800,
65
+ "fqdnMapping": {},
66
+ "debugLogfileRotationMinutes": -1,
67
+ "loginAttemptLimit": 0,
68
+ "auditAccessType": "LOG_NONE",
69
+ "redirectAttemptLimitCookieName": "amFilterRDParam",
70
+ "debugLogfileRetentionCount": -1,
71
+ "configurationReloadInterval": 0,
72
+ "agentgroup": null,
73
+ "debugLogfileSuffix": "-yyyy.MM.dd-HH.mm.ss",
74
+ "userAttributeName": "employeenumber",
75
+ "localAuditLogfileRetentionCount": -1,
76
+ "customResponseHeader": {},
77
+ "redirectAttemptLimit": 0,
78
+ "userMappingMode": "USER_ID",
79
+ "jwtName": "am-auth-jwt",
80
+ "repositoryLocation": "centralized",
81
+ "loginAttemptLimitCookieName": "amFilterParam",
82
+ "cdssoRootUrl": [
83
+ "agentRootURL=https://openam-volker-dev.forgeblocks.com:443/"
84
+ ],
85
+ "agentConfigChangeNotificationsEnabled": true,
86
+ "debugLogfilePrefix": null,
87
+ "preAuthCookieName": "amFilterCDSSORequest"
88
+ },
89
+ "applicationJ2EEAgentConfig": {
90
+ "profileAttributeFetchMode": "NONE",
91
+ "notEnforcedUris": [""],
92
+ "notEnforcedIpsCacheEnabled": true,
93
+ "logoutIntrospection": false,
94
+ "invertNotEnforcedUris": false,
95
+ "cookieAttributeUrlEncoded": true,
96
+ "cookieAttributeMultiValueSeparator": "|",
97
+ "notEnforcedRuleCompoundSeparator": "|",
98
+ "logoutRequestParameters": {},
99
+ "resourceAccessDeniedUri": {},
100
+ "continuousSecurityCookies": {},
101
+ "responseAttributeFetchMode": "NONE",
102
+ "notEnforcedUrisCacheEnabled": true,
103
+ "headerAttributeDateFormat": "EEE, d MMM yyyy hh:mm:ss z",
104
+ "profileAttributeMap": {},
105
+ "sessionAttributeFetchMode": "NONE",
106
+ "continuousSecurityHeaders": {},
107
+ "responseAttributeMap": {},
108
+ "notEnforcedUrisCacheSize": 1000,
109
+ "invertNotEnforcedIps": false,
110
+ "sessionAttributeMap": {},
111
+ "clientIpValidationRange": {},
112
+ "notEnforcedIpsCacheSize": 1000,
113
+ "clientIpValidationMode": {
114
+ "": "OFF"
115
+ },
116
+ "notEnforcedFavicon": true,
117
+ "logoutEntryUri": {},
118
+ "notEnforcedIps": [""],
119
+ "applicationLogoutUris": {}
120
+ },
121
+ "advancedJ2EEAgentConfig": {
122
+ "postDataStickySessionKeyValue": null,
123
+ "xssDetectionRedirectUri": {},
124
+ "postDataCacheTtlMin": 5,
125
+ "jwtCacheSize": 5000,
126
+ "postDataPreservation": false,
127
+ "policyCacheSize": 5000,
128
+ "postDataPreserveCacheEntryMaxEntries": 1000,
129
+ "postDataPreserveCacheEntryMaxTotalSizeMb": -1,
130
+ "ssoExchangeCacheSize": 100,
131
+ "sessionCacheTTL": 15,
132
+ "idleTimeRefreshWindow": 1,
133
+ "ssoExchangeCacheTTL": 5,
134
+ "possibleXssCodeElements": [""],
135
+ "alternativeAgentPort": null,
136
+ "policyClientPollingInterval": 3,
137
+ "missingPostDataPreservationEntryUri": [""],
138
+ "clientIpHeader": null,
139
+ "alternativeAgentProtocol": null,
140
+ "jwtCacheTTL": 30,
141
+ "customProperties": [],
142
+ "policyCachePerUser": 50,
143
+ "expiredSessionCacheTTL": 20,
144
+ "fragmentRelayUri": null,
145
+ "postDataStickySessionMode": "URL",
146
+ "alternativeAgentHostname": null,
147
+ "expiredSessionCacheSize": 500,
148
+ "clientHostnameHeader": null,
149
+ "monitoringToCSV": false
150
+ },
151
+ "miscJ2EEAgentConfig": {
152
+ "legacyUserAgentList": ["Mozilla/4.7*"],
153
+ "loginReasonMap": {},
154
+ "authFailReasonParameterRemapper": {},
155
+ "agent302RedirectStatusCode": 200,
156
+ "loginReasonParameterName": null,
157
+ "gotoUrl": null,
158
+ "localeLanguage": "en",
159
+ "authFailReasonParameterName": null,
160
+ "unwantedHttpUrlParams": [""],
161
+ "agent302RedirectContentType": "application/json",
162
+ "agent302RedirectEnabled": true,
163
+ "legacyUserAgentSupport": false,
164
+ "wantedHttpUrlParams": [""],
165
+ "ignorePathInfo": false,
166
+ "agent302RedirectInvertEnabled": false,
167
+ "wantedHttpUrlRegexParams": [""],
168
+ "localeCountry": "US",
169
+ "agent302RedirectHttpData": "{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}",
170
+ "agent302RedirectNerList": [""],
171
+ "legacyRedirectUri": "/agent/sunwLegacySupportURI",
172
+ "portCheckFile": "PortCheckContent.txt",
173
+ "authFailReasonUrl": null,
174
+ "gotoParameterName": "goto",
175
+ "portCheckSetting": {
176
+ "443": "https"
177
+ },
178
+ "unwantedHttpUrlRegexParams": [""],
179
+ "portCheckEnabled": false
180
+ },
181
+ "_type": {
182
+ "_id": "J2EEAgent",
183
+ "name": "J2EE Agents",
184
+ "collection": true
185
+ }
186
+ },
187
+ {
188
+ "_id": "tomcatagent",
189
+ "_rev": "-2141735165",
190
+ "ssoJ2EEAgentConfig": {
191
+ "encodeCookies": false,
192
+ "cookieResetDomains": {},
193
+ "authExchangeUri": null,
194
+ "authExchangeCookieName": null,
195
+ "setCookieInternalMap": {},
196
+ "excludedUserAgentsList": [],
197
+ "cdssoRedirectUri": "/agentapp/post-authn-redirect",
198
+ "cookieResetPaths": {},
199
+ "cdssoSecureCookies": false,
200
+ "acceptSsoTokenEnabled": false,
201
+ "acceptSsoTokenDomainList": [""],
202
+ "cdssoDomainList": [""],
203
+ "setCookieAttributeMap": {},
204
+ "cookieResetEnabled": false,
205
+ "cookieResetNames": [""],
206
+ "acceptIPDPCookie": false,
207
+ "httpOnly": true
208
+ },
209
+ "amServicesJ2EEAgent": {
210
+ "urlPolicyEnvPostParameters": [""],
211
+ "policyEvaluationRealm": "/alpha",
212
+ "authServiceHost": "openam-volker-dev.forgeblocks.com",
213
+ "policyNotifications": true,
214
+ "conditionalLoginUrl": ["|?realm=/alpha"],
215
+ "customLoginEnabled": false,
216
+ "legacyLoginUrlList": [""],
217
+ "agentAdviceEncode": false,
218
+ "authServicePort": 443,
219
+ "urlPolicyEnvGetParameters": [""],
220
+ "restrictToRealm": {},
221
+ "urlPolicyEnvJsessionParameters": [""],
222
+ "amLoginUrl": [],
223
+ "conditionalLogoutUrl": [""],
224
+ "authServiceProtocol": "https",
225
+ "policyEvaluationApplication": "apps",
226
+ "authSuccessRedirectUrl": false,
227
+ "overridePolicyEvaluationRealmEnabled": false
228
+ },
229
+ "globalJ2EEAgentConfig": {
230
+ "userTokenName": "UserToken",
231
+ "fqdnDefault": "apps2.mytestrun.com",
232
+ "recheckAmUnavailabilityInSeconds": 5,
233
+ "httpSessionBinding": true,
234
+ "userpassword": null,
235
+ "webSocketConnectionIntervalInMinutes": 30,
236
+ "localAuditLogRotation": false,
237
+ "filterMode": {
238
+ "": "URL_POLICY"
239
+ },
240
+ "debugLogfileRotationSize": 52428800,
241
+ "status": "Active",
242
+ "debugLevel": "message",
243
+ "lbCookieName": "amlbcookie",
244
+ "auditLogLocation": "ALL",
245
+ "lbCookieEnabled": false,
246
+ "userPrincipalFlag": false,
247
+ "fqdnCheck": false,
248
+ "preAuthCookieMaxAge": 300,
249
+ "localAuditRotationSize": 52428800,
250
+ "fqdnMapping": {},
251
+ "debugLogfileRotationMinutes": -1,
252
+ "loginAttemptLimit": 0,
253
+ "auditAccessType": "LOG_NONE",
254
+ "redirectAttemptLimitCookieName": "amFilterRDParam",
255
+ "debugLogfileRetentionCount": -1,
256
+ "configurationReloadInterval": 10,
257
+ "agentgroup": null,
258
+ "debugLogfileSuffix": "-yyyy.MM.dd-HH.mm.ss",
259
+ "userAttributeName": "uid",
260
+ "localAuditLogfileRetentionCount": -1,
261
+ "customResponseHeader": {},
262
+ "redirectAttemptLimit": 0,
263
+ "userMappingMode": "USER_ID",
264
+ "jwtName": "am-auth-jwt",
265
+ "repositoryLocation": "centralized",
266
+ "loginAttemptLimitCookieName": "amFilterParam",
267
+ "cdssoRootUrl": [
268
+ "agentRootURL=http://localhost:8080/",
269
+ "agentRootURL=https://apps2.mytestrun.com:443/"
270
+ ],
271
+ "agentConfigChangeNotificationsEnabled": false,
272
+ "debugLogfilePrefix": null,
273
+ "preAuthCookieName": "amFilterCDSSORequest"
274
+ },
275
+ "applicationJ2EEAgentConfig": {
276
+ "profileAttributeFetchMode": "NONE",
277
+ "notEnforcedUris": [""],
278
+ "notEnforcedIpsCacheEnabled": true,
279
+ "logoutIntrospection": false,
280
+ "invertNotEnforcedUris": false,
281
+ "cookieAttributeUrlEncoded": true,
282
+ "cookieAttributeMultiValueSeparator": "|",
283
+ "notEnforcedRuleCompoundSeparator": "|",
284
+ "logoutRequestParameters": {},
285
+ "resourceAccessDeniedUri": {},
286
+ "continuousSecurityCookies": {},
287
+ "responseAttributeFetchMode": "NONE",
288
+ "notEnforcedUrisCacheEnabled": true,
289
+ "headerAttributeDateFormat": "EEE, d MMM yyyy hh:mm:ss z",
290
+ "profileAttributeMap": {},
291
+ "sessionAttributeFetchMode": "NONE",
292
+ "continuousSecurityHeaders": {},
293
+ "responseAttributeMap": {},
294
+ "notEnforcedUrisCacheSize": 1000,
295
+ "invertNotEnforcedIps": false,
296
+ "sessionAttributeMap": {},
297
+ "clientIpValidationRange": {},
298
+ "notEnforcedIpsCacheSize": 1000,
299
+ "clientIpValidationMode": {
300
+ "": "OFF"
301
+ },
302
+ "notEnforcedFavicon": true,
303
+ "logoutEntryUri": {},
304
+ "notEnforcedIps": [""],
305
+ "applicationLogoutUris": {}
306
+ },
307
+ "advancedJ2EEAgentConfig": {
308
+ "postDataStickySessionKeyValue": null,
309
+ "xssDetectionRedirectUri": {},
310
+ "postDataCacheTtlMin": 5,
311
+ "jwtCacheSize": 5000,
312
+ "postDataPreservation": false,
313
+ "policyCacheSize": 5000,
314
+ "postDataPreserveCacheEntryMaxEntries": 1000,
315
+ "postDataPreserveCacheEntryMaxTotalSizeMb": -1,
316
+ "ssoExchangeCacheSize": 100,
317
+ "sessionCacheTTL": 15,
318
+ "idleTimeRefreshWindow": 1,
319
+ "ssoExchangeCacheTTL": 5,
320
+ "possibleXssCodeElements": [""],
321
+ "alternativeAgentPort": null,
322
+ "policyClientPollingInterval": 3,
323
+ "missingPostDataPreservationEntryUri": [""],
324
+ "clientIpHeader": null,
325
+ "alternativeAgentProtocol": null,
326
+ "jwtCacheTTL": 30,
327
+ "customProperties": [],
328
+ "policyCachePerUser": 50,
329
+ "expiredSessionCacheTTL": 20,
330
+ "fragmentRelayUri": null,
331
+ "postDataStickySessionMode": "URL",
332
+ "alternativeAgentHostname": null,
333
+ "expiredSessionCacheSize": 500,
334
+ "clientHostnameHeader": null,
335
+ "monitoringToCSV": false
336
+ },
337
+ "miscJ2EEAgentConfig": {
338
+ "legacyUserAgentList": ["Mozilla/4.7*"],
339
+ "loginReasonMap": {},
340
+ "authFailReasonParameterRemapper": {},
341
+ "agent302RedirectStatusCode": 200,
342
+ "loginReasonParameterName": null,
343
+ "gotoUrl": null,
344
+ "localeLanguage": "en",
345
+ "authFailReasonParameterName": null,
346
+ "unwantedHttpUrlParams": [""],
347
+ "agent302RedirectContentType": "application/json",
348
+ "agent302RedirectEnabled": true,
349
+ "legacyUserAgentSupport": false,
350
+ "wantedHttpUrlParams": [""],
351
+ "ignorePathInfo": false,
352
+ "agent302RedirectInvertEnabled": false,
353
+ "wantedHttpUrlRegexParams": [""],
354
+ "localeCountry": "US",
355
+ "agent302RedirectHttpData": "{redirect:{requestUri:%REQUEST_URI%,requestUrl:%REQUEST_URL%,targetUrl:%TARGET%}}",
356
+ "agent302RedirectNerList": [""],
357
+ "legacyRedirectUri": "/app1/sunwLegacySupportURI",
358
+ "portCheckFile": "PortCheckContent.txt",
359
+ "authFailReasonUrl": null,
360
+ "gotoParameterName": "goto",
361
+ "portCheckSetting": {
362
+ "443": "https"
363
+ },
364
+ "unwantedHttpUrlRegexParams": [""],
365
+ "portCheckEnabled": false
366
+ },
367
+ "_type": {
368
+ "_id": "J2EEAgent",
369
+ "name": "J2EE Agents",
370
+ "collection": true
371
+ }
372
+ }
373
+ ],
374
+ "resultCount": 2,
375
+ "pagedResultsCookie": null,
376
+ "totalPagedResultsPolicy": "EXACT",
377
+ "totalPagedResults": 2,
378
+ "remainingPagedResults": -1
379
+ }