@gravitee/ui-policy-studio-angular 5.23.0 → 6.0.0

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 (189) hide show
  1. package/esm2020/lib/components/flow-details/gio-ps-flow-details.component.mjs +26 -0
  2. package/esm2020/lib/components/flows-menu/gio-ps-flows-menu.component.mjs +26 -0
  3. package/esm2020/lib/gio-policy-studio.component.mjs +10 -161
  4. package/esm2020/lib/gio-policy-studio.module.mjs +10 -34
  5. package/esm2020/lib/models/flow/Flow.mjs +2 -0
  6. package/esm2020/lib/models/flow/FlowExecution.mjs +17 -0
  7. package/esm2020/lib/models/flow/HttpMethod.mjs +17 -0
  8. package/esm2020/lib/models/flow/Selector.mjs +2 -0
  9. package/esm2020/lib/models/flow/Step.mjs +2 -0
  10. package/esm2020/lib/models/flow/index.mjs +6 -4
  11. package/esm2020/lib/models/index.mjs +1 -5
  12. package/esm2020/public-api.mjs +1 -2
  13. package/esm2020/testing/lib/models/flow/Flow.fixture.mjs +42 -0
  14. package/esm2020/testing/lib/models/flow/Flow.mjs +2 -0
  15. package/esm2020/testing/lib/models/flow/HttpMethod.mjs +17 -0
  16. package/esm2020/testing/lib/models/flow/Selector.mjs +2 -0
  17. package/esm2020/testing/lib/models/flow/Step.mjs +2 -0
  18. package/esm2020/testing/lib/models/flow/index-testing.mjs +2 -4
  19. package/esm2020/testing/lib/models/index-testing.mjs +1 -4
  20. package/esm2020/testing/public-testing-api.mjs +1 -2
  21. package/fesm2015/gravitee-ui-policy-studio-angular-testing.mjs +21 -4301
  22. package/fesm2015/gravitee-ui-policy-studio-angular-testing.mjs.map +1 -1
  23. package/fesm2015/gravitee-ui-policy-studio-angular.mjs +27 -4531
  24. package/fesm2015/gravitee-ui-policy-studio-angular.mjs.map +1 -1
  25. package/fesm2020/gravitee-ui-policy-studio-angular-testing.mjs +21 -4310
  26. package/fesm2020/gravitee-ui-policy-studio-angular-testing.mjs.map +1 -1
  27. package/fesm2020/gravitee-ui-policy-studio-angular.mjs +28 -4542
  28. package/fesm2020/gravitee-ui-policy-studio-angular.mjs.map +1 -1
  29. package/lib/components/flow-details/gio-ps-flow-details.component.d.ts +5 -0
  30. package/lib/components/flows-menu/gio-ps-flows-menu.component.d.ts +5 -0
  31. package/lib/gio-policy-studio.component.d.ts +2 -84
  32. package/lib/gio-policy-studio.module.d.ts +5 -2
  33. package/lib/models/flow/Flow.d.ts +21 -0
  34. package/lib/models/flow/FlowExecution.d.ts +11 -0
  35. package/lib/models/flow/HttpMethod.d.ts +1 -0
  36. package/lib/models/flow/Selector.d.ts +37 -0
  37. package/lib/models/flow/Step.d.ts +30 -0
  38. package/lib/models/flow/index.d.ts +5 -3
  39. package/lib/models/index.d.ts +0 -4
  40. package/package.json +2 -2
  41. package/public-api.d.ts +0 -1
  42. package/testing/lib/models/flow/Flow.d.ts +21 -0
  43. package/testing/lib/models/flow/Flow.fixture.d.ts +2 -0
  44. package/testing/lib/models/flow/HttpMethod.d.ts +1 -0
  45. package/testing/lib/models/flow/Selector.d.ts +37 -0
  46. package/testing/lib/models/flow/Step.d.ts +30 -0
  47. package/testing/lib/models/flow/index-testing.d.ts +1 -3
  48. package/testing/lib/models/index-testing.d.ts +0 -3
  49. package/testing/public-testing-api.d.ts +0 -1
  50. package/esm2020/lib/models/flow/ConfigurationSchema.fixture.mjs +0 -25
  51. package/esm2020/lib/models/flow/ConfigurationSchema.mjs +0 -2
  52. package/esm2020/lib/models/flow/OrganizationFlowConfiguration.fixture.mjs +0 -10
  53. package/esm2020/lib/models/flow/OrganizationFlowConfiguration.mjs +0 -2
  54. package/esm2020/lib/models/flow/PlatformFlowSchema.fixture.mjs +0 -69
  55. package/esm2020/lib/models/flow/PlatformFlowSchema.mjs +0 -17
  56. package/esm2020/lib/models/flow/index-testing.mjs +0 -19
  57. package/esm2020/lib/models/json.mjs +0 -2
  58. package/esm2020/lib/models/policy/PolicyDocumentation.fixture.mjs +0 -218
  59. package/esm2020/lib/models/policy/PolicyDocumentation.mjs +0 -2
  60. package/esm2020/lib/models/policy/PolicyListItem.fixture.mjs +0 -18
  61. package/esm2020/lib/models/policy/PolicyListItem.mjs +0 -2
  62. package/esm2020/lib/models/policy/PolicySchema.fixture.mjs +0 -5
  63. package/esm2020/lib/models/policy/PolicySchema.mjs +0 -2
  64. package/esm2020/lib/models/policy/index-testing.mjs +0 -19
  65. package/esm2020/lib/models/policy/index.mjs +0 -19
  66. package/esm2020/lib/models/resource/ResourceDocumentation.fixture.mjs +0 -70
  67. package/esm2020/lib/models/resource/ResourceDocumentation.mjs +0 -2
  68. package/esm2020/lib/models/resource/ResourceListItem.fixture.mjs +0 -15
  69. package/esm2020/lib/models/resource/ResourceListItem.mjs +0 -2
  70. package/esm2020/lib/models/resource/index-testing.mjs +0 -18
  71. package/esm2020/lib/models/resource/index.mjs +0 -18
  72. package/esm2020/lib/models/spel/Grammar.fixture.mjs +0 -3696
  73. package/esm2020/lib/models/spel/Grammar.mjs +0 -17
  74. package/esm2020/lib/models/spel/index-testing.mjs +0 -17
  75. package/esm2020/lib/models/spel/index.mjs +0 -17
  76. package/esm2020/lib/services/flow.abstract.service.mjs +0 -3
  77. package/esm2020/lib/services/flow.service.fixture.mjs +0 -37
  78. package/esm2020/lib/services/index.mjs +0 -20
  79. package/esm2020/lib/services/policy.abstract.service.mjs +0 -3
  80. package/esm2020/lib/services/policy.service.fixture.mjs +0 -41
  81. package/esm2020/lib/services/resource.abstract.service.mjs +0 -3
  82. package/esm2020/lib/services/resource.service.fixture.mjs +0 -34
  83. package/esm2020/lib/services/spel.abstract.service.mjs +0 -3
  84. package/esm2020/lib/services/spel.service.fixture.mjs +0 -34
  85. package/esm2020/testing/lib/models/flow/ConfigurationSchema.fixture.mjs +0 -25
  86. package/esm2020/testing/lib/models/flow/ConfigurationSchema.mjs +0 -2
  87. package/esm2020/testing/lib/models/flow/OrganizationFlowConfiguration.fixture.mjs +0 -10
  88. package/esm2020/testing/lib/models/flow/OrganizationFlowConfiguration.mjs +0 -2
  89. package/esm2020/testing/lib/models/flow/PlatformFlowSchema.fixture.mjs +0 -69
  90. package/esm2020/testing/lib/models/flow/PlatformFlowSchema.mjs +0 -17
  91. package/esm2020/testing/lib/models/flow/index.mjs +0 -19
  92. package/esm2020/testing/lib/models/json.mjs +0 -2
  93. package/esm2020/testing/lib/models/policy/PolicyDocumentation.fixture.mjs +0 -218
  94. package/esm2020/testing/lib/models/policy/PolicyDocumentation.mjs +0 -2
  95. package/esm2020/testing/lib/models/policy/PolicyListItem.fixture.mjs +0 -18
  96. package/esm2020/testing/lib/models/policy/PolicyListItem.mjs +0 -2
  97. package/esm2020/testing/lib/models/policy/PolicySchema.fixture.mjs +0 -5
  98. package/esm2020/testing/lib/models/policy/PolicySchema.mjs +0 -2
  99. package/esm2020/testing/lib/models/policy/index-testing.mjs +0 -19
  100. package/esm2020/testing/lib/models/policy/index.mjs +0 -19
  101. package/esm2020/testing/lib/models/resource/ResourceDocumentation.fixture.mjs +0 -70
  102. package/esm2020/testing/lib/models/resource/ResourceDocumentation.mjs +0 -2
  103. package/esm2020/testing/lib/models/resource/ResourceListItem.fixture.mjs +0 -15
  104. package/esm2020/testing/lib/models/resource/ResourceListItem.mjs +0 -2
  105. package/esm2020/testing/lib/models/resource/index-testing.mjs +0 -18
  106. package/esm2020/testing/lib/models/resource/index.mjs +0 -18
  107. package/esm2020/testing/lib/models/spel/Grammar.fixture.mjs +0 -3696
  108. package/esm2020/testing/lib/models/spel/Grammar.mjs +0 -17
  109. package/esm2020/testing/lib/models/spel/index-testing.mjs +0 -17
  110. package/esm2020/testing/lib/models/spel/index.mjs +0 -17
  111. package/esm2020/testing/lib/services/flow.abstract.service.mjs +0 -3
  112. package/esm2020/testing/lib/services/flow.service.fixture.mjs +0 -37
  113. package/esm2020/testing/lib/services/index-testing.mjs +0 -20
  114. package/esm2020/testing/lib/services/policy.abstract.service.mjs +0 -3
  115. package/esm2020/testing/lib/services/policy.service.fixture.mjs +0 -41
  116. package/esm2020/testing/lib/services/resource.abstract.service.mjs +0 -3
  117. package/esm2020/testing/lib/services/resource.service.fixture.mjs +0 -34
  118. package/esm2020/testing/lib/services/spel.abstract.service.mjs +0 -3
  119. package/esm2020/testing/lib/services/spel.service.fixture.mjs +0 -34
  120. package/lib/models/flow/ConfigurationSchema.d.ts +0 -2
  121. package/lib/models/flow/ConfigurationSchema.fixture.d.ts +0 -2
  122. package/lib/models/flow/OrganizationFlowConfiguration.d.ts +0 -3
  123. package/lib/models/flow/OrganizationFlowConfiguration.fixture.d.ts +0 -2
  124. package/lib/models/flow/PlatformFlowSchema.d.ts +0 -2
  125. package/lib/models/flow/PlatformFlowSchema.fixture.d.ts +0 -2
  126. package/lib/models/flow/index-testing.d.ts +0 -3
  127. package/lib/models/json.d.ts +0 -3
  128. package/lib/models/policy/PolicyDocumentation.d.ts +0 -1
  129. package/lib/models/policy/PolicyDocumentation.fixture.d.ts +0 -2
  130. package/lib/models/policy/PolicyListItem.d.ts +0 -13
  131. package/lib/models/policy/PolicyListItem.fixture.d.ts +0 -2
  132. package/lib/models/policy/PolicySchema.d.ts +0 -1
  133. package/lib/models/policy/PolicySchema.fixture.d.ts +0 -2
  134. package/lib/models/policy/index-testing.d.ts +0 -3
  135. package/lib/models/policy/index.d.ts +0 -3
  136. package/lib/models/resource/ResourceDocumentation.d.ts +0 -1
  137. package/lib/models/resource/ResourceDocumentation.fixture.d.ts +0 -2
  138. package/lib/models/resource/ResourceListItem.d.ts +0 -8
  139. package/lib/models/resource/ResourceListItem.fixture.d.ts +0 -2
  140. package/lib/models/resource/index-testing.d.ts +0 -2
  141. package/lib/models/resource/index.d.ts +0 -2
  142. package/lib/models/spel/Grammar.d.ts +0 -2
  143. package/lib/models/spel/Grammar.fixture.d.ts +0 -2
  144. package/lib/models/spel/index-testing.d.ts +0 -1
  145. package/lib/models/spel/index.d.ts +0 -1
  146. package/lib/services/flow.abstract.service.d.ts +0 -7
  147. package/lib/services/flow.service.fixture.d.ts +0 -11
  148. package/lib/services/index.d.ts +0 -4
  149. package/lib/services/policy.abstract.service.d.ts +0 -14
  150. package/lib/services/policy.service.fixture.d.ts +0 -13
  151. package/lib/services/resource.abstract.service.d.ts +0 -11
  152. package/lib/services/resource.service.fixture.d.ts +0 -10
  153. package/lib/services/spel.abstract.service.d.ts +0 -5
  154. package/lib/services/spel.service.fixture.d.ts +0 -9
  155. package/testing/lib/models/flow/ConfigurationSchema.d.ts +0 -2
  156. package/testing/lib/models/flow/ConfigurationSchema.fixture.d.ts +0 -2
  157. package/testing/lib/models/flow/OrganizationFlowConfiguration.d.ts +0 -3
  158. package/testing/lib/models/flow/OrganizationFlowConfiguration.fixture.d.ts +0 -2
  159. package/testing/lib/models/flow/PlatformFlowSchema.d.ts +0 -2
  160. package/testing/lib/models/flow/PlatformFlowSchema.fixture.d.ts +0 -2
  161. package/testing/lib/models/flow/index.d.ts +0 -3
  162. package/testing/lib/models/json.d.ts +0 -3
  163. package/testing/lib/models/policy/PolicyDocumentation.d.ts +0 -1
  164. package/testing/lib/models/policy/PolicyDocumentation.fixture.d.ts +0 -2
  165. package/testing/lib/models/policy/PolicyListItem.d.ts +0 -13
  166. package/testing/lib/models/policy/PolicyListItem.fixture.d.ts +0 -2
  167. package/testing/lib/models/policy/PolicySchema.d.ts +0 -1
  168. package/testing/lib/models/policy/PolicySchema.fixture.d.ts +0 -2
  169. package/testing/lib/models/policy/index-testing.d.ts +0 -3
  170. package/testing/lib/models/policy/index.d.ts +0 -3
  171. package/testing/lib/models/resource/ResourceDocumentation.d.ts +0 -1
  172. package/testing/lib/models/resource/ResourceDocumentation.fixture.d.ts +0 -2
  173. package/testing/lib/models/resource/ResourceListItem.d.ts +0 -8
  174. package/testing/lib/models/resource/ResourceListItem.fixture.d.ts +0 -2
  175. package/testing/lib/models/resource/index-testing.d.ts +0 -2
  176. package/testing/lib/models/resource/index.d.ts +0 -2
  177. package/testing/lib/models/spel/Grammar.d.ts +0 -2
  178. package/testing/lib/models/spel/Grammar.fixture.d.ts +0 -2
  179. package/testing/lib/models/spel/index-testing.d.ts +0 -1
  180. package/testing/lib/models/spel/index.d.ts +0 -1
  181. package/testing/lib/services/flow.abstract.service.d.ts +0 -7
  182. package/testing/lib/services/flow.service.fixture.d.ts +0 -11
  183. package/testing/lib/services/index-testing.d.ts +0 -4
  184. package/testing/lib/services/policy.abstract.service.d.ts +0 -14
  185. package/testing/lib/services/policy.service.fixture.d.ts +0 -13
  186. package/testing/lib/services/resource.abstract.service.d.ts +0 -11
  187. package/testing/lib/services/resource.service.fixture.d.ts +0 -10
  188. package/testing/lib/services/spel.abstract.service.d.ts +0 -5
  189. package/testing/lib/services/spel.service.fixture.d.ts +0 -9
@@ -1 +1 @@
1
- {"version":3,"file":"gravitee-ui-policy-studio-angular.mjs","sources":["../../../projects/ui-policy-studio-angular/src/lib/models/flow/index.ts","../../../projects/ui-policy-studio-angular/src/lib/models/policy/index.ts","../../../projects/ui-policy-studio-angular/src/lib/models/resource/index.ts","../../../projects/ui-policy-studio-angular/src/lib/models/spel/index.ts","../../../projects/ui-policy-studio-angular/src/lib/models/index.ts","../../../projects/ui-policy-studio-angular/src/lib/services/flow.abstract.service.ts","../../../projects/ui-policy-studio-angular/src/lib/services/policy.abstract.service.ts","../../../projects/ui-policy-studio-angular/src/lib/services/resource.abstract.service.ts","../../../projects/ui-policy-studio-angular/src/lib/services/spel.abstract.service.ts","../../../projects/ui-policy-studio-angular/src/lib/services/index.ts","../../../projects/ui-policy-studio-angular/src/lib/gio-policy-studio.component.ts","../../../projects/ui-policy-studio-angular/src/lib/gio-policy-studio.component.html","../../../projects/ui-policy-studio-angular/src/lib/models/flow/ConfigurationSchema.fixture.ts","../../../projects/ui-policy-studio-angular/src/lib/models/flow/OrganizationFlowConfiguration.fixture.ts","../../../projects/ui-policy-studio-angular/src/lib/models/flow/PlatformFlowSchema.fixture.ts","../../../projects/ui-policy-studio-angular/src/lib/models/flow/index-testing.ts","../../../projects/ui-policy-studio-angular/src/lib/services/flow.service.fixture.ts","../../../projects/ui-policy-studio-angular/src/lib/models/policy/PolicyListItem.fixture.ts","../../../projects/ui-policy-studio-angular/src/lib/models/policy/PolicyDocumentation.fixture.ts","../../../projects/ui-policy-studio-angular/src/lib/models/policy/PolicySchema.fixture.ts","../../../projects/ui-policy-studio-angular/src/lib/models/policy/index-testing.ts","../../../projects/ui-policy-studio-angular/src/lib/services/policy.service.fixture.ts","../../../projects/ui-policy-studio-angular/src/lib/models/resource/ResourceDocumentation.fixture.ts","../../../projects/ui-policy-studio-angular/src/lib/models/resource/ResourceListItem.fixture.ts","../../../projects/ui-policy-studio-angular/src/lib/models/resource/index-testing.ts","../../../projects/ui-policy-studio-angular/src/lib/services/resource.service.fixture.ts","../../../projects/ui-policy-studio-angular/src/lib/models/spel/Grammar.fixture.ts","../../../projects/ui-policy-studio-angular/src/lib/models/spel/index-testing.ts","../../../projects/ui-policy-studio-angular/src/lib/services/spel.service.fixture.ts","../../../projects/ui-policy-studio-angular/src/lib/gio-policy-studio.module.ts","../../../projects/ui-policy-studio-angular/src/public-api.ts","../../../projects/ui-policy-studio-angular/src/gravitee-ui-policy-studio-angular.ts"],"sourcesContent":["/*\n * Copyright (C) 2022 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport * from './ConfigurationSchema';\nexport * from './OrganizationFlowConfiguration';\nexport * from './PlatformFlowSchema';\n","/*\n * Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport * from './PolicyDocumentation';\nexport * from './PolicyListItem';\nexport * from './PolicySchema';\n","/*\n * Copyright (C) 2022 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport * from './ResourceDocumentation';\nexport * from './ResourceListItem';\n","/*\n * Copyright (C) 2022 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport * from './Grammar';\n","/*\n * Copyright (C) 2022 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport * from './flow';\nexport * from './policy';\nexport * from './resource';\nexport * from './spel';\nexport * from './json';\n","/*\n * Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { Observable } from 'rxjs';\n\nimport { FlowConfigurationSchema, OrganizationFlowConfiguration, PlatformFlowSchema } from '../models/flow';\n\nexport abstract class FlowServiceAbstract {\n public abstract getConfigurationSchemaForm(): Observable<FlowConfigurationSchema>;\n\n public abstract getPlatformFlowSchemaForm(): Observable<PlatformFlowSchema>;\n\n public abstract getConfiguration(): Observable<OrganizationFlowConfiguration>;\n}\n","/*\n * Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { Observable } from 'rxjs';\n\nimport { PolicyDocumentation, PolicyListItem, PolicySchema } from '../models/policy';\n\ninterface ListParams {\n expandSchema?: boolean;\n expandIcon?: boolean;\n withoutResource?: boolean;\n}\n\nexport abstract class PolicyServiceAbstract {\n public abstract list(params: ListParams): Observable<PolicyListItem[]>;\n\n public abstract listSwaggerPolicies(): Observable<PolicyListItem[]>;\n\n public abstract getSchema(policyId: string): Observable<PolicySchema>;\n\n public abstract getDocumentation(policyId: string): Observable<PolicyDocumentation>;\n}\n","/*\n * Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { Observable } from 'rxjs';\n\nimport { ResourceListItem, ResourceDocumentation } from '../models/resource';\n\nexport interface ListParams {\n expandSchema?: boolean;\n expandIcon?: boolean;\n withoutResource?: boolean;\n}\n\nexport abstract class ResourceServiceAbstract {\n public abstract list(params: ListParams): Observable<ResourceListItem[]>;\n\n public abstract getDocumentation(resourceId: string): Observable<ResourceDocumentation>;\n}\n","/*\n * Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { Observable } from 'rxjs';\n\nimport { Grammar } from '../models/spel';\n\nexport abstract class SpelServiceAbstract {\n public abstract getGrammar(): Observable<Grammar>;\n}\n","/*\n * Copyright (C) 2022 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport * from './flow.abstract.service';\nexport * from './policy.abstract.service';\nexport * from './resource.abstract.service';\nexport * from './spel.abstract.service';\n","/*\n * Copyright (C) 2022 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { chain, isNil } from 'lodash';\nimport { catchError, tap } from 'rxjs/operators';\nimport { Location } from '@angular/common';\nimport { Component, EventEmitter, Inject, Input, OnInit, Output } from '@angular/core';\nimport { EMPTY } from 'rxjs';\nimport '@gravitee/ui-components/wc/gv-policy-studio';\n\nimport { FlowServiceAbstract } from './services/flow.abstract.service';\nimport { FlowConfigurationSchema } from './models/flow/ConfigurationSchema';\nimport { PolicyListItem } from './models/policy';\nimport { PolicyServiceAbstract } from './services/policy.abstract.service';\nimport { ResourceServiceAbstract } from './services/resource.abstract.service';\nimport { SpelServiceAbstract } from './services/spel.abstract.service';\nimport { Grammar } from './models/spel';\n\ninterface UrlParams {\n path: string;\n tabId: string;\n flowsIds: string[];\n}\n\n@Component({\n selector: 'gio-policy-studio',\n templateUrl: './gio-policy-studio.component.html',\n styleUrls: ['./gio-policy-studio.component.scss'],\n})\nexport class GioPolicyStudioComponent implements OnInit {\n @Input()\n public readonly!: boolean;\n\n @Input()\n // TODO: Remove ! and add init value ! for all\n public canAdd!: boolean;\n\n @Input()\n public canDebug!: boolean;\n\n @Input()\n public hasResources!: boolean;\n\n @Input()\n public hasProperties!: boolean;\n\n @Input()\n public hasPolicyFilter!: boolean;\n\n @Input()\n public hasConditionalSteps!: boolean;\n\n @Input()\n public hasPlans = false;\n\n @Input()\n public sortable!: boolean;\n\n @Input()\n public set policies(policies: PolicyListItem[]) {\n this._policies = chain(policies)\n .map(policy => (!isNil(policy.category) ? policy : { ...policy, category: this.unknownPolicyCategory }))\n // First sort by category (based on category order) and then by name\n .sortBy([policy => this.policyCategoriesOrder.indexOf(policy.category ?? ''), policy => policy.name])\n .value();\n }\n public get policies(): PolicyListItem[] {\n return this._policies;\n }\n\n @Input()\n public definition: unknown;\n\n @Input()\n public services: Record<string, unknown> = {};\n\n @Input()\n public flowSchema: unknown;\n\n @Input()\n public resourceTypes!: unknown[];\n\n @Input()\n public propertyProviders!: unknown[];\n\n @Input()\n public readonlyPlans!: boolean;\n\n @Input()\n public dynamicPropertySchema: unknown = {};\n\n @Input()\n public debugResponse: unknown;\n\n @Input()\n public flowsTitle!: string;\n\n @Input()\n public configurationInformation =\n 'By default, the selection of a flow is based on the operator defined in the flow itself. This operator allows either to select a flow when the path matches exactly, or when the start of the path matches. The \"Best match\" option allows you to select the flow from the path that is closest.';\n\n @Input()\n public hideTab = false;\n\n @Input()\n public tabId!: string;\n\n @Output()\n public save = new EventEmitter<unknown>();\n\n @Output()\n public debug = new EventEmitter<{ definition: unknown; services: unknown; request: unknown }>();\n\n public selectedFlowsIds!: string;\n public configurationSchema!: FlowConfigurationSchema;\n public policyDocumentation!: { id: string; image: string; content: string };\n\n private readonly unknownPolicyCategory = 'others';\n private readonly policyCategoriesOrder = ['security', 'performance', 'transformation', this.unknownPolicyCategory];\n private _policies!: PolicyListItem[];\n\n constructor(\n private readonly location: Location,\n @Inject('FlowService') private readonly flowService: FlowServiceAbstract,\n @Inject('PolicyService') private readonly policyService: PolicyServiceAbstract,\n @Inject('ResourceService') private readonly resourceService: ResourceServiceAbstract,\n @Inject('SpelService') private readonly spelService: SpelServiceAbstract,\n ) {}\n\n public ngOnInit(): void {\n this.flowService\n .getConfigurationSchemaForm()\n .pipe(\n tap(configurationSchema => {\n this.configurationSchema = configurationSchema;\n }),\n )\n .subscribe();\n\n const { tabId, flowsIds } = this.parseUrl();\n\n if (!this.hideTab) {\n this.tabId = tabId;\n }\n\n this.selectedFlowsIds = JSON.stringify(flowsIds);\n }\n\n public onTabChanged(tabId: string): void {\n this.updateUrl({ ...this.parseUrl(), tabId });\n }\n\n public onFlowSelectionChanged({ flows }: { flows: string[] }): void {\n this.updateUrl({ ...this.parseUrl(), flowsIds: flows });\n }\n\n public fetchPolicyDocumentation({ policy }: { policy: { id: string; icon: string } }): void {\n this.policyService\n .getDocumentation(policy.id)\n .pipe(tap(documentation => (this.policyDocumentation = { id: policy.id, image: policy.icon, content: documentation })))\n .subscribe();\n }\n\n public fetchResourceDocumentation({\n resourceType,\n target,\n }: {\n resourceType: { id: string; icon: string };\n target: { documentation: unknown };\n }): void {\n this.resourceService\n .getDocumentation(resourceType.id)\n .pipe(\n tap(documentation => (target.documentation = { image: resourceType.icon, content: documentation })),\n catchError(() => {\n target.documentation = null;\n return EMPTY;\n }),\n )\n .subscribe();\n }\n\n public fetchSpelGrammar({ currentTarget }: { currentTarget: { grammar: Grammar } }): void {\n this.spelService\n .getGrammar()\n .pipe(tap(grammar => (currentTarget.grammar = grammar)))\n .subscribe();\n }\n\n private parseUrl(): UrlParams {\n // TODO: Improve this with Angular Router\n // Hack to add the tab as Fragment part of the URL\n const [path, tabId] = this.location.path(true).split(/#(\\w*)$/);\n\n const [basePath, ...flowsIds] = path.split('flows');\n\n const cleanedPath = basePath.replace('?', '');\n const cleanedFlows = (flowsIds ?? []).map(flow => flow.replace('=', ''));\n\n return {\n path: cleanedPath,\n tabId: tabId ?? '',\n flowsIds: cleanedFlows,\n };\n }\n\n private updateUrl({ path, tabId, flowsIds }: UrlParams): void {\n // TODO: Improve this with Angular Router\n // Hack to add the tab as Fragment part of the URL\n const flowsQueryParams = (flowsIds ?? []).map(value => `flows=${value}`).join('&');\n\n const queryParams = flowsQueryParams.length > 0 ? `?${flowsQueryParams}` : '';\n\n this.location.go(`${path}${queryParams}#${tabId}`);\n }\n}\n","<!--\n\n Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n-->\n\n<div class=\"policy-studio-wrapper\">\n <gv-policy-studio\n [policies]=\"policies\"\n [services]=\"services\"\n [resourceTypes]=\"resourceTypes\"\n [propertyProviders]=\"propertyProviders\"\n [dynamicPropertySchema]=\"dynamicPropertySchema\"\n [definition]=\"definition\"\n [flowSchema]=\"flowSchema\"\n [configurationSchema]=\"configurationSchema\"\n [configurationInformation]=\"configurationInformation\"\n [attr.readonly]=\"readonly ? readonly : null\"\n [attr.can-add]=\"canAdd ? canAdd : null\"\n [attr.can-debug]=\"canDebug ? canDebug : null\"\n [attr.has-resources]=\"hasResources ? hasResources : null\"\n [attr.has-properties]=\"hasProperties ? hasProperties : null\"\n [attr.has-policy-filter]=\"hasPolicyFilter ? hasPolicyFilter : null\"\n [attr.has-plans]=\"hasPlans ? hasPlans : null\"\n [attr.sortable]=\"sortable ? sortable : null\"\n [attr.readonly-plans]=\"readonlyPlans ? readonlyPlans : null\"\n [attr.flows-title]=\"flowsTitle\"\n [attr.has-conditional-steps]=\"hasConditionalSteps\"\n [debugResponse]=\"debugResponse\"\n [tabId]=\"tabId\"\n (:gv-policy-studio:change-tab)=\"onTabChanged($any($event).detail)\"\n [documentation]=\"policyDocumentation\"\n (:gv-policy-studio:fetch-documentation)=\"fetchPolicyDocumentation($any($event).detail)\"\n (:gv-resources:fetch-documentation)=\"fetchResourceDocumentation($any($event).detail)\"\n (:gv-expression-language:ready)=\"fetchSpelGrammar($any($event).detail)\"\n [attr.selected-flows-id]=\"selectedFlowsIds ? selectedFlowsIds : null\"\n (:gv-policy-studio:select-flows)=\"onFlowSelectionChanged($any($event).detail)\"\n (:gv-policy-studio:save)=\"save.emit($any($event).detail)\"\n (:gv-policy-studio:debug)=\"debug.emit($any($event).detail)\"\n >\n </gv-policy-studio>\n</div>\n","/*\n * Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { FlowConfigurationSchema } from './ConfigurationSchema';\n\nexport function fakeFlowConfigurationSchema(attributes?: FlowConfigurationSchema): FlowConfigurationSchema {\n const base: FlowConfigurationSchema = {\n type: 'object',\n id: 'apim',\n properties: {\n flow_mode: {\n title: 'Flow Mode',\n description: 'The flow mode',\n type: 'string',\n enum: ['DEFAULT', 'BEST_MATCH'],\n default: 'DEFAULT',\n 'x-schema-form': {\n titleMap: {\n DEFAULT: 'Default',\n BEST_MATCH: 'Best match',\n },\n },\n },\n },\n required: [],\n disabled: [],\n };\n\n return { ...base, ...attributes };\n}\n","/*\n * Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { OrganizationFlowConfiguration } from './OrganizationFlowConfiguration';\n\nexport function fakeOrganizationFlowConfiguration(attributes?: Partial<OrganizationFlowConfiguration>): OrganizationFlowConfiguration {\n const base: OrganizationFlowConfiguration = {\n has_policies: true,\n };\n\n return {\n ...base,\n ...attributes,\n };\n}\n","/*\n * Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { PlatformFlowSchema } from './PlatformFlowSchema';\n\nexport function fakePlatformFlowSchema(attributes?: PlatformFlowSchema): PlatformFlowSchema {\n const base: PlatformFlowSchema = {\n type: 'object',\n id: 'apim',\n properties: {\n name: {\n title: 'Name',\n description: 'The name of flow. If empty, the name will be generated with the path and methods',\n type: 'string',\n },\n 'path-operator': {\n type: 'object',\n properties: {\n operator: {\n title: 'Operator path',\n description: 'The operator path',\n type: 'string',\n enum: ['EQUALS', 'STARTS_WITH'],\n default: 'STARTS_WITH',\n 'x-schema-form': {\n titleMap: {\n EQUALS: 'Equals',\n STARTS_WITH: 'Starts with',\n },\n },\n },\n path: {\n title: 'Path',\n description: 'The path of flow (must start by /)',\n type: 'string',\n pattern: '^/',\n default: '/',\n },\n },\n required: ['path', 'operator'],\n },\n methods: {\n title: 'Methods',\n description: 'The HTTP methods of flow (ALL if empty)',\n type: 'array',\n items: {\n type: 'string',\n enum: ['CONNECT', 'DELETE', 'GET', 'HEAD', 'OPTIONS', 'PATCH', 'POST', 'PUT', 'TRACE'],\n },\n },\n consumers: {\n title: 'Tags',\n description: 'The tags of flow.',\n type: 'array',\n items: {\n type: 'string',\n enum: [],\n },\n },\n condition: {\n title: 'Condition',\n description: 'The condition of the flow. Supports EL.',\n type: 'string',\n 'x-schema-form': {\n 'expression-language': true,\n },\n },\n },\n required: [],\n disabled: [],\n };\n return { ...base, ...attributes };\n}\n","/*\n * Copyright (C) 2022 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport * from './ConfigurationSchema.fixture';\nexport * from './OrganizationFlowConfiguration.fixture';\nexport * from './PlatformFlowSchema.fixture';\n","/*\n * Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { Injectable } from '@angular/core';\nimport { Observable, of } from 'rxjs';\n\nimport { FlowConfigurationSchema, PlatformFlowSchema, OrganizationFlowConfiguration } from '../models/flow';\nimport { fakeFlowConfigurationSchema, fakeOrganizationFlowConfiguration, fakePlatformFlowSchema } from '../models/flow/index-testing';\n\nimport { FlowServiceAbstract } from './flow.abstract.service';\n\n@Injectable()\nexport class FlowService extends FlowServiceAbstract {\n public getConfigurationSchemaForm(): Observable<FlowConfigurationSchema> {\n return of(fakeFlowConfigurationSchema());\n }\n\n public getPlatformFlowSchemaForm(): Observable<PlatformFlowSchema> {\n return of(fakePlatformFlowSchema());\n }\n\n public getConfiguration(): Observable<OrganizationFlowConfiguration> {\n return of(fakeOrganizationFlowConfiguration());\n }\n}\n","/*\n * Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { PolicyListItem } from './PolicyListItem';\n\nexport function fakePolicyListItem(attributes?: Partial<PolicyListItem>): PolicyListItem {\n const base: PolicyListItem = {\n category: 'transformation',\n description: 'Description of the JSON to JSON Transformation Gravitee Policy',\n icon: 'data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAuNzEgMTEyLjgyIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6Izg2YzNkMDt9LmNscy0ye2ZpbGw6I2ZmZjt9LmNscy0ze2ZvbnQtc2l6ZToxMnB4O2ZpbGw6IzFkMWQxYjtmb250LWZhbWlseTpNeXJpYWRQcm8tUmVndWxhciwgTXlyaWFkIFBybzt9LmNscy00e2xldHRlci1zcGFjaW5nOi0wLjAxZW07fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJBUEkiPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTUwLjM1LDEzLjM3YTQzLDQzLDAsMSwwLDQzLjA1LDQzQTQzLDQzLDAsMCwwLDUwLjM1LDEzLjM3WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTYzLjgsNzcuMDlhNC44Myw0LjgzLDAsMSwxLDMuNjktNy45Miw0Ljc0LDQuNzQsMCwwLDEsMS4xMywzLjA5QTQuODMsNC44MywwLDAsMSw2My44LDc3LjA5Wm0wLTcuOTNhMy4xMSwzLjExLDAsMSwwLDIuMzgsMS4xMkEzLjEsMy4xLDAsMCwwLDYzLjgsNjkuMTZaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTEuNSw0My42OGE0Ljg1LDQuODUsMCwwLDEtNC43Ny00LjE0LDUsNSwwLDAsMSwwLS42OSw0LjgzLDQuODMsMCwwLDEsOS42NSwwLDMuNDUsMy40NSwwLDAsMS0uMDcuNzRBNC44MSw0LjgxLDAsMCwxLDUxLjUsNDMuNjhabTAtNy45M2EzLjEsMy4xLDAsMCwwLTMuMSwzLjEsMy4yNSwzLjI1LDAsMCwwLDAsLjQ0LDMuMSwzLjEsMCwwLDAsNi4xNCwwLDIuNjYsMi42NiwwLDAsMCwwLS40NUEzLjExLDMuMTEsMCwwLDAsNTEuNSwzNS43NVoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0zMy42NCw3MC4xNWE0LjgzLDQuODMsMCwwLDEtMS4zNy05LjQ2LDUsNSwwLDAsMSwxLjM3LS4xOSw0LjgyLDQuODIsMCwwLDEsNC44Miw0LjgyLDQuODcsNC44NywwLDAsMS0yLjcxLDQuMzVBNC43Myw0LjczLDAsMCwxLDMzLjY0LDcwLjE1Wm0wLTcuOTNhMywzLDAsMCwwLS44OS4xMywzLjEsMy4xLDAsMCwwLC44OSw2LjA4QTMsMywwLDAsMCwzNSw2OC4xMmEzLjExLDMuMTEsMCwwLDAtMS4zNS01LjlaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNMzIuMTgsNTYuMzVoLS4xMmEuODcuODcsMCwwLDEtLjczLTFBMjAuNDcsMjAuNDcsMCwwLDEsNDIsNDAuMzNhLjg2Ljg2LDAsMSwxLC44LDEuNTJBMTguNzcsMTguNzcsMCwwLDAsMzMsNTUuNjEuODYuODYsMCwwLDEsMzIuMTgsNTYuMzVaIi8+PHBhdGggY2xhc3M9ImNscy0yIiBkPSJNNTEuNSw3OC43OWEyMC4xNywyMC4xNywwLDAsMS0xMi4yNy00LjExLjg2Ljg2LDAsMCwxLS4xNy0xLjIxLjg1Ljg1LDAsMCwxLDEuMi0uMTZBMTguNTIsMTguNTIsMCwwLDAsNTEuNSw3Ny4wNywxOC4yMywxOC4yMywwLDAsMCw1NSw3Ni43M2EuODcuODcsMCwwLDEsLjMzLDEuN0EyMC44NywyMC44NywwLDAsMSw1MS41LDc4Ljc5WiIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTcwLDY1LjQyYS44NC44NCwwLDAsMS0uMjcsMCwuODYuODYsMCwwLDEtLjU0LTEuMDksMTguNzEsMTguNzEsMCwwLDAtOC41NS0yMi4xNy44Ni44NiwwLDEsMSwuODUtMS41LDIwLjQyLDIwLjQyLDAsMCwxLDkuMzMsMjQuMjFBLjg3Ljg3LDAsMCwxLDcwLDY1LjQyWiIvPjwvZz48ZyBpZD0iSE9TVElORyI+PHRleHQgY2xhc3M9ImNscy0zIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNy45MyAtNC45OCkiPkpTT04gPHRzcGFuIGNsYXNzPSJjbHMtNCIgeD0iMjkuMDYiIHk9IjAiPnQ8L3RzcGFuPjx0c3BhbiB4PSIzMi45NiIgeT0iMCI+byBKU09OPC90c3Bhbj48L3RleHQ+PC9nPjwvc3ZnPg==',\n id: 'json-to-json',\n name: 'JSON to JSON Transformation',\n onRequest: true,\n onResponse: true,\n schema:\n '{\\n \"type\" : \"object\",\\n \"id\" : \"urn:jsonschema:io:gravitee:policy:json2json:configuration:JsonToJsonTransformationPolicyConfiguration\",\\n \"properties\" : {\\n \"scope\" : {\\n \"title\": \"Scope\",\\n \"description\": \"Execute policy on <strong>request</strong> or <strong>response</strong> phase.\",\\n \"type\" : \"string\",\\n \"default\": \"REQUEST\",\\n \"enum\" : [ \"REQUEST\", \"RESPONSE\" ],\\n \"deprecated\": \"true\"\\n },\\n \"overrideContentType\" : {\\n \"title\": \"Override the Content-Type\",\\n \"description\": \"Enforce the Content-Type: application/json\",\\n \"type\" : \"boolean\",\\n \"default\": true\\n },\\n \"specification\" : {\\n \"title\": \"JOLT specification\",\\n \"type\" : \"string\",\\n \"x-schema-form\": {\\n \"type\": \"codemirror\",\\n \"codemirrorOptions\": {\\n \"placeholder\": \"Place your JOLT specification here or drag\\'n\\'drop your JOLT specification file\",\\n \"lineWrapping\": true,\\n \"lineNumbers\": true,\\n \"allowDropFileTypes\": true,\\n \"autoCloseTags\": true,\\n \"mode\": \"javascript\"\\n },\\n \"expression-language\": true\\n }\\n }\\n },\\n \"required\": [\\n \"specification\"\\n ]\\n}\\n',\n version: '1.6.0',\n };\n\n return {\n ...base,\n ...attributes,\n };\n}\n","/*\n * Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { PolicyDocumentation } from './PolicyDocumentation';\n\nexport function fakePolicyDocumentation(attributes?: PolicyDocumentation): PolicyDocumentation {\n const base: PolicyDocumentation = `\n= RateLimit policy\n\n\nifdef::env-github[]\nimage:https://ci.gravitee.io/buildStatus/icon?job=gravitee-io/gravitee-policy-ratelimit/master[\"Build status\", link=\"https://ci.gravitee.io/job/gravitee-io/job/gravitee-policy-ratelimit/\"]\nimage:https://badges.gitter.im/Join Chat.svg[\"Gitter\", link=\"https://gitter.im/gravitee-io/gravitee-io?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\"]\nendif::[]\n\n== Phase\n\n|===\n|onRequest |onResponse\n\n| X\n|\n\n|===\n\n== Description\n\nThere are three \\`rate-limit\\` policies:\n\n* Quota: configures the number of requests allowed over a period of time (hours, days, weeks, months)\n* Rate-Limit: configures the number of requests allowed over a limited period of time (seconds, minutes)\n* Spike-Arrest: throttles the number of requests processed and sends them to the backend to avoid a spike\n\n== Configuration\n\nYou can configure the policies with the following options:\n\n=== Quota\n\nThe Quota policy configures the number of requests allowed over a large period of time (from hours to months).\nThis policy does not prevent request spikes.\n\n|===\n|Property |Required |Description |Type |Default\n\n|key\n|No\n|Key to identify a consumer to apply the quota against. Leave it empty to apply the default behavior (plan/subscription pair). Supports Expression Language.\n|String\n|null\n\n|limit\n|No\n|Static limit on the number of requests that can be sent (this limit is used if the value > 0).\n|integer\n|0\n\n|dynamicLimit\n|No\n|Dynamic limit on the number of requests that can be sent (this limit is used if static limit = 0). The dynamic value is based on Expression Language expressions.\n|string\n|null\n\n|periodTime\n|Yes\n|Time duration\n|Integer\n|1\n\n|periodTimeUnit\n|Yes\n|Time unit (\\`HOURS\\`, \\`DAYS\\`, \\`WEEKS\\`, \\`MONTHS\\`)\n|String\n|MONTHS\n\n|===\n\n==== Configuration example\n\n[source, json]\n----\n \"quota\": {\n \"limit\": \"1000\",\n \"periodTime\": 1,\n \"periodTimeUnit\": \"MONTHS\"\n }\n----\n\n=== Rate-Limit\n\nThe Rate-Limit policy configures the number of requests allow over a limited period of time (from seconds to minutes).\nThis policy does not prevent request spikes.\n\n|===\n|Property |Required |Description |Type |Default\n\n|key\n|No\n|Key to identify a consumer to apply rate-limiting against. Leave it empty to use the default behavior (plan/subscription pair). Supports Expression Language.\n|String\n|null\n\n|limit\n|No\n|Static limit on the number of requests that can be sent (this limit is used if the value > 0).\n|integer\n|0\n\n|dynamicLimit\n|No\n|Dynamic limit on the number of requests that can be sent (this limit is used if static limit = 0). The dynamic value is based on Expression Language expressions.\n|string\n|null\n\n|periodTime\n|Yes\n|Time duration\n|Integer\n|1\n\n|periodTimeUnit\n|Yes\n|Time unit (\"SECONDS\", \"MINUTES\" )\n|String\n|SECONDS\n\n|===\n\n==== Configuration example\n\n[source, json]\n----\n \"rate\": {\n \"limit\": \"10\",\n \"periodTime\": 10,\n \"periodTimeUnit\": \"MINUTES\"\n }\n----\n\n=== Spike Arrest\n\nThe Spike-Arrest policy configures the number of requests allow over a limited period of time (from seconds to minutes).\nThis policy prevents request spikes by throttling incoming requests.\nFor example, a SpikeArrest policy configured to 2000 requests/second will limit the execution of simultaneous requests to 200 requests per 100ms.\n\nBy default, the SpikeArrest policy is applied to a plan, not a consumer. To apply a spike arrest to a consumer, you need to use the \\`key\\` attribute, which supports Expression Language.\n\n|===\n|Property |Required |Description |Type |Default\n\n|key\n|No\n|Key to identify a consumer to apply spike arresting against. Leave it empty to use the default behavior. Supports Expression Language (example: \\`{#request.headers['x-consumer-id']}\\`).\n|String\n|null\n\n|limit\n|No\n|Static limit on the number of requests that can be sent (this limit is used if the value > 0).\n|integer\n|0\n\n|dynamicLimit\n|No\n|Dynamic limit on the number of requests that can be sent (this limit is used if static limit = 0). The dynamic value is based on Expression Language expressions.\n|string\n|null\n\n|periodTime\n|Yes\n|Time duration\n|Integer\n|1\n\n|periodTimeUnit\n|Yes\n|Time unit (\\`SECONDS\\`, \\`MINUTES\\`)\n|String\n|SECONDS\n\n|===\n\n==== Configuration example\n\n[source, json]\n----\n \"spike\": {\n \"limit\": \"10\",\n \"periodTime\": 10,\n \"periodTimeUnit\": \"MINUTES\"\n }\n----\n\n== Errors\n\n=== Default response override\n\nYou can use the response template feature to override the default response provided by the policies. These templates must be defined at the API level (see the API Console *Response Templates*\noption in the API *Proxy* menu).\n\n=== Error keys\n\nThe error keys sent by these policies are as follows:\n\n[cols=\"2*\", options=\"header\"]\n|===\n^|Key\n^|Parameters\n\n.^|RATE_LIMIT_TOO_MANY_REQUESTS\n^.^|limit - period_time - period_unit\n\n.^|QUOTA_TOO_MANY_REQUESTS\n^.^|limit - period_time - period_unit\n\n.^|SPIKE_ARREST_TOO_MANY_REQUESTS\n^.^|limit - period_time - period_unit - slice_limit - slice_period_time - slice_limit_period_unit\n\n|===\n`;\n\n return attributes ?? base;\n}\n","/*\n * Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { PolicySchema } from './PolicySchema';\n\nexport function fakePolicySchema(attributes?: PolicySchema): PolicySchema {\n const base: PolicySchema = 'A policy schema';\n\n return attributes ?? base;\n}\n","/*\n * Copyright (C) 2022 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport * from './PolicyListItem.fixture';\nexport * from './PolicyDocumentation.fixture';\nexport * from './PolicySchema.fixture';\n","/*\n * Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { Injectable } from '@angular/core';\nimport { Observable, of } from 'rxjs';\nimport { map } from 'rxjs/operators';\n\nimport { PolicyDocumentation, PolicyListItem, PolicySchema } from '../models/policy';\nimport { fakePolicyListItem, fakePolicySchema, fakePolicyDocumentation } from '../models/policy/index-testing';\n\nimport { PolicyServiceAbstract } from './policy.abstract.service';\nimport { ListParams } from './resource.abstract.service';\n\n@Injectable()\nexport class PolicyService extends PolicyServiceAbstract {\n public list(_params: ListParams): Observable<PolicyListItem[]> {\n return of([fakePolicyListItem()]);\n }\n\n public listSwaggerPolicies(): Observable<PolicyListItem[]> {\n return of([fakePolicyListItem()]);\n }\n\n public getSchema(_policyId: string): Observable<PolicySchema> {\n return of(fakePolicySchema());\n }\n\n public getDocumentation(_policyId: string): Observable<PolicyDocumentation> {\n return of(fakePolicyDocumentation()).pipe(map(buffer => buffer.toString()));\n }\n}\n","/*\n * Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { ResourceDocumentation } from './ResourceDocumentation';\n\nexport function fakeResourceDocumentation(attributes?: ResourceDocumentation): ResourceDocumentation {\n const base: ResourceDocumentation = `\n= Cache Resource\n\nifdef::env-github[]\nimage:https://ci.gravitee.io/buildStatus/icon?job=gravitee-io/gravitee-resource-cache/master[\"Build status\", link=\"https://ci.gravitee.io/job/gravitee-io/job/gravitee-resource-cache/\"]\nimage:https://badges.gitter.im/Join Chat.svg[\"Gitter\", link=\"https://gitter.im/gravitee-io/gravitee-io?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\"]\nendif::[]\n\n== Description\n\nThe cache resource is used to maintain a cache and link it to the API lifecycle.\nIt means that the cache is initialized when the API is starting and released when API is stopped.\n\nThis cache is responsible to store HTTP response from the backend to avoid subsequent calls.\n\nCurrent implementation of the cache resource is based on https://hazelcast.com/[Hazelcast].\n\n== Configuration\n\nYou can configure the resource with the following options :\n\n|===\n|Property |Required |Description |Type |Default\n\n.^|name\n^.^|X\n|The name of the cache.\n^.^|string\n^.^|my-cache\n\n.^|timeToIdleSeconds\n^.^|X\n|The maximum number of seconds an element can exist in the cache without being accessed. The element expires at this limit and will no longer be returned from the cache. The default value is 0, which means no timeToIdle (TTI) eviction takes place (infinite lifetime).\n^.^|integer\n^.^|0\n\n.^|timeToLiveSeconds\n^.^|X\n|The maximum number of seconds an element can exist in the cache regardless of use. The element expires at this limit and will no longer be returned from the cache. The default value is 0, which means no timeToLive (TTL) eviction takes place (infinite lifetime).\n^.^|integer\n^.^|0\n\n.^|maxEntriesLocalHeap\n^.^|X\n|The maximum objects to be held in local heap memory (0 = no limit).\n^.^|integer\n^.^|1000\n\n|===\n\n\n[source, json]\n.Configuration example\n----\n{\n \"name\" : \"cache\",\n \"type\" : \"cache\",\n \"enabled\" : true,\n \"configuration\" : {\n \"name\": \"my-cache\",\n \"timeToIdleSeconds\":0,\n \"timeToLiveSeconds\":0,\n \"maxEntriesLocalHeap\":1000\n }\n}\n----`;\n\n return attributes ?? base;\n}\n","/*\n * Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { ResourceListItem } from './ResourceListItem';\n\nexport function fakeResourceListItem(attributes?: Partial<ResourceListItem>): ResourceListItem {\n const base: ResourceListItem = {\n description:\n 'The resource is used to maintain a cache and link it to the API lifecycle. It means that the cache is initialized when the API is starting and released when API is stopped.',\n icon: 'data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAuNzEgMTEyLjgyIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZvbnQtc2l6ZToxMnB4O2ZpbGw6IzFkMWQxYjtmb250LWZhbWlseTpNeXJpYWRQcm8tUmVndWxhciwgTXlyaWFkIFBybzt9LmNscy0ye2xldHRlci1zcGFjaW5nOi0wLjAxZW07fS5jbHMtM3tmaWxsOiM4NmMzZDA7fS5jbHMtNHtmaWxsOiNmZmY7c3Ryb2tlOiNmZmY7c3Ryb2tlLW1pdGVybGltaXQ6MTA7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJIT1NUSU5HIj48dGV4dCBjbGFzcz0iY2xzLTEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE3LjkzIC00Ljk4KSI+PHRzcGFuIGNsYXNzPSJjbHMtMiI+QzwvdHNwYW4+PHRzcGFuIHg9IjYuODgiIHk9IjAiPmFjaGU8L3RzcGFuPjwvdGV4dD48cmVjdCBjbGFzcz0iY2xzLTMiIHg9IjUiIHk9IjExIiB3aWR0aD0iOTAiIGhlaWdodD0iOTAiIGZpbGw9InRyYW5zcGFyZW50IiBzdHJva2Utd2lkdGg9IjUiLz48cGF0aCBjbGFzcz0iY2xzLTQiIGQ9Ik00Ny40NSw3Ny41OEEyMy4zLDIzLjMsMCwwLDEsNDIsNzYuOTNMNDIuNDYsNzVhMjEuMzQsMjEuMzQsMCwxLDAtMTEtMzQuODNsLTEuNS0xLjMyQTIzLjM0LDIzLjM0LDAsMSwxLDQ3LjQ1LDc3LjU4WiIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtNCIgcG9pbnRzPSI0Ni4yOCA3MC44OSAzNC40MSA3Mi4zNyA0MS42MyA4MS45MSA0Ni4yOCA3MC44OSIvPjwvZz48L3N2Zz4K',\n id: 'cache',\n name: 'Cache',\n schema:\n '{\\n \"type\" : \"object\",\\n \"id\" : \"urn:jsonschema:io:gravitee:resource:cache:configuration:CacheResourceConfiguration\",\\n \"properties\" : {\\n \"name\" : {\\n \"title\": \"Cache name\",\\n \"description\": \"The name of the cache.\",\\n \"type\" : \"string\",\\n \"default\": \"my-cache\"\\n },\\n \"timeToIdleSeconds\" : {\\n \"title\": \"Time to idle (in seconds)\",\\n \"type\" : \"integer\",\\n \"description\": \"The maximum number of seconds an element can exist in the cache without being accessed. The element expires at this limit and will no longer be returned from the cache. The default value is 0, which means no timeToIdle (TTI) eviction takes place (infinite lifetime).\",\\n \"default\": 0,\\n \"minimum\": 0\\n },\\n \"timeToLiveSeconds\" : {\\n \"title\": \"Time to live (in seconds)\",\\n \"type\" : \"integer\",\\n \"description\": \"The maximum number of seconds an element can exist in the cache regardless of use. The element expires at this limit and will no longer be returned from the cache. The default value is 0, which means no timeToLive (TTL) eviction takes place (infinite lifetime).\",\\n \"default\": 0,\\n \"minimum\": 0\\n },\\n \"maxEntriesLocalHeap\" : {\\n \"title\": \"Max entries on heap\",\\n \"description\": \"The maximum objects to be held in local heap memory (0 = no limit).\",\\n \"type\" : \"integer\",\\n \"default\": 1000,\\n \"minimum\": 0\\n }\\n },\\n \"required\": [\\n \"name\",\\n \"timeToIdleSeconds\",\\n \"timeToLiveSeconds\",\\n \"maxEntriesLocalHeap\",\\n \"timeToLiveSeconds\"\\n ]\\n}\\n',\n version: '1.6.1',\n };\n\n return {\n ...base,\n ...attributes,\n };\n}\n","/*\n * Copyright (C) 2022 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport * from './ResourceDocumentation.fixture';\nexport * from './ResourceListItem.fixture';\n","/*\n * Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { Injectable } from '@angular/core';\nimport { Observable, of } from 'rxjs';\n\nimport { ResourceDocumentation, ResourceListItem } from '../models/resource';\nimport { fakeResourceDocumentation, fakeResourceListItem } from '../models/resource/index-testing';\n\nimport { ListParams, ResourceServiceAbstract } from './resource.abstract.service';\n\n@Injectable()\nexport class ResourceService extends ResourceServiceAbstract {\n public list(_params: ListParams): Observable<ResourceListItem[]> {\n return of([fakeResourceListItem()]);\n }\n\n public getDocumentation(_resourceId: string): Observable<ResourceDocumentation> {\n return of(fakeResourceDocumentation());\n }\n}\n","/*\n * Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { Grammar } from './Grammar';\n\nexport function fakeGrammar(attributes?: Partial<Grammar>): Grammar {\n return {\n ...base,\n ...attributes,\n } as Grammar;\n}\n\nconst base: Grammar = {\n request: {\n content: {\n _type: 'String',\n },\n contextPath: {\n _type: 'String',\n },\n headers: {\n _type: 'HttpHeaders',\n },\n id: {\n _type: 'String',\n },\n localAddress: {\n _type: 'String',\n },\n params: {\n _type: 'MultiValueMap',\n },\n path: {\n _type: 'String',\n },\n pathInfo: {\n _type: 'String',\n },\n pathInfos: {\n _type: 'String[]',\n },\n pathParams: {\n _type: 'MultiValueMap',\n },\n paths: {\n _type: 'String[]',\n },\n remoteAddress: {\n _type: 'String',\n },\n scheme: {\n _type: 'String',\n },\n ssl: {\n client: {\n attributes: {\n _type: 'MultiValueMap',\n },\n businessCategory: {\n _type: 'String',\n },\n c: {\n _type: 'String',\n },\n cn: {\n _type: 'String',\n },\n countryOfCitizenship: {\n _type: 'String',\n },\n countryOfResidence: {\n _type: 'String',\n },\n dateOfBirth: {\n _type: 'String',\n },\n dc: {\n _type: 'String',\n },\n defined: {\n _type: 'boolean',\n },\n description: {\n _type: 'String',\n },\n dmdName: {\n _type: 'String',\n },\n dn: {\n _type: 'String',\n },\n dnQualifier: {\n _type: 'String',\n },\n e: {\n _type: 'String',\n },\n emailAddress: {\n _type: 'String',\n },\n gender: {\n _type: 'String',\n },\n generation: {\n _type: 'String',\n },\n givenname: {\n _type: 'String',\n },\n initials: {\n _type: 'String',\n },\n l: {\n _type: 'String',\n },\n name: {\n _type: 'String',\n },\n nameAtBirth: {\n _type: 'String',\n },\n o: {\n _type: 'String',\n },\n organizationIdentifier: {\n _type: 'String',\n },\n ou: {\n _type: 'String',\n },\n placeOfBirth: {\n _type: 'String',\n },\n postalAddress: {\n _type: 'String',\n },\n postalCode: {\n _type: 'String',\n },\n pseudonym: {\n _type: 'String',\n },\n role: {\n _type: 'String',\n },\n serialnumber: {\n _type: 'String',\n },\n st: {\n _type: 'String',\n },\n street: {\n _type: 'String',\n },\n surname: {\n _type: 'String',\n },\n t: {\n _type: 'String',\n },\n telephoneNumber: {\n _type: 'String',\n },\n uid: {\n _type: 'String',\n },\n uniqueIdentifier: {\n _type: 'String',\n },\n unstructuredAddress: {\n _type: 'String',\n },\n },\n clientHost: {\n _type: 'String',\n },\n clientPort: {\n _type: 'Integer',\n },\n server: {\n attributes: {\n _type: 'MultiValueMap',\n },\n businessCategory: {\n _type: 'String',\n },\n c: {\n _type: 'String',\n },\n cn: {\n _type: 'String',\n },\n countryOfCitizenship: {\n _type: 'String',\n },\n countryOfResidence: {\n _type: 'String',\n },\n dateOfBirth: {\n _type: 'String',\n },\n dc: {\n _type: 'String',\n },\n defined: {\n _type: 'boolean',\n },\n description: {\n _type: 'String',\n },\n dmdName: {\n _type: 'String',\n },\n dn: {\n _type: 'String',\n },\n dnQualifier: {\n _type: 'String',\n },\n e: {\n _type: 'String',\n },\n emailAddress: {\n _type: 'String',\n },\n gender: {\n _type: 'String',\n },\n generation: {\n _type: 'String',\n },\n givenname: {\n _type: 'String',\n },\n initials: {\n _type: 'String',\n },\n l: {\n _type: 'String',\n },\n name: {\n _type: 'String',\n },\n nameAtBirth: {\n _type: 'String',\n },\n o: {\n _type: 'String',\n },\n organizationIdentifier: {\n _type: 'String',\n },\n ou: {\n _type: 'String',\n },\n placeOfBirth: {\n _type: 'String',\n },\n postalAddress: {\n _type: 'String',\n },\n postalCode: {\n _type: 'String',\n },\n pseudonym: {\n _type: 'String',\n },\n role: {\n _type: 'String',\n },\n serialnumber: {\n _type: 'String',\n },\n st: {\n _type: 'String',\n },\n street: {\n _type: 'String',\n },\n surname: {\n _type: 'String',\n },\n t: {\n _type: 'String',\n },\n telephoneNumber: {\n _type: 'String',\n },\n uid: {\n _type: 'String',\n },\n uniqueIdentifier: {\n _type: 'String',\n },\n unstructuredAddress: {\n _type: 'String',\n },\n },\n },\n timestamp: {\n _type: 'long',\n },\n transactionId: {\n _type: 'String',\n },\n uri: {\n _type: 'String',\n },\n version: {\n _type: 'String',\n },\n },\n endpoints: {\n _type: 'String[]',\n },\n response: {\n headers: {\n _type: 'HttpHeaders',\n },\n content: {\n _type: 'String',\n },\n status: {\n _type: 'int',\n },\n },\n context: {\n attributes: {\n 'context-path': {\n _type: 'String',\n },\n application: {\n _type: 'String',\n },\n 'api-key': {\n _type: 'String',\n },\n 'user-id': {\n _type: 'String',\n },\n api: {\n _type: 'String',\n },\n plan: {\n _type: 'String',\n },\n 'resolved-path': {\n _type: 'String',\n },\n },\n },\n _enums: {\n HttpHeaders: [\n 'Accept',\n 'Accept-Charset',\n 'Accept-Encoding',\n 'Accept-Language',\n 'Accept-Ranges',\n 'Access-Control-Allow-Credentials',\n 'Access-Control-Allow-Headers',\n 'Access-Control-Allow-Methods',\n 'Access-Control-Allow-Origin',\n 'Access-Control-Expose-Headers',\n 'Access-Control-Max-Age',\n 'Access-Control-Request-Headers',\n 'Access-Control-Request-Method',\n 'Age',\n 'Allow',\n 'Authorization',\n 'Cache-Control',\n 'Connection',\n 'Content-Disposition',\n 'Content-Encoding',\n 'Content-ID',\n 'Content-Language',\n 'Content-Length',\n 'Content-Location',\n 'Content-MD5',\n 'Content-Range',\n 'Content-Type',\n 'Cookie',\n 'Date',\n 'ETag',\n 'Expires',\n 'Expect',\n 'Forwarded',\n 'From',\n 'Host',\n 'If-Match',\n 'If-Modified-Since',\n 'If-None-Match',\n 'If-Unmodified-Since',\n 'Keep-Alive',\n 'Last-Modified',\n 'Location',\n 'Link',\n 'Max-Forwards',\n 'MIME-Version',\n 'Origin',\n 'Pragma',\n 'Proxy-Authenticate',\n 'Proxy-Authorization',\n 'Proxy-Connection',\n 'Range',\n 'Referer',\n 'Retry-After',\n 'Server',\n 'Set-Cookie',\n 'Set-Cookie2',\n 'TE',\n 'Trailer',\n 'Transfer-Encoding',\n 'Upgrade',\n 'User-Agent',\n 'Vary',\n 'Via',\n 'Warning',\n 'WWW-Authenticate',\n 'X-Forwarded-For',\n 'X-Forwarded-Proto',\n 'X-Forwarded-Server',\n 'X-Forwarded-Host',\n 'X-Forwarded-Port',\n 'X-Forwarded-Prefix',\n ],\n },\n properties: {\n _type: 'String[]',\n },\n dictionaries: {\n _type: 'String[]',\n },\n _types: {\n MultiValueMap: {\n methods: [\n {\n name: 'containsKey',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'containsValue',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'entrySet',\n returnType: 'Set',\n },\n {\n name: 'get',\n returnType: 'Object',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'getOrDefault',\n returnType: 'Object',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n {\n name: 'arg1',\n type: 'Object',\n },\n ],\n },\n {\n name: 'isEmpty',\n returnType: 'boolean',\n },\n {\n name: 'keySet',\n returnType: 'Set',\n },\n {\n name: 'size',\n returnType: 'int',\n },\n {\n name: 'values',\n returnType: 'Collection',\n },\n ],\n },\n HttpHeaders: {\n methods: [\n {\n name: 'equals',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'hashCode',\n returnType: 'int',\n },\n {\n name: 'toString',\n returnType: 'String',\n },\n {\n name: 'containsKey',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'containsValue',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'entrySet',\n returnType: 'Set',\n },\n {\n name: 'get',\n returnType: 'Object',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'getOrDefault',\n returnType: 'Object',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n {\n name: 'arg1',\n type: 'Object',\n },\n ],\n },\n {\n name: 'isEmpty',\n returnType: 'boolean',\n },\n {\n name: 'keySet',\n returnType: 'Set',\n },\n {\n name: 'size',\n returnType: 'int',\n },\n {\n name: 'values',\n returnType: 'Collection',\n },\n ],\n },\n Map: {\n methods: [\n {\n name: 'containsKey',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'containsValue',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'entrySet',\n returnType: 'Set',\n },\n {\n name: 'get',\n returnType: 'Object',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'getOrDefault',\n returnType: 'Object',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n {\n name: 'arg1',\n type: 'Object',\n },\n ],\n },\n {\n name: 'isEmpty',\n returnType: 'boolean',\n },\n {\n name: 'keySet',\n returnType: 'Set',\n },\n {\n name: 'size',\n returnType: 'int',\n },\n {\n name: 'values',\n returnType: 'Collection',\n },\n ],\n },\n Boolean: {\n methods: [\n {\n name: 'equals',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'hashCode',\n returnType: 'int',\n },\n {\n name: 'toString',\n returnType: 'String',\n },\n ],\n },\n Integer: {\n methods: [\n {\n name: 'numberOfLeadingZeros',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'numberOfTrailingZeros',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'bitCount',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'equals',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'toString',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'toString',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'toString',\n returnType: 'String',\n },\n {\n name: 'hashCode',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'hashCode',\n returnType: 'int',\n },\n {\n name: 'min',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'max',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'signum',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'reverseBytes',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'compareTo',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'compareTo',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'Integer',\n },\n ],\n },\n {\n name: 'byteValue',\n returnType: 'byte',\n },\n {\n name: 'shortValue',\n returnType: 'short',\n },\n {\n name: 'intValue',\n returnType: 'int',\n },\n {\n name: 'longValue',\n returnType: 'long',\n },\n {\n name: 'floatValue',\n returnType: 'float',\n },\n {\n name: 'doubleValue',\n returnType: 'double',\n },\n {\n name: 'valueOf',\n returnType: 'Integer',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n ],\n },\n {\n name: 'valueOf',\n returnType: 'Integer',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'valueOf',\n returnType: 'Integer',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'toHexString',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'decode',\n returnType: 'Integer',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n ],\n },\n {\n name: 'compare',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'reverse',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'toUnsignedLong',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'parseInt',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'parseInt',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n ],\n },\n {\n name: 'parseInt',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'CharSequence',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n {\n name: 'arg2',\n type: 'int',\n },\n {\n name: 'arg3',\n type: 'int',\n },\n ],\n },\n {\n name: 'sum',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'compareUnsigned',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'toUnsignedString',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'toUnsignedString',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'toOctalString',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'toBinaryString',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'parseUnsignedInt',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'parseUnsignedInt',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n ],\n },\n {\n name: 'parseUnsignedInt',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'CharSequence',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n {\n name: 'arg2',\n type: 'int',\n },\n {\n name: 'arg3',\n type: 'int',\n },\n ],\n },\n {\n name: 'getInteger',\n returnType: 'Integer',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'getInteger',\n returnType: 'Integer',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n ],\n },\n {\n name: 'getInteger',\n returnType: 'Integer',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n {\n name: 'arg1',\n type: 'Integer',\n },\n ],\n },\n {\n name: 'divideUnsigned',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'remainderUnsigned',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'highestOneBit',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'lowestOneBit',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'rotateLeft',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'rotateRight',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'equals',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'hashCode',\n returnType: 'int',\n },\n {\n name: 'toString',\n returnType: 'String',\n },\n ],\n },\n Long: {\n methods: [\n {\n name: 'numberOfLeadingZeros',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n ],\n },\n {\n name: 'numberOfTrailingZeros',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n ],\n },\n {\n name: 'bitCount',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n ],\n },\n {\n name: 'equals',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'toString',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n ],\n },\n {\n name: 'toString',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'toString',\n returnType: 'String',\n },\n {\n name: 'hashCode',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n ],\n },\n {\n name: 'hashCode',\n returnType: 'int',\n },\n {\n name: 'min',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n {\n name: 'arg1',\n type: 'long',\n },\n ],\n },\n {\n name: 'max',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n {\n name: 'arg1',\n type: 'long',\n },\n ],\n },\n {\n name: 'signum',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n ],\n },\n {\n name: 'reverseBytes',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n ],\n },\n {\n name: 'compareTo',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'compareTo',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'Long',\n },\n ],\n },\n {\n name: 'getLong',\n returnType: 'Long',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n ],\n },\n {\n name: 'getLong',\n returnType: 'Long',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n {\n name: 'arg1',\n type: 'long',\n },\n ],\n },\n {\n name: 'getLong',\n returnType: 'Long',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n {\n name: 'arg1',\n type: 'Long',\n },\n ],\n },\n {\n name: 'byteValue',\n returnType: 'byte',\n },\n {\n name: 'shortValue',\n returnType: 'short',\n },\n {\n name: 'intValue',\n returnType: 'int',\n },\n {\n name: 'longValue',\n returnType: 'long',\n },\n {\n name: 'floatValue',\n returnType: 'float',\n },\n {\n name: 'doubleValue',\n returnType: 'double',\n },\n {\n name: 'valueOf',\n returnType: 'Long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n ],\n },\n {\n name: 'valueOf',\n returnType: 'Long',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'valueOf',\n returnType: 'Long',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n ],\n },\n {\n name: 'toHexString',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n ],\n },\n {\n name: 'decode',\n returnType: 'Long',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n ],\n },\n {\n name: 'compare',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n {\n name: 'arg1',\n type: 'long',\n },\n ],\n },\n {\n name: 'reverse',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n ],\n },\n {\n name: 'sum',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n {\n name: 'arg1',\n type: 'long',\n },\n ],\n },\n {\n name: 'compareUnsigned',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n {\n name: 'arg1',\n type: 'long',\n },\n ],\n },\n {\n name: 'toUnsignedString',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'toUnsignedString',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n ],\n },\n {\n name: 'toOctalString',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n ],\n },\n {\n name: 'toBinaryString',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n ],\n },\n {\n name: 'parseLong',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'parseLong',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'CharSequence',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n {\n name: 'arg2',\n type: 'int',\n },\n {\n name: 'arg3',\n type: 'int',\n },\n ],\n },\n {\n name: 'parseLong',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n ],\n },\n {\n name: 'divideUnsigned',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n {\n name: 'arg1',\n type: 'long',\n },\n ],\n },\n {\n name: 'remainderUnsigned',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n {\n name: 'arg1',\n type: 'long',\n },\n ],\n },\n {\n name: 'highestOneBit',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n ],\n },\n {\n name: 'lowestOneBit',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n ],\n },\n {\n name: 'rotateLeft',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'rotateRight',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'parseUnsignedLong',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n ],\n },\n {\n name: 'parseUnsignedLong',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'CharSequence',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n {\n name: 'arg2',\n type: 'int',\n },\n {\n name: 'arg3',\n type: 'int',\n },\n ],\n },\n {\n name: 'parseUnsignedLong',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'equals',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'hashCode',\n returnType: 'int',\n },\n {\n name: 'toString',\n returnType: 'String',\n },\n ],\n },\n Math: {\n methods: [\n {\n name: 'abs',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n ],\n },\n {\n name: 'abs',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'abs',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'abs',\n returnType: 'float',\n params: [\n {\n name: 'arg0',\n type: 'float',\n },\n ],\n },\n {\n name: 'sin',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'cos',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'tan',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'atan2',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n {\n name: 'arg1',\n type: 'double',\n },\n ],\n },\n {\n name: 'sqrt',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'log',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'log10',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'pow',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n {\n name: 'arg1',\n type: 'double',\n },\n ],\n },\n {\n name: 'exp',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'min',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n {\n name: 'arg1',\n type: 'long',\n },\n ],\n },\n {\n name: 'min',\n returnType: 'float',\n params: [\n {\n name: 'arg0',\n type: 'float',\n },\n {\n name: 'arg1',\n type: 'float',\n },\n ],\n },\n {\n name: 'min',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n {\n name: 'arg1',\n type: 'double',\n },\n ],\n },\n {\n name: 'min',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'max',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n {\n name: 'arg1',\n type: 'long',\n },\n ],\n },\n {\n name: 'max',\n returnType: 'float',\n params: [\n {\n name: 'arg0',\n type: 'float',\n },\n {\n name: 'arg1',\n type: 'float',\n },\n ],\n },\n {\n name: 'max',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n {\n name: 'arg1',\n type: 'double',\n },\n ],\n },\n {\n name: 'max',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'floor',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'ceil',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'rint',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'addExact',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'addExact',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n {\n name: 'arg1',\n type: 'long',\n },\n ],\n },\n {\n name: 'decrementExact',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'decrementExact',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n ],\n },\n {\n name: 'incrementExact',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n ],\n },\n {\n name: 'incrementExact',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'multiplyExact',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'multiplyExact',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'multiplyExact',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n {\n name: 'arg1',\n type: 'long',\n },\n ],\n },\n {\n name: 'multiplyHigh',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n {\n name: 'arg1',\n type: 'long',\n },\n ],\n },\n {\n name: 'negateExact',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n ],\n },\n {\n name: 'negateExact',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'subtractExact',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n {\n name: 'arg1',\n type: 'long',\n },\n ],\n },\n {\n name: 'subtractExact',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'fma',\n returnType: 'float',\n params: [\n {\n name: 'arg0',\n type: 'float',\n },\n {\n name: 'arg1',\n type: 'float',\n },\n {\n name: 'arg2',\n type: 'float',\n },\n ],\n },\n {\n name: 'fma',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n {\n name: 'arg1',\n type: 'double',\n },\n {\n name: 'arg2',\n type: 'double',\n },\n ],\n },\n {\n name: 'copySign',\n returnType: 'float',\n params: [\n {\n name: 'arg0',\n type: 'float',\n },\n {\n name: 'arg1',\n type: 'float',\n },\n ],\n },\n {\n name: 'copySign',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n {\n name: 'arg1',\n type: 'double',\n },\n ],\n },\n {\n name: 'signum',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'signum',\n returnType: 'float',\n params: [\n {\n name: 'arg0',\n type: 'float',\n },\n ],\n },\n {\n name: 'scalb',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'scalb',\n returnType: 'float',\n params: [\n {\n name: 'arg0',\n type: 'float',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'getExponent',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'float',\n },\n ],\n },\n {\n name: 'getExponent',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'floorMod',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'floorMod',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n {\n name: 'arg1',\n type: 'long',\n },\n ],\n },\n {\n name: 'floorMod',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'asin',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'acos',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'atan',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'toRadians',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'toDegrees',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'cbrt',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'IEEEremainder',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n {\n name: 'arg1',\n type: 'double',\n },\n ],\n },\n {\n name: 'round',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'float',\n },\n ],\n },\n {\n name: 'round',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'random',\n returnType: 'double',\n },\n {\n name: 'toIntExact',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n ],\n },\n {\n name: 'multiplyFull',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'floorDiv',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'floorDiv',\n returnType: 'long',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n {\n name: 'arg1',\n type: 'long',\n },\n ],\n },\n {\n name: 'floorDiv',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'ulp',\n returnType: 'float',\n params: [\n {\n name: 'arg0',\n type: 'float',\n },\n ],\n },\n {\n name: 'ulp',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'sinh',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'cosh',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'tanh',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'hypot',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n {\n name: 'arg1',\n type: 'double',\n },\n ],\n },\n {\n name: 'expm1',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'log1p',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'nextAfter',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n {\n name: 'arg1',\n type: 'double',\n },\n ],\n },\n {\n name: 'nextAfter',\n returnType: 'float',\n params: [\n {\n name: 'arg0',\n type: 'float',\n },\n {\n name: 'arg1',\n type: 'double',\n },\n ],\n },\n {\n name: 'nextUp',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'nextUp',\n returnType: 'float',\n params: [\n {\n name: 'arg0',\n type: 'float',\n },\n ],\n },\n {\n name: 'nextDown',\n returnType: 'float',\n params: [\n {\n name: 'arg0',\n type: 'float',\n },\n ],\n },\n {\n name: 'nextDown',\n returnType: 'double',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'equals',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'hashCode',\n returnType: 'int',\n },\n {\n name: 'toString',\n returnType: 'String',\n },\n ],\n },\n Object: {\n methods: [\n {\n name: 'equals',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'hashCode',\n returnType: 'int',\n },\n {\n name: 'toString',\n returnType: 'String',\n },\n ],\n },\n List: {\n methods: [\n {\n name: 'get',\n returnType: 'Object',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'contains',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'isEmpty',\n returnType: 'boolean',\n },\n {\n name: 'size',\n returnType: 'int',\n },\n ],\n },\n Collection: {\n methods: [\n {\n name: 'contains',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'isEmpty',\n returnType: 'boolean',\n },\n {\n name: 'size',\n returnType: 'int',\n },\n ],\n },\n Set: {\n methods: [\n {\n name: 'contains',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'isEmpty',\n returnType: 'boolean',\n },\n {\n name: 'size',\n returnType: 'int',\n },\n ],\n },\n String: {\n methods: [\n {\n name: 'equals',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'length',\n returnType: 'int',\n },\n {\n name: 'toString',\n returnType: 'String',\n },\n {\n name: 'hashCode',\n returnType: 'int',\n },\n {\n name: 'getChars',\n returnType: 'void',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n {\n name: 'arg2',\n type: 'char[]',\n },\n {\n name: 'arg3',\n type: 'int',\n },\n ],\n },\n {\n name: 'compareTo',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n ],\n },\n {\n name: 'compareTo',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'indexOf',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'indexOf',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'indexOf',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'indexOf',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n ],\n },\n {\n name: 'valueOf',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'long',\n },\n ],\n },\n {\n name: 'valueOf',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'valueOf',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'char',\n },\n ],\n },\n {\n name: 'valueOf',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'double',\n },\n ],\n },\n {\n name: 'valueOf',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'float',\n },\n ],\n },\n {\n name: 'valueOf',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'valueOf',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'char[]',\n },\n ],\n },\n {\n name: 'valueOf',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'boolean',\n },\n ],\n },\n {\n name: 'valueOf',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'char[]',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n {\n name: 'arg2',\n type: 'int',\n },\n ],\n },\n {\n name: 'isEmpty',\n returnType: 'boolean',\n },\n {\n name: 'charAt',\n returnType: 'char',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'codePointAt',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'codePointBefore',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'codePointCount',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'offsetByCodePoints',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'getBytes',\n returnType: 'byte[]',\n params: [\n {\n name: 'arg0',\n type: 'Charset',\n },\n ],\n },\n {\n name: 'getBytes',\n returnType: 'void',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n {\n name: 'arg2',\n type: 'byte[]',\n },\n {\n name: 'arg3',\n type: 'int',\n },\n ],\n },\n {\n name: 'getBytes',\n returnType: 'byte[]',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n ],\n },\n {\n name: 'getBytes',\n returnType: 'byte[]',\n },\n {\n name: 'contentEquals',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'StringBuffer',\n },\n ],\n },\n {\n name: 'contentEquals',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'CharSequence',\n },\n ],\n },\n {\n name: 'equalsIgnoreCase',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n ],\n },\n {\n name: 'regionMatches',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'boolean',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n {\n name: 'arg2',\n type: 'String',\n },\n {\n name: 'arg3',\n type: 'int',\n },\n {\n name: 'arg4',\n type: 'int',\n },\n ],\n },\n {\n name: 'regionMatches',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'String',\n },\n {\n name: 'arg2',\n type: 'int',\n },\n {\n name: 'arg3',\n type: 'int',\n },\n ],\n },\n {\n name: 'compareToIgnoreCase',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n ],\n },\n {\n name: 'startsWith',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'startsWith',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n ],\n },\n {\n name: 'endsWith',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n ],\n },\n {\n name: 'lastIndexOf',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'lastIndexOf',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n ],\n },\n {\n name: 'lastIndexOf',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'lastIndexOf',\n returnType: 'int',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'substring',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'substring',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'subSequence',\n returnType: 'CharSequence',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'concat',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n ],\n },\n {\n name: 'replace',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'CharSequence',\n },\n {\n name: 'arg1',\n type: 'CharSequence',\n },\n ],\n },\n {\n name: 'replace',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'char',\n },\n {\n name: 'arg1',\n type: 'char',\n },\n ],\n },\n {\n name: 'matches',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n ],\n },\n {\n name: 'contains',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'CharSequence',\n },\n ],\n },\n {\n name: 'replaceFirst',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n {\n name: 'arg1',\n type: 'String',\n },\n ],\n },\n {\n name: 'replaceAll',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n {\n name: 'arg1',\n type: 'String',\n },\n ],\n },\n {\n name: 'split',\n returnType: 'String[]',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n ],\n },\n {\n name: 'split',\n returnType: 'String[]',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n ],\n },\n {\n name: 'join',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'CharSequence',\n },\n {\n name: 'arg1',\n type: 'CharSequence[]',\n },\n ],\n },\n {\n name: 'join',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'CharSequence',\n },\n {\n name: 'arg1',\n type: 'Iterable',\n },\n ],\n },\n {\n name: 'toLowerCase',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'Locale',\n },\n ],\n },\n {\n name: 'toLowerCase',\n returnType: 'String',\n },\n {\n name: 'toUpperCase',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'Locale',\n },\n ],\n },\n {\n name: 'toUpperCase',\n returnType: 'String',\n },\n {\n name: 'trim',\n returnType: 'String',\n },\n {\n name: 'strip',\n returnType: 'String',\n },\n {\n name: 'stripLeading',\n returnType: 'String',\n },\n {\n name: 'stripTrailing',\n returnType: 'String',\n },\n {\n name: 'isBlank',\n returnType: 'boolean',\n },\n {\n name: 'lines',\n returnType: 'Stream',\n },\n {\n name: 'chars',\n returnType: 'IntStream',\n },\n {\n name: 'codePoints',\n returnType: 'IntStream',\n },\n {\n name: 'toCharArray',\n returnType: 'char[]',\n },\n {\n name: 'format',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'String',\n },\n {\n name: 'arg1',\n type: 'Object[]',\n },\n ],\n },\n {\n name: 'format',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'Locale',\n },\n {\n name: 'arg1',\n type: 'String',\n },\n {\n name: 'arg2',\n type: 'Object[]',\n },\n ],\n },\n {\n name: 'copyValueOf',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'char[]',\n },\n {\n name: 'arg1',\n type: 'int',\n },\n {\n name: 'arg2',\n type: 'int',\n },\n ],\n },\n {\n name: 'copyValueOf',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'char[]',\n },\n ],\n },\n {\n name: 'intern',\n returnType: 'String',\n },\n {\n name: 'repeat',\n returnType: 'String',\n params: [\n {\n name: 'arg0',\n type: 'int',\n },\n ],\n },\n {\n name: 'equals',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'hashCode',\n returnType: 'int',\n },\n {\n name: 'toString',\n returnType: 'String',\n },\n ],\n },\n 'String[]': {\n methods: [\n {\n name: 'equals',\n returnType: 'boolean',\n params: [\n {\n name: 'arg0',\n type: 'Object',\n },\n ],\n },\n {\n name: 'hashCode',\n returnType: 'int',\n },\n {\n name: 'toString',\n returnType: 'String',\n },\n ],\n },\n },\n};\n","/*\n * Copyright (C) 2022 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport * from './Grammar.fixture';\n","/*\n * Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { Injectable } from '@angular/core';\nimport { Observable, of } from 'rxjs';\n\nimport { Grammar } from '../models/spel';\nimport { fakeGrammar } from '../models/spel/index-testing';\n\nimport { SpelServiceAbstract } from './spel.abstract.service';\n\n@Injectable({\n providedIn: 'root',\n})\nexport class SpelService extends SpelServiceAbstract {\n public getGrammar(): Observable<Grammar> {\n return of(fakeGrammar());\n }\n}\n","/*\n * Copyright (C) 2022 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';\n\nimport { GioPolicyStudioComponent } from './gio-policy-studio.component';\nimport { FlowService } from './services/flow.service.fixture';\nimport { PolicyService } from './services/policy.service.fixture';\nimport { ResourceService } from './services/resource.service.fixture';\nimport { SpelService } from './services/spel.service.fixture';\n\n@NgModule({\n declarations: [GioPolicyStudioComponent],\n imports: [],\n exports: [GioPolicyStudioComponent],\n schemas: [CUSTOM_ELEMENTS_SCHEMA],\n})\nexport class GioPolicyStudioModule {\n public static forSpecs(): GioPolicyStudioModule {\n return {\n ngModule: GioPolicyStudioModule,\n providers: [\n {\n provide: 'FlowService',\n useClass: FlowService,\n },\n {\n provide: 'PolicyService',\n useClass: PolicyService,\n },\n {\n provide: 'ResourceService',\n useClass: ResourceService,\n },\n {\n provide: 'SpelService',\n useClass: SpelService,\n },\n ],\n };\n }\n}\n","/*\n * Copyright (C) 2022 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n/*\n * Public API Surface of ui-policy-studio-angular\n */\nexport * from './lib/models';\nexport * from './lib/services';\nexport * from './lib/gio-policy-studio.module';\nexport * from './lib/gio-policy-studio.component';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"gravitee-ui-policy-studio-angular.mjs","sources":["../../../projects/ui-policy-studio-angular/src/lib/models/flow/index.ts","../../../projects/ui-policy-studio-angular/src/lib/models/index.ts","../../../projects/ui-policy-studio-angular/src/lib/components/flows-menu/gio-ps-flows-menu.component.ts","../../../projects/ui-policy-studio-angular/src/lib/components/flows-menu/gio-ps-flows-menu.component.html","../../../projects/ui-policy-studio-angular/src/lib/components/flow-details/gio-ps-flow-details.component.ts","../../../projects/ui-policy-studio-angular/src/lib/components/flow-details/gio-ps-flow-details.component.html","../../../projects/ui-policy-studio-angular/src/lib/gio-policy-studio.component.ts","../../../projects/ui-policy-studio-angular/src/lib/gio-policy-studio.component.html","../../../projects/ui-policy-studio-angular/src/lib/gio-policy-studio.module.ts","../../../projects/ui-policy-studio-angular/src/public-api.ts","../../../projects/ui-policy-studio-angular/src/gravitee-ui-policy-studio-angular.ts"],"sourcesContent":["/*\n * Copyright (C) 2022 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport * from './Flow';\nexport * from './FlowExecution';\nexport * from './HttpMethod';\nexport * from './Selector';\nexport * from './Step';\n","/*\n * Copyright (C) 2022 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport * from './flow';\n","/*\n * Copyright (C) 2022 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { Component } from '@angular/core';\n\n@Component({\n selector: 'gio-ps-flows-menu',\n templateUrl: './gio-ps-flows-menu.component.html',\n styleUrls: ['./gio-ps-flows-menu.component.scss'],\n})\nexport class GioPolicyStudioFlowsMenuComponent {}\n","<!--\n\n Copyright (C) 2023 The Gravitee team (http://gravitee.io)\n \n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n \n http://www.apache.org/licenses/LICENSE-2.0\n \n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n-->\n\n<div class=\"header\">\n <div class=\"mat-h4\">Flows</div>\n</div>\n\n<div class=\"content\">🚧 Work in progress 🚧</div>\n","/*\n * Copyright (C) 2022 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { Component } from '@angular/core';\n\n@Component({\n selector: 'gio-ps-flow-details',\n templateUrl: './gio-ps-flow-details.component.html',\n styleUrls: ['./gio-ps-flow-details.component.scss'],\n})\nexport class GioPolicyStudioDetailsMenuComponent {}\n","<!--\n\n Copyright (C) 2023 The Gravitee team (http://gravitee.io)\n \n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n \n http://www.apache.org/licenses/LICENSE-2.0\n \n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n-->\n\n<div class=\"header\">\n <div class=\"mat-h4\">Flow details</div>\n</div>\n\n<div class=\"content\">🚧 Work in progress 🚧</div>\n","/*\n * Copyright (C) 2022 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { Component } from '@angular/core';\n\n@Component({\n selector: 'gio-policy-studio',\n templateUrl: './gio-policy-studio.component.html',\n styleUrls: ['./gio-policy-studio.component.scss'],\n})\nexport class GioPolicyStudioComponent {}\n","<!--\n\n Copyright (C) 2015 The Gravitee team (http://gravitee.io)\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n\n-->\n\n<div class=\"header\">\n <div class=\"header__apiName\">\n <span class=\"mat-h4\">My API name</span><span class=\"gio-badge-neutral\"><mat-icon class=\"gio-left\" svgIcon=\"gio:lock\"></mat-icon></span>\n </div>\n\n <div class=\"header__btn\">\n <button mat-stroked-button color=\"primary\">Save</button>\n </div>\n</div>\n\n<div class=\"wrapper\">\n <div class=\"wrapper__flowsMenu\">\n <gio-ps-flows-menu></gio-ps-flows-menu>\n </div>\n\n <div class=\"wrapper__flowDetails\">\n <gio-ps-flow-details></gio-ps-flow-details>\n </div>\n</div>\n","/*\n * Copyright (C) 2022 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { NgModule } from '@angular/core';\nimport { MatButtonModule } from '@angular/material/button';\nimport { GioIconsModule } from '@gravitee/ui-particles-angular';\n\nimport { GioPolicyStudioComponent } from './gio-policy-studio.component';\nimport { GioPolicyStudioFlowsMenuComponent } from './components/flows-menu/gio-ps-flows-menu.component';\nimport { GioPolicyStudioDetailsMenuComponent } from './components/flow-details/gio-ps-flow-details.component';\n\n@NgModule({\n declarations: [GioPolicyStudioComponent, GioPolicyStudioFlowsMenuComponent, GioPolicyStudioDetailsMenuComponent],\n imports: [MatButtonModule, GioIconsModule],\n exports: [GioPolicyStudioComponent],\n})\nexport class GioPolicyStudioModule {}\n","/*\n * Copyright (C) 2022 The Gravitee team (http://gravitee.io)\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n/*\n * Public API Surface of ui-policy-studio-angular\n */\nexport * from './lib/models';\nexport * from './lib/gio-policy-studio.module';\nexport * from './lib/gio-policy-studio.component';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;;AAAA;;;;;;;;;;;;;;;;ACAA;;;;;;;;;;;;;;;;ACAA;;;;;;;;;;;;;;;MAsBa,iCAAiC;;+HAAjC,iCAAiC;mHAAjC,iCAAiC,yDCtB9C,mzBAuBA;4FDDa,iCAAiC;kBAL7C,SAAS;+BACE,mBAAmB;;;AElB/B;;;;;;;;;;;;;;;MAsBa,mCAAmC;;iIAAnC,mCAAmC;qHAAnC,mCAAmC,2DCtBhD,0zBAuBA;4FDDa,mCAAmC;kBAL/C,SAAS;+BACE,qBAAqB;;;AElBjC;;;;;;;;;;;;;;;MAsBa,wBAAwB;;sHAAxB,wBAAwB;0GAAxB,wBAAwB,yDCtBrC,ysCAqCA;4FDfa,wBAAwB;kBALpC,SAAS;+BACE,mBAAmB;;;AElB/B;;;;;;;;;;;;;;;MA4Ba,qBAAqB;;mHAArB,qBAAqB;oHAArB,qBAAqB,iBAJjB,wBAAwB,EAAE,iCAAiC,EAAE,mCAAmC,aACrG,eAAe,EAAE,cAAc,aAC/B,wBAAwB;oHAEvB,qBAAqB,YAHvB,CAAC,eAAe,EAAE,cAAc,CAAC;4FAG/B,qBAAqB;kBALjC,QAAQ;mBAAC;oBACR,YAAY,EAAE,CAAC,wBAAwB,EAAE,iCAAiC,EAAE,mCAAmC,CAAC;oBAChH,OAAO,EAAE,CAAC,eAAe,EAAE,cAAc,CAAC;oBAC1C,OAAO,EAAE,CAAC,wBAAwB,CAAC;iBACpC;;;AC3BD;;;;;;;;;;;;;;;;ACAA;;;;;;"}