├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ ├── doc-issues.yml │ ├── improvement.yml │ ├── new-feature.yml │ └── task.yml ├── claude │ └── system_prompt.txt ├── scripts │ ├── pr-builder.sh │ └── version_property_finder.py └── workflows │ ├── add-team-label.yaml │ ├── auto_lable.yml │ ├── claude_runner.yml │ ├── dependency-updater-next.yml │ ├── dependency-updater.yml │ ├── fapi-oidc-conformance-test.yml │ ├── fork-branch-deleter.yml │ ├── fossa-scanner.yaml │ ├── integration-test-runner-JDK11.yml │ ├── integration-test-runner-jdk17.yml │ ├── integration-test-runner-jdk21.yml │ ├── label-doc-issues.yml │ ├── migration-automation.yml │ ├── oidc-conformance-test.yml │ ├── on-pr-merge.yml │ └── sync-prs-to-next.yml ├── .gitignore ├── LICENSE ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── README.txt ├── SECURITY.md ├── docs ├── CONTRIBUTING.md └── wso2_codestyle.xml ├── etc ├── JavadocStyles.css └── copyright.html ├── issue_template.md ├── jmeter-tests ├── passive-sts │ └── sign-in.jmx └── saml2 │ └── saml2-sso.jmx ├── legal ├── base-LICENCE.txt ├── identity-provider-LICENCE.txt ├── idp-sample-LICENCE.txt ├── openid4java-LICENSE.txt ├── struts-LICENSE.txt ├── token-verifier-core-LICENCE.txt └── usermanager-core-LICENCE.txt ├── modules ├── agents │ └── mobile-proxy-idp │ │ └── iOS │ │ └── WSO2 IdPProxy │ │ ├── .DS_Store │ │ ├── AZone │ │ └── .DS_Store │ │ ├── IdPProxy Application │ │ └── .DS_Store │ │ └── eBuy │ │ └── .DS_Store ├── api-resources │ ├── README.md │ ├── api-resources-full │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── webapp │ │ │ ├── META-INF │ │ │ ├── context.xml │ │ │ └── webapp-classloading.xml │ │ │ └── WEB-INF │ │ │ └── web.xml │ └── pom.xml ├── authenticators │ └── pom.xml ├── connectors │ └── pom.xml ├── distribution │ ├── axis2_config_change.xml.j2 │ ├── conf │ │ ├── bps │ │ │ └── bps.xml │ │ ├── card.jpg │ │ └── policies │ │ │ ├── authn_group_based_policy_template.xml │ │ │ ├── authn_role_based_policy_template.xml │ │ │ ├── authn_scope_based_policy_template.xml │ │ │ ├── authn_time_and_role_based_policy_template.xml │ │ │ ├── authn_time_and_scope_based_policy_template.xml │ │ │ ├── authn_time_and_user_claim_based_policy_template.xml │ │ │ ├── authn_time_and_user_store_based_policy_template.xml │ │ │ ├── authn_time_based_policy_template.xml │ │ │ ├── authn_user_claim_based_policy_template.xml │ │ │ ├── authn_user_store_based_policy_template.xml │ │ │ ├── eval_permission_tree_policy.xml │ │ │ ├── provisioning_role_based_policy_template.xml │ │ │ ├── provisioning_time_and_role_based_policy_template.xml │ │ │ ├── provisioning_time_and_user_claim_based_policy_template.xml │ │ │ ├── provisioning_time_based_policy_template.xml │ │ │ └── provisioning_user_claim_based_policy_template.xml │ ├── pom.xml │ ├── registry_config_change.xml.j2 │ ├── src │ │ ├── assembly │ │ │ ├── bin.xml │ │ │ ├── dist.xml │ │ │ ├── filter.properties │ │ │ └── src.xml │ │ ├── bin │ │ │ ├── adaptive.bat │ │ │ ├── adaptive.sh │ │ │ ├── fips.bat │ │ │ ├── fips.sh │ │ │ └── openssl-tls.sh │ │ └── repository │ │ │ └── resources │ │ │ ├── conf │ │ │ ├── carbon.properties │ │ │ ├── catalina-server.xml │ │ │ ├── catalina.properties │ │ │ ├── default.json │ │ │ ├── deployment.toml │ │ │ ├── infer.json │ │ │ ├── key-mappings.json │ │ │ ├── log4j2.properties │ │ │ ├── secret-conf.properties │ │ │ └── templates │ │ │ │ └── repository │ │ │ │ └── conf │ │ │ │ └── tomcat │ │ │ │ └── catalina-server.xml.j2 │ │ │ ├── identity │ │ │ └── apple │ │ │ │ └── attestation │ │ │ │ └── apple_attestation_root_ca.pem │ │ │ ├── pages │ │ │ └── samlsso_federate.html │ │ │ ├── security │ │ │ ├── client-truststore.p12 │ │ │ └── wso2carbon.p12 │ │ │ └── shindig │ │ │ └── index.jsp │ └── updates │ │ └── product.txt ├── features │ ├── etc │ │ └── feature.properties │ ├── org.wso2.identity.jaggery.apps.feature │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ ├── dashboard │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── acs.jag │ │ │ ├── apis │ │ │ │ ├── gadget.json │ │ │ │ └── ues.jag │ │ │ ├── app.js │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ └── img │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ └── glyphicons-halflings.png │ │ │ ├── authentication │ │ │ │ └── auth_config.json │ │ │ ├── authenticationHandler.jag │ │ │ ├── conf │ │ │ │ └── site.json │ │ │ ├── controllers │ │ │ │ ├── account-connection │ │ │ │ │ └── userAccountAssociationClient.jag │ │ │ │ ├── login-logout │ │ │ │ │ ├── SAML2SSOAuthenticationClient.jag │ │ │ │ │ └── loggedUserInfoAdminClient.jag │ │ │ │ ├── payloadFactory.jag │ │ │ │ └── wsUtil.jag │ │ │ ├── css │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── dialog_bx.css │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ ├── font-awesome.css │ │ │ │ ├── font-awesome.min.css │ │ │ │ ├── jquery.gridster.min.css │ │ │ │ ├── localstyles.css │ │ │ │ ├── navigation.css │ │ │ │ ├── portal-dashboard-designer.css │ │ │ │ ├── portal-dashboard-navigation.css │ │ │ │ └── styles.css │ │ │ ├── font │ │ │ │ ├── Lato-Bol-webfont.eot │ │ │ │ ├── Lato-Bol-webfont.svg │ │ │ │ ├── Lato-Bol-webfont.ttf │ │ │ │ ├── Lato-Bol-webfont.woff │ │ │ │ ├── Lato-Reg-webfont.eot │ │ │ │ ├── Lato-Reg-webfont.svg │ │ │ │ ├── Lato-Reg-webfont.ttf │ │ │ │ ├── Lato-Reg-webfont.woff │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ └── fontawesome-webfont.woff │ │ │ ├── img │ │ │ │ ├── body-back.png │ │ │ │ ├── container-back.png │ │ │ │ ├── designer-sprite.png │ │ │ │ ├── dummy-grid.png │ │ │ │ ├── login-side.png │ │ │ │ ├── logo.png │ │ │ │ ├── logo2.png │ │ │ │ ├── repeat.jpg │ │ │ │ └── ui-icons_222222_256x240.png │ │ │ ├── index.jag │ │ │ ├── jaggery.conf │ │ │ ├── js │ │ │ │ ├── UESContainer.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── d_main.js │ │ │ │ ├── d_modal.js │ │ │ │ ├── handlebars.js │ │ │ │ ├── jquery-3.4.1.min.js │ │ │ │ ├── jquery-ui-1.12.1.custom.min.js │ │ │ │ ├── jquery.gridster.with-extras.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ ├── main.js │ │ │ │ ├── modal.js │ │ │ │ ├── navigation.js │ │ │ │ ├── portal-dashboard-designer.js │ │ │ │ ├── portal-dashboard-navigation.js │ │ │ │ ├── respond.min.js │ │ │ │ └── shindig.js │ │ │ ├── locale_default.json │ │ │ ├── locale_en.json │ │ │ ├── login.jag │ │ │ ├── logout.jag │ │ │ ├── modules │ │ │ │ ├── __user.js │ │ │ │ ├── server.js │ │ │ │ └── ues.js │ │ │ ├── my_profiles.jag │ │ │ ├── refresh.jag │ │ │ ├── samlsso.jag │ │ │ ├── self_registration.jag │ │ │ ├── session_manager.jag │ │ │ ├── ui-components.json │ │ │ ├── userAssociationHandler.jag │ │ │ └── util │ │ │ │ ├── constants.jag │ │ │ │ └── utility.jag │ │ │ ├── p2.inf │ │ │ ├── portal │ │ │ ├── conf │ │ │ │ └── site.json │ │ │ ├── error_pages │ │ │ │ └── error.jag │ │ │ ├── gadgets │ │ │ │ ├── account-recovery │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── account_recovery │ │ │ │ │ │ │ ├── edit_finish.jag │ │ │ │ │ │ │ └── identityMgtClient.jag │ │ │ │ │ │ ├── payloadFactory.jag │ │ │ │ │ │ └── wsUtil.jag │ │ │ │ │ ├── gadget.xml │ │ │ │ │ ├── index.jag │ │ │ │ │ ├── js │ │ │ │ │ │ ├── gadget.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── 404.html │ │ │ │ │ │ │ ├── crossdomain.xml │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── bootstrap-missing.css │ │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ │ └── smoothness │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_resize_se.gif │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── 454545_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── 888888_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ │ │ │ ├── dadada_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ ├── e6e6e6_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_01_flat_0.png │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_02_glass_65.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.css │ │ │ │ │ │ │ │ └── jqueryui-themeroller.css │ │ │ │ │ │ │ ├── font-awesome │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ │ └── font │ │ │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── add.gif │ │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ │ ├── confirm.gif │ │ │ │ │ │ │ ├── delete.gif │ │ │ │ │ │ │ ├── error.gif │ │ │ │ │ │ │ ├── identity-logo.png │ │ │ │ │ │ │ ├── info.gif │ │ │ │ │ │ │ ├── link-sep.png │ │ │ │ │ │ │ ├── overlay.png │ │ │ │ │ │ │ ├── repeat.jpg │ │ │ │ │ │ │ └── warning.gif │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ ├── jquery-3.4.1.min.js │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.js │ │ │ │ │ │ │ ├── jquery.validate.min.js │ │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ │ └── modernizr-2.6.2-respond-1.1.0.min.js │ │ │ │ │ ├── serverinfo.jag │ │ │ │ │ └── util │ │ │ │ │ │ ├── constants.jag │ │ │ │ │ │ └── utility.jag │ │ │ │ ├── approvals │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── approvals │ │ │ │ │ │ │ ├── approve-client.jag │ │ │ │ │ │ │ ├── form-client.jag │ │ │ │ │ │ │ ├── getState-client.jag │ │ │ │ │ │ │ ├── ht-client.jag │ │ │ │ │ │ │ └── start-release-suspend-client.jag │ │ │ │ │ │ ├── payloadFactory.jag │ │ │ │ │ │ └── wsUtil.jag │ │ │ │ │ ├── gadget.xml │ │ │ │ │ ├── index.jag │ │ │ │ │ ├── js │ │ │ │ │ │ ├── .gadget.js.swp │ │ │ │ │ │ ├── gadget.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ ├── u2f-api.js │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── 404.html │ │ │ │ │ │ │ ├── crossdomain.xml │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── bootstrap-missing.css │ │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ ├── localstyles.css │ │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ │ └── smoothness │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_resize_se.gif │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── 454545_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── 888888_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ │ │ │ ├── dadada_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ ├── e6e6e6_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_01_flat_0.png │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_02_glass_65.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.css │ │ │ │ │ │ │ │ └── jqueryui-themeroller.css │ │ │ │ │ │ │ ├── font-awesome │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ │ └── font │ │ │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── add.gif │ │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ │ ├── confirm.gif │ │ │ │ │ │ │ ├── delete.gif │ │ │ │ │ │ │ ├── error.gif │ │ │ │ │ │ │ ├── identity-logo.png │ │ │ │ │ │ │ ├── info.gif │ │ │ │ │ │ │ ├── link-sep.png │ │ │ │ │ │ │ ├── overlay.png │ │ │ │ │ │ │ ├── repeat.jpg │ │ │ │ │ │ │ └── warning.gif │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ ├── jquery-3.4.1.min.js │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.js │ │ │ │ │ │ │ ├── jquery.tablesorter.pager.js │ │ │ │ │ │ │ ├── jquery.validate.min.js │ │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ │ └── modernizr-2.6.2-respond-1.1.0.min.js │ │ │ │ │ ├── serverinfo.jag │ │ │ │ │ └── util │ │ │ │ │ │ ├── constants.jag │ │ │ │ │ │ └── utility.jag │ │ │ │ ├── backup_otp │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── backup_otp │ │ │ │ │ │ │ ├── profileClient.jag │ │ │ │ │ │ │ └── update-otp.jag │ │ │ │ │ │ ├── payloadFactory.jag │ │ │ │ │ │ └── wsUtil.jag │ │ │ │ │ ├── gadget.xml │ │ │ │ │ ├── index.jag │ │ │ │ │ ├── js │ │ │ │ │ │ ├── gadget.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ ├── u2f-api.js │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── 404.html │ │ │ │ │ │ │ ├── crossdomain.xml │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── bootstrap-missing.css │ │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ │ └── smoothness │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_resize_se.gif │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── 454545_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── 888888_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ │ │ │ ├── dadada_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ ├── e6e6e6_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_01_flat_0.png │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_02_glass_65.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.css │ │ │ │ │ │ │ │ └── jqueryui-themeroller.css │ │ │ │ │ │ │ ├── font-awesome │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ │ └── font │ │ │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── add.gif │ │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ │ ├── confirm.gif │ │ │ │ │ │ │ ├── delete.gif │ │ │ │ │ │ │ ├── error.gif │ │ │ │ │ │ │ ├── identity-logo.png │ │ │ │ │ │ │ ├── info.gif │ │ │ │ │ │ │ ├── link-sep.png │ │ │ │ │ │ │ ├── overlay.png │ │ │ │ │ │ │ ├── repeat.jpg │ │ │ │ │ │ │ └── warning.gif │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ ├── jquery-3.4.1.min.js │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.js │ │ │ │ │ │ │ ├── jquery.validate.min.js │ │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ │ └── modernizr-2.6.2-respond-1.1.0.min.js │ │ │ │ │ ├── serverinfo.jag │ │ │ │ │ └── util │ │ │ │ │ │ ├── constants.jag │ │ │ │ │ │ └── utility.jag │ │ │ │ ├── certificate_authority │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── my-profile │ │ │ │ │ │ │ ├── ca-client.jag │ │ │ │ │ │ │ ├── generate-csr.jag │ │ │ │ │ │ │ ├── get-certificate.jag │ │ │ │ │ │ │ ├── get-csr-list.jag │ │ │ │ │ │ │ ├── get-csr.jag │ │ │ │ │ │ │ └── upload-csr.jag │ │ │ │ │ │ ├── payloadFactory.jag │ │ │ │ │ │ └── wsUtil.jag │ │ │ │ │ ├── gadget.xml │ │ │ │ │ ├── index.jag │ │ │ │ │ ├── js │ │ │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ │ │ ├── gadget.js │ │ │ │ │ │ ├── jquery-DT-pagination.js │ │ │ │ │ │ ├── jquery.dataTables.js │ │ │ │ │ │ ├── jquery.dataTables.min.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ ├── pagination.js │ │ │ │ │ │ ├── ui │ │ │ │ │ │ │ ├── 404.html │ │ │ │ │ │ │ ├── crossdomain.xml │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── bootstrap-missing.css │ │ │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ │ │ └── smoothness │ │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_close.gif │ │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_resize_se.gif │ │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_left.gif │ │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_right.gif │ │ │ │ │ │ │ │ │ ├── 454545_11x11_icon_close.gif │ │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_left.gif │ │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_right.gif │ │ │ │ │ │ │ │ │ ├── 888888_11x11_icon_close.gif │ │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_left.gif │ │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_right.gif │ │ │ │ │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ │ │ │ │ ├── dadada_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ │ ├── e6e6e6_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_01_flat_0.png │ │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_02_glass_65.png │ │ │ │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.css │ │ │ │ │ │ │ │ │ └── jqueryui-themeroller.css │ │ │ │ │ │ │ ├── font-awesome │ │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ │ │ └── font │ │ │ │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ │ ├── add-csr.png │ │ │ │ │ │ │ │ ├── add.gif │ │ │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ │ │ ├── confirm.gif │ │ │ │ │ │ │ │ ├── csr-list.png │ │ │ │ │ │ │ │ ├── delete.gif │ │ │ │ │ │ │ │ ├── download.png │ │ │ │ │ │ │ │ ├── error.gif │ │ │ │ │ │ │ │ ├── generate-1.png │ │ │ │ │ │ │ │ ├── generate-csr.png │ │ │ │ │ │ │ │ ├── generate.png │ │ │ │ │ │ │ │ ├── identity-logo.png │ │ │ │ │ │ │ │ ├── info.gif │ │ │ │ │ │ │ │ ├── info.png │ │ │ │ │ │ │ │ ├── link-sep.png │ │ │ │ │ │ │ │ ├── list.png │ │ │ │ │ │ │ │ ├── manage.png │ │ │ │ │ │ │ │ ├── overlay.png │ │ │ │ │ │ │ │ ├── repeat.jpg │ │ │ │ │ │ │ │ ├── up.png │ │ │ │ │ │ │ │ ├── upload-9.png │ │ │ │ │ │ │ │ ├── upload-csr.png │ │ │ │ │ │ │ │ ├── warning.gif │ │ │ │ │ │ │ │ └── yellow-add.png │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ │ ├── jquery-3.4.1.min.js │ │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.js │ │ │ │ │ │ │ │ ├── jquery.validate.min.js │ │ │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ │ │ └── modernizr-2.6.2-respond-1.1.0.min.js │ │ │ │ │ │ └── upload-9.png │ │ │ │ │ └── util │ │ │ │ │ │ ├── constants.jag │ │ │ │ │ │ └── utility.jag │ │ │ │ ├── connected_accounts │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── payloadFactory.jag │ │ │ │ │ │ ├── service-clients │ │ │ │ │ │ │ ├── identityProviderAdminClient.jag │ │ │ │ │ │ │ ├── identityProviderMgtClient.jag │ │ │ │ │ │ │ ├── userAccountAssociationClient.jag │ │ │ │ │ │ │ └── userProfileMgtClient.jag │ │ │ │ │ │ └── wsUtil.jag │ │ │ │ │ ├── gadget.xml │ │ │ │ │ ├── index.jag │ │ │ │ │ ├── js │ │ │ │ │ │ ├── gadget.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── landing.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── 404.html │ │ │ │ │ │ │ ├── crossdomain.xml │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── bootstrap-missing.css │ │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ ├── localstyles.css │ │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ │ └── smoothness │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_resize_se.gif │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── 454545_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── 888888_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ │ │ │ ├── dadada_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ ├── e6e6e6_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_01_flat_0.png │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_02_glass_65.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.css │ │ │ │ │ │ │ │ └── jqueryui-themeroller.css │ │ │ │ │ │ │ ├── font-awesome │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ │ └── font │ │ │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── add.gif │ │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ │ ├── confirm.gif │ │ │ │ │ │ │ ├── delete.gif │ │ │ │ │ │ │ ├── error.gif │ │ │ │ │ │ │ ├── identity-logo.png │ │ │ │ │ │ │ ├── info.gif │ │ │ │ │ │ │ ├── link-sep.png │ │ │ │ │ │ │ ├── overlay.png │ │ │ │ │ │ │ ├── repeat.jpg │ │ │ │ │ │ │ ├── resident-idp.png │ │ │ │ │ │ │ ├── trust.png │ │ │ │ │ │ │ └── warning.gif │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ ├── jquery-3.4.1.min.js │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.js │ │ │ │ │ │ │ ├── jquery.validate.min.js │ │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ │ └── modernizr-2.6.2-respond-1.1.0.min.js │ │ │ │ │ ├── serverinfo.jag │ │ │ │ │ └── util │ │ │ │ │ │ ├── constants.jag │ │ │ │ │ │ └── utility.jag │ │ │ │ ├── consent_management │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── payloadFactory.jag │ │ │ │ │ │ └── wsUtil.jag │ │ │ │ │ ├── default_receipt.jag │ │ │ │ │ ├── gadget.xml │ │ │ │ │ ├── index.jag │ │ │ │ │ ├── js │ │ │ │ │ │ ├── gadget.js │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── bootstrap-missing.css │ │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ ├── jquery-ui-1.10.4.custom.min.css │ │ │ │ │ │ │ ├── localstyles.css │ │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ │ └── smoothness │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_resize_se.gif │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── 454545_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── 888888_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ │ │ │ ├── dadada_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ ├── e6e6e6_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_01_flat_0.png │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_02_glass_65.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.css │ │ │ │ │ │ │ │ └── jqueryui-themeroller.css │ │ │ │ │ │ │ ├── font-awesome │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ │ └── font │ │ │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── add.gif │ │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ │ ├── confirm.gif │ │ │ │ │ │ │ ├── delete.gif │ │ │ │ │ │ │ ├── error.gif │ │ │ │ │ │ │ ├── identity-logo.png │ │ │ │ │ │ │ ├── info.gif │ │ │ │ │ │ │ ├── link-sep.png │ │ │ │ │ │ │ ├── overlay.png │ │ │ │ │ │ │ ├── repeat.jpg │ │ │ │ │ │ │ └── warning.gif │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ ├── handlebars-v4.0.11.js │ │ │ │ │ │ │ ├── jquery-3.4.1.min.js │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.js │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ └── base │ │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ │ │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ │ │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ │ │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.css │ │ │ │ │ │ │ │ │ └── jquery-ui-1.12.1.custom.min.css │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── jquery-3.4.1.js │ │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.js │ │ │ │ │ │ │ │ └── jquery-ui-1.12.1.custom.min.js │ │ │ │ │ │ │ ├── jquery.validate.min.js │ │ │ │ │ │ │ ├── jstree │ │ │ │ │ │ │ ├── dist │ │ │ │ │ │ │ │ ├── jstree.js │ │ │ │ │ │ │ │ ├── jstree.min.js │ │ │ │ │ │ │ │ └── themes │ │ │ │ │ │ │ │ │ ├── default-dark │ │ │ │ │ │ │ │ │ ├── 32px.png │ │ │ │ │ │ │ │ │ ├── 40px.png │ │ │ │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ │ │ │ ├── style.min.css │ │ │ │ │ │ │ │ │ └── throbber.gif │ │ │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ │ │ ├── 32px.png │ │ │ │ │ │ │ │ │ ├── 40px.png │ │ │ │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ │ │ │ ├── style.min.css │ │ │ │ │ │ │ │ │ └── throbber.gif │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ ├── intro.js │ │ │ │ │ │ │ │ ├── jstree-actions.js │ │ │ │ │ │ │ │ ├── jstree.changed.js │ │ │ │ │ │ │ │ ├── jstree.checkbox.js │ │ │ │ │ │ │ │ ├── jstree.conditionalselect.js │ │ │ │ │ │ │ │ ├── jstree.contextmenu.js │ │ │ │ │ │ │ │ ├── jstree.dnd.js │ │ │ │ │ │ │ │ ├── jstree.js │ │ │ │ │ │ │ │ ├── jstree.massload.js │ │ │ │ │ │ │ │ ├── jstree.search.js │ │ │ │ │ │ │ │ ├── jstree.sort.js │ │ │ │ │ │ │ │ ├── jstree.state.js │ │ │ │ │ │ │ │ ├── jstree.types.js │ │ │ │ │ │ │ │ ├── jstree.unique.js │ │ │ │ │ │ │ │ ├── jstree.wholerow.js │ │ │ │ │ │ │ │ ├── misc.js │ │ │ │ │ │ │ │ ├── outro.js │ │ │ │ │ │ │ │ ├── sample.js │ │ │ │ │ │ │ │ ├── themes │ │ │ │ │ │ │ │ ├── base.less │ │ │ │ │ │ │ │ ├── default-dark │ │ │ │ │ │ │ │ │ ├── 32px.png │ │ │ │ │ │ │ │ │ ├── 40px.png │ │ │ │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ │ │ │ ├── style.less │ │ │ │ │ │ │ │ │ └── throbber.gif │ │ │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ │ │ ├── 32px.png │ │ │ │ │ │ │ │ │ ├── 40px.png │ │ │ │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ │ │ │ ├── style.less │ │ │ │ │ │ │ │ │ └── throbber.gif │ │ │ │ │ │ │ │ ├── main.less │ │ │ │ │ │ │ │ ├── mixins.less │ │ │ │ │ │ │ │ └── responsive.less │ │ │ │ │ │ │ │ └── vakata-jstree.js │ │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ │ └── modernizr-2.6.2-respond-1.1.0.min.js │ │ │ │ │ ├── receipt.jag │ │ │ │ │ ├── revoke_receipt.jag │ │ │ │ │ ├── samlsso.jag │ │ │ │ │ ├── serverinfo.jag │ │ │ │ │ ├── update_receipt.jag │ │ │ │ │ └── util │ │ │ │ │ │ ├── constants.jag │ │ │ │ │ │ └── utility.jag │ │ │ │ ├── identity_management │ │ │ │ │ ├── acs.jag │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── identity-management │ │ │ │ │ │ │ ├── IdentityProviderMgtServiceClient.jag │ │ │ │ │ │ │ ├── IdentityProviderServiceClient.jag │ │ │ │ │ │ │ ├── UserProfileMgtServiceClient.jag │ │ │ │ │ │ │ ├── add.jag │ │ │ │ │ │ │ ├── associateID.jag │ │ │ │ │ │ │ ├── edit.jag │ │ │ │ │ │ │ └── removeID.jag │ │ │ │ │ │ ├── payloadFactory.jag │ │ │ │ │ │ └── wsUtil.jag │ │ │ │ │ ├── gadget.xml │ │ │ │ │ ├── idpManager.jag │ │ │ │ │ ├── index.jag │ │ │ │ │ ├── js │ │ │ │ │ │ ├── gadget.js │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── landing.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── 404.html │ │ │ │ │ │ │ ├── apple-touch-icon-114x114-precomposed.png │ │ │ │ │ │ │ ├── apple-touch-icon-144x144-precomposed.png │ │ │ │ │ │ │ ├── apple-touch-icon-57x57-precomposed.png │ │ │ │ │ │ │ ├── apple-touch-icon-72x72-precomposed.png │ │ │ │ │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ │ │ │ │ ├── apple-touch-icon.png │ │ │ │ │ │ │ ├── crossdomain.xml │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── bootstrap-missing.css │ │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ ├── jquery-ui-1.10.4.custom.min.css │ │ │ │ │ │ │ ├── localstyles.css │ │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ │ └── smoothness │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_resize_se.gif │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── 454545_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── 888888_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ │ │ │ ├── dadada_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ ├── e6e6e6_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_01_flat_0.png │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_02_glass_65.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.css │ │ │ │ │ │ │ │ └── jqueryui-themeroller.css │ │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ │ ├── font-awesome │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ │ └── font │ │ │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── add.gif │ │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ │ ├── confirm.gif │ │ │ │ │ │ │ ├── delete.gif │ │ │ │ │ │ │ ├── error.gif │ │ │ │ │ │ │ ├── identity-logo.png │ │ │ │ │ │ │ ├── info.gif │ │ │ │ │ │ │ ├── link-sep.png │ │ │ │ │ │ │ ├── overlay.png │ │ │ │ │ │ │ ├── repeat.jpg │ │ │ │ │ │ │ └── warning.gif │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ ├── jquery-3.4.1.min.js │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.js │ │ │ │ │ │ │ ├── jquery.validate.min.js │ │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ │ └── modernizr-2.6.2-respond-1.1.0.min.js │ │ │ │ │ ├── samlsso.jag │ │ │ │ │ ├── serverinfo.jag │ │ │ │ │ └── util │ │ │ │ │ │ ├── constants.jag │ │ │ │ │ │ └── utility.jag │ │ │ │ ├── login-sessions │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── payloadFactory.jag │ │ │ │ │ │ ├── sessionMgtAdminClient.jag │ │ │ │ │ │ └── wsUtil.jag │ │ │ │ │ ├── gadget.xml │ │ │ │ │ ├── index-new.jag │ │ │ │ │ ├── index.jag │ │ │ │ │ ├── js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ ├── u2f-api.js │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── 404.html │ │ │ │ │ │ │ ├── crossdomain.xml │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── bootstrap-missing.css │ │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ ├── localstyles.css │ │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ │ └── smoothness │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_resize_se.gif │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── 454545_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── 888888_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ │ │ │ ├── dadada_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ ├── e6e6e6_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_01_flat_0.png │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_02_glass_65.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.css │ │ │ │ │ │ │ │ └── jqueryui-themeroller.css │ │ │ │ │ │ │ ├── font-awesome │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ │ └── font │ │ │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── add.gif │ │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ │ ├── confirm.gif │ │ │ │ │ │ │ ├── delete.gif │ │ │ │ │ │ │ ├── error.gif │ │ │ │ │ │ │ ├── identity-logo.png │ │ │ │ │ │ │ ├── info.gif │ │ │ │ │ │ │ ├── link-sep.png │ │ │ │ │ │ │ ├── overlay.png │ │ │ │ │ │ │ ├── repeat.jpg │ │ │ │ │ │ │ └── warning.gif │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ ├── jquery-3.4.1.min.js │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.js │ │ │ │ │ │ │ ├── jquery.tablesorter.pager.js │ │ │ │ │ │ │ ├── jquery.validate.min.js │ │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ │ └── modernizr-2.6.2-respond-1.1.0.min.js │ │ │ │ │ ├── server-new.jag │ │ │ │ │ ├── server.jag │ │ │ │ │ ├── serverinfo.jag │ │ │ │ │ └── util │ │ │ │ │ │ ├── constants.jag │ │ │ │ │ │ └── utility.jag │ │ │ │ ├── my-login-sessions │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── payloadFactory.jag │ │ │ │ │ │ ├── sessionMgtAdminClient.jag │ │ │ │ │ │ └── wsUtil.jag │ │ │ │ │ ├── gadget.xml │ │ │ │ │ ├── index-new.jag │ │ │ │ │ ├── index.jag │ │ │ │ │ ├── js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ ├── u2f-api.js │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── 404.html │ │ │ │ │ │ │ ├── crossdomain.xml │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── bootstrap-missing.css │ │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ ├── localstyles.css │ │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ │ └── smoothness │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_resize_se.gif │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── 454545_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── 888888_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ │ │ │ ├── dadada_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ ├── e6e6e6_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_01_flat_0.png │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_02_glass_65.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.css │ │ │ │ │ │ │ │ └── jqueryui-themeroller.css │ │ │ │ │ │ │ ├── font-awesome │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ │ └── font │ │ │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── add.gif │ │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ │ ├── confirm.gif │ │ │ │ │ │ │ ├── delete.gif │ │ │ │ │ │ │ ├── error.gif │ │ │ │ │ │ │ ├── identity-logo.png │ │ │ │ │ │ │ ├── info.gif │ │ │ │ │ │ │ ├── link-sep.png │ │ │ │ │ │ │ ├── overlay.png │ │ │ │ │ │ │ ├── repeat.jpg │ │ │ │ │ │ │ └── warning.gif │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ ├── jquery-3.4.1.min.js │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.js │ │ │ │ │ │ │ ├── jquery.tablesorter.pager.js │ │ │ │ │ │ │ ├── jquery.validate.min.js │ │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ │ └── modernizr-2.6.2-respond-1.1.0.min.js │ │ │ │ │ ├── server-new.jag │ │ │ │ │ ├── server.jag │ │ │ │ │ ├── serverinfo.jag │ │ │ │ │ └── util │ │ │ │ │ │ ├── constants.jag │ │ │ │ │ │ └── utility.jag │ │ │ │ ├── pwd_change │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── payloadFactory.jag │ │ │ │ │ │ ├── pwd_change │ │ │ │ │ │ │ ├── edit.jag │ │ │ │ │ │ │ └── userAdminClient.jag │ │ │ │ │ │ ├── service-clients │ │ │ │ │ │ │ └── UserAdminClient.jag │ │ │ │ │ │ └── wsUtil.jag │ │ │ │ │ ├── gadget.xml │ │ │ │ │ ├── index.jag │ │ │ │ │ ├── js │ │ │ │ │ │ ├── gadget.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── 404.html │ │ │ │ │ │ │ ├── crossdomain.xml │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── bootstrap-missing.css │ │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ │ └── smoothness │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_resize_se.gif │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── 454545_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── 888888_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ │ │ │ ├── dadada_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ ├── e6e6e6_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_01_flat_0.png │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_02_glass_65.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.css │ │ │ │ │ │ │ │ └── jqueryui-themeroller.css │ │ │ │ │ │ │ ├── font-awesome │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ │ └── font │ │ │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── add.gif │ │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ │ ├── confirm.gif │ │ │ │ │ │ │ ├── delete.gif │ │ │ │ │ │ │ ├── error.gif │ │ │ │ │ │ │ ├── identity-logo.png │ │ │ │ │ │ │ ├── info.gif │ │ │ │ │ │ │ ├── link-sep.png │ │ │ │ │ │ │ ├── overlay.png │ │ │ │ │ │ │ ├── repeat.jpg │ │ │ │ │ │ │ └── warning.gif │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ ├── jquery-3.4.1.min.js │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.js │ │ │ │ │ │ │ ├── jquery.validate.min.js │ │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ │ └── modernizr-2.6.2-respond-1.1.0.min.js │ │ │ │ │ ├── serverinfo.jag │ │ │ │ │ └── util │ │ │ │ │ │ ├── constants.jag │ │ │ │ │ │ └── utility.jag │ │ │ │ ├── scim_providers │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── payloadFactory.jag │ │ │ │ │ │ ├── scim-providers │ │ │ │ │ │ │ ├── delete_finish.jag │ │ │ │ │ │ │ ├── edit_finish.jag │ │ │ │ │ │ │ └── scimAdminClient.jag │ │ │ │ │ │ └── wsUtil.jag │ │ │ │ │ ├── gadget.xml │ │ │ │ │ ├── index.jag │ │ │ │ │ ├── js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── 404.html │ │ │ │ │ │ │ ├── crossdomain.xml │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── bootstrap-missing.css │ │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ │ └── smoothness │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_resize_se.gif │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── 454545_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── 888888_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ │ │ │ ├── dadada_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ ├── e6e6e6_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_01_flat_0.png │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_02_glass_65.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.css │ │ │ │ │ │ │ │ └── jqueryui-themeroller.css │ │ │ │ │ │ │ ├── font-awesome │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ │ └── font │ │ │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── add.gif │ │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ │ ├── confirm.gif │ │ │ │ │ │ │ ├── delete.gif │ │ │ │ │ │ │ ├── error.gif │ │ │ │ │ │ │ ├── identity-logo.png │ │ │ │ │ │ │ ├── info.gif │ │ │ │ │ │ │ ├── link-sep.png │ │ │ │ │ │ │ ├── overlay.png │ │ │ │ │ │ │ ├── repeat.jpg │ │ │ │ │ │ │ └── warning.gif │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ ├── jquery-3.4.1.min.js │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.js │ │ │ │ │ │ │ ├── jquery.validate.min.js │ │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ │ └── modernizr-2.6.2-respond-1.1.0.min.js │ │ │ │ │ ├── serverinfo.jag │ │ │ │ │ └── util │ │ │ │ │ │ ├── constants.jag │ │ │ │ │ │ └── utility.jag │ │ │ │ ├── user_auth_apps │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── my_auth_apps │ │ │ │ │ │ │ ├── my_authorized_app_remove.jag │ │ │ │ │ │ │ └── oauthAdminClient.jag │ │ │ │ │ │ ├── payloadFactory.jag │ │ │ │ │ │ └── wsUtil.jag │ │ │ │ │ ├── gadget.xml │ │ │ │ │ ├── index.jag │ │ │ │ │ ├── js │ │ │ │ │ │ ├── gadget.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ └── ui │ │ │ │ │ │ │ ├── 404.html │ │ │ │ │ │ │ ├── crossdomain.xml │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── bootstrap-missing.css │ │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ │ └── smoothness │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 222222_11x11_icon_resize_se.gif │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 222222_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── 454545_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 454545_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── 888888_11x11_icon_close.gif │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_left.gif │ │ │ │ │ │ │ │ ├── 888888_7x7_arrow_right.gif │ │ │ │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ │ │ │ ├── dadada_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ ├── e6e6e6_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_01_flat_0.png │ │ │ │ │ │ │ │ ├── ffffff_40x100_textures_02_glass_65.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.css │ │ │ │ │ │ │ │ └── jqueryui-themeroller.css │ │ │ │ │ │ │ ├── font-awesome │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ │ └── font │ │ │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── add.gif │ │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ │ ├── confirm.gif │ │ │ │ │ │ │ ├── delete.gif │ │ │ │ │ │ │ ├── error.gif │ │ │ │ │ │ │ ├── identity-logo.png │ │ │ │ │ │ │ ├── info.gif │ │ │ │ │ │ │ ├── link-sep.png │ │ │ │ │ │ │ ├── overlay.png │ │ │ │ │ │ │ ├── repeat.jpg │ │ │ │ │ │ │ └── warning.gif │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ ├── jquery-3.4.1.min.js │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.js │ │ │ │ │ │ │ ├── jquery.validate.min.js │ │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ │ └── modernizr-2.6.2-respond-1.1.0.min.js │ │ │ │ │ ├── serverinfo.jag │ │ │ │ │ └── util │ │ │ │ │ │ ├── constants.jag │ │ │ │ │ │ └── utility.jag │ │ │ │ └── user_profile │ │ │ │ │ ├── controllers │ │ │ │ │ ├── my-profile │ │ │ │ │ │ ├── download-userinfo.jag │ │ │ │ │ │ ├── edit-finish.jag │ │ │ │ │ │ ├── fido-check.jag │ │ │ │ │ │ ├── fido-finish.jag │ │ │ │ │ │ ├── fido-metadata.jag │ │ │ │ │ │ ├── fido-remove.jag │ │ │ │ │ │ ├── fido-start.jag │ │ │ │ │ │ ├── fido2-finish.jag │ │ │ │ │ │ ├── fido2-meta.jag │ │ │ │ │ │ ├── fido2-remove.jag │ │ │ │ │ │ ├── fido2-start.jag │ │ │ │ │ │ ├── profileClient.jag │ │ │ │ │ │ ├── totp-init.jag │ │ │ │ │ │ ├── totp-refresh.jag │ │ │ │ │ │ ├── totp-reset.jag │ │ │ │ │ │ └── userstoreMgtClient.jag │ │ │ │ │ ├── payloadFactory.jag │ │ │ │ │ └── wsUtil.jag │ │ │ │ │ ├── gadget.xml │ │ │ │ │ ├── index.jag │ │ │ │ │ ├── js │ │ │ │ │ ├── base64js │ │ │ │ │ │ └── base64js-1.3.0.min.js │ │ │ │ │ ├── base64url.js │ │ │ │ │ ├── gadget.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── main.js │ │ │ │ │ ├── modal.js │ │ │ │ │ ├── qrCodeGenerator.js │ │ │ │ │ ├── u2f-api.js │ │ │ │ │ └── ui │ │ │ │ │ │ ├── 404.html │ │ │ │ │ │ ├── crossdomain.xml │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-missing.css │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── main.css │ │ │ │ │ │ └── smoothness │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── 222222_11x11_icon_close.gif │ │ │ │ │ │ │ ├── 222222_11x11_icon_resize_se.gif │ │ │ │ │ │ │ ├── 222222_7x7_arrow_left.gif │ │ │ │ │ │ │ ├── 222222_7x7_arrow_right.gif │ │ │ │ │ │ │ ├── 454545_11x11_icon_close.gif │ │ │ │ │ │ │ ├── 454545_7x7_arrow_left.gif │ │ │ │ │ │ │ ├── 454545_7x7_arrow_right.gif │ │ │ │ │ │ │ ├── 888888_11x11_icon_close.gif │ │ │ │ │ │ │ ├── 888888_7x7_arrow_left.gif │ │ │ │ │ │ │ ├── 888888_7x7_arrow_right.gif │ │ │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ │ │ ├── dadada_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ ├── e6e6e6_40x100_textures_02_glass_75.png │ │ │ │ │ │ │ ├── ffffff_40x100_textures_01_flat_0.png │ │ │ │ │ │ │ ├── ffffff_40x100_textures_02_glass_65.png │ │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.css │ │ │ │ │ │ │ └── jqueryui-themeroller.css │ │ │ │ │ │ ├── font-awesome │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ │ │ └── font-awesome.min.css │ │ │ │ │ │ └── font │ │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── add.gif │ │ │ │ │ │ ├── background.png │ │ │ │ │ │ ├── confirm.gif │ │ │ │ │ │ ├── delete.gif │ │ │ │ │ │ ├── error.gif │ │ │ │ │ │ ├── identity-logo.png │ │ │ │ │ │ ├── info.gif │ │ │ │ │ │ ├── link-sep.png │ │ │ │ │ │ ├── overlay.png │ │ │ │ │ │ ├── repeat.jpg │ │ │ │ │ │ └── warning.gif │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ └── vendor │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ ├── jquery-3.4.1.min.js │ │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.js │ │ │ │ │ │ ├── jquery.validate.min.js │ │ │ │ │ │ ├── modal.js │ │ │ │ │ │ └── modernizr-2.6.2-respond-1.1.0.min.js │ │ │ │ │ ├── serverinfo.jag │ │ │ │ │ └── util │ │ │ │ │ ├── constants.jag │ │ │ │ │ └── utility.jag │ │ │ ├── index.jag │ │ │ ├── jaggery.conf │ │ │ ├── themes │ │ │ │ └── portal │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── codemirror │ │ │ │ │ │ ├── codemirror.css │ │ │ │ │ │ └── show-hint.css │ │ │ │ │ ├── elfinder.min.css │ │ │ │ │ ├── elfinderTheme.css │ │ │ │ │ ├── error.css │ │ │ │ │ ├── flot-graph.css │ │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ │ ├── font-awesome-ie7.min.css │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ ├── font-awesome.min.css │ │ │ │ │ ├── ie.css │ │ │ │ │ ├── jquery.gridster.min.css │ │ │ │ │ ├── jquery.rating.css │ │ │ │ │ ├── jslider.css │ │ │ │ │ ├── jslider.round.plastic.css │ │ │ │ │ ├── navigation.css │ │ │ │ │ ├── portal-dashboard-designer.css │ │ │ │ │ ├── portal-dashboard-navigation.css │ │ │ │ │ ├── portal-dashboard.css │ │ │ │ │ ├── portal-editor.css │ │ │ │ │ ├── portal-homepage.css │ │ │ │ │ ├── styles.css │ │ │ │ │ ├── theme.css │ │ │ │ │ ├── token-input-facebook.css │ │ │ │ │ ├── token-input-mac.css │ │ │ │ │ └── token-input.css │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── font │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── Lato-Bol-webfont.eot │ │ │ │ │ ├── Lato-Bol-webfont.svg │ │ │ │ │ ├── Lato-Bol-webfont.ttf │ │ │ │ │ ├── Lato-Bol-webfont.woff │ │ │ │ │ ├── Lato-Reg-webfont.eot │ │ │ │ │ ├── Lato-Reg-webfont.svg │ │ │ │ │ ├── Lato-Reg-webfont.ttf │ │ │ │ │ ├── Lato-Reg-webfont.woff │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ ├── helpers │ │ │ │ │ ├── error-404.js │ │ │ │ │ ├── error-500.js │ │ │ │ │ ├── navigation.js │ │ │ │ │ ├── portal-dashboard-browser.js │ │ │ │ │ ├── portal-dashboard-designer.js │ │ │ │ │ ├── portal-dashboard-navigation.js │ │ │ │ │ ├── portal-editor.js │ │ │ │ │ └── portal-homepage.js │ │ │ │ │ ├── img │ │ │ │ │ ├── arrows-active.png │ │ │ │ │ ├── arrows-normal.png │ │ │ │ │ ├── banner-bg-office.jpg │ │ │ │ │ ├── banner-bg-pattern.jpg │ │ │ │ │ ├── banner-bg.png │ │ │ │ │ ├── banner.png │ │ │ │ │ ├── column-border.png │ │ │ │ │ ├── crop.gif │ │ │ │ │ ├── delete.gif │ │ │ │ │ ├── designer-sprite.png │ │ │ │ │ ├── dialogs.png │ │ │ │ │ ├── dummy-grid.png │ │ │ │ │ ├── external_link_icon.gif │ │ │ │ │ ├── feature-1-pollution.png │ │ │ │ │ ├── feature-1-populations.png │ │ │ │ │ ├── feature-1-slider.png │ │ │ │ │ ├── feature-1-tip.png │ │ │ │ │ ├── feature-1.png │ │ │ │ │ ├── feature-3.png │ │ │ │ │ ├── feature-4.png │ │ │ │ │ ├── gadget-1.png │ │ │ │ │ ├── gadget-2.png │ │ │ │ │ ├── gadget-3.png │ │ │ │ │ ├── gadget-4.png │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ │ ├── icon-asset-api.png │ │ │ │ │ ├── icon-asset-gadget.png │ │ │ │ │ ├── icon-search.png │ │ │ │ │ ├── icon-store.png │ │ │ │ │ ├── icons-big.png │ │ │ │ │ ├── icons-small.png │ │ │ │ │ ├── jslider.round.plastic.png │ │ │ │ │ ├── jslider.round.png │ │ │ │ │ ├── logo-1.png │ │ │ │ │ ├── logo-banner.png │ │ │ │ │ ├── logo-ide.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── portal-feature-browser.png │ │ │ │ │ ├── portal-feature-dashboard.png │ │ │ │ │ ├── portal-feature-ide.png │ │ │ │ │ ├── portal-feature-jaggery.png │ │ │ │ │ ├── portal-feature-responsive.png │ │ │ │ │ ├── portal-feature-store.png │ │ │ │ │ ├── preloader-40x40.gif │ │ │ │ │ ├── progress.gif │ │ │ │ │ ├── quicklook-bg.png │ │ │ │ │ ├── quicklook-icons.png │ │ │ │ │ ├── resize.png │ │ │ │ │ ├── separator-line.png │ │ │ │ │ ├── spinner-mini.gif │ │ │ │ │ ├── star.png │ │ │ │ │ ├── store-gadget-1.png │ │ │ │ │ ├── store-gadget-2.png │ │ │ │ │ ├── store-gadget-3.png │ │ │ │ │ ├── store-gadget-4.png │ │ │ │ │ ├── store-gadget-gradient.png │ │ │ │ │ ├── store-gadget-recent.png │ │ │ │ │ ├── store-stars.png │ │ │ │ │ ├── thumbnail-agri.jpg │ │ │ │ │ ├── thumbnail-co2.jpg │ │ │ │ │ ├── thumbnail-electric.jpg │ │ │ │ │ ├── thumbnail-energy.jpg │ │ │ │ │ ├── thumbnail-gadget.jpg │ │ │ │ │ ├── thumbnail-greenhouse.jpg │ │ │ │ │ ├── toolbar.png │ │ │ │ │ ├── ui-icons-white.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ └── wso2-logo-small.png │ │ │ │ │ ├── js │ │ │ │ │ ├── UESContainer.js │ │ │ │ │ ├── alert.js │ │ │ │ │ ├── async.min.js │ │ │ │ │ ├── autosave.js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── caramel-client.js │ │ │ │ │ ├── codemirror │ │ │ │ │ │ ├── addon │ │ │ │ │ │ │ └── formatting.js │ │ │ │ │ │ ├── hint │ │ │ │ │ │ │ ├── html-hint.js │ │ │ │ │ │ │ ├── javascript-hint.js │ │ │ │ │ │ │ └── show-hint.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── codemirror.js │ │ │ │ │ │ ├── mode │ │ │ │ │ │ │ ├── css.js │ │ │ │ │ │ │ ├── htmlembedded.js │ │ │ │ │ │ │ ├── htmlmixed.js │ │ │ │ │ │ │ ├── javascript.js │ │ │ │ │ │ │ └── xml.js │ │ │ │ │ │ └── search │ │ │ │ │ │ │ └── searchcursor.js │ │ │ │ │ ├── diff │ │ │ │ │ │ └── diff.js │ │ │ │ │ ├── draggable-0.1.js │ │ │ │ │ ├── elfinder.full.js │ │ │ │ │ ├── elfinder.js │ │ │ │ │ ├── elfinder.min.js │ │ │ │ │ ├── gadgetContainer.js │ │ │ │ │ ├── gadgetInclude.js │ │ │ │ │ ├── gadgetPresenter.js │ │ │ │ │ ├── handlebars.js │ │ │ │ │ ├── ie.js │ │ │ │ │ ├── intro.js │ │ │ │ │ ├── jquery-3.4.1.min.js │ │ │ │ │ ├── jquery-ui-1.12.1.custom.min.js │ │ │ │ │ ├── jquery.MetaData.js │ │ │ │ │ ├── jquery.dependClass-0.1.js │ │ │ │ │ ├── jquery.gridster.min.js │ │ │ │ │ ├── jquery.gridster.with-extras.min.js │ │ │ │ │ ├── jquery.lettering-0.6.1.min.js │ │ │ │ │ ├── jquery.nicescroll.min.js │ │ │ │ │ ├── jquery.numberformatter-1.2.3.js │ │ │ │ │ ├── jquery.rating.pack.js │ │ │ │ │ ├── jquery.scrollorama.js │ │ │ │ │ ├── jquery.slider.js │ │ │ │ │ ├── jquery.tokeninput.js │ │ │ │ │ ├── jquery.validate.js │ │ │ │ │ ├── jshashtable-2.1_src.js │ │ │ │ │ ├── navigation.js │ │ │ │ │ ├── portal-dashboard-browser.js │ │ │ │ │ ├── portal-dashboard-designer.js │ │ │ │ │ ├── portal-dashboard-navigation.js │ │ │ │ │ ├── portal-editor.js │ │ │ │ │ ├── portal-gadgets-js.jag │ │ │ │ │ ├── portal-homepage.js │ │ │ │ │ ├── respond.min.js │ │ │ │ │ ├── shindig (copy).js │ │ │ │ │ ├── shindig.js │ │ │ │ │ ├── theme.js │ │ │ │ │ └── tmpl.js │ │ │ │ │ ├── pages │ │ │ │ │ ├── 1-column-designer.hbs │ │ │ │ │ ├── 1-column-fluid-shindig.hbs │ │ │ │ │ ├── 1-column-fluid.hbs │ │ │ │ │ ├── 1-column.hbs │ │ │ │ │ ├── 2-column-left.hbs │ │ │ │ │ └── error.hbs │ │ │ │ │ ├── partials │ │ │ │ │ ├── assets.hbs │ │ │ │ │ ├── comments.hbs │ │ │ │ │ ├── error-404.hbs │ │ │ │ │ ├── error-500.hbs │ │ │ │ │ ├── footer.hbs │ │ │ │ │ ├── login.hbs │ │ │ │ │ ├── navbar.hbs │ │ │ │ │ ├── navigation.hbs │ │ │ │ │ ├── overview.hbs │ │ │ │ │ ├── portal-dashboard-browser.hbs │ │ │ │ │ ├── portal-dashboard-designer.hbs │ │ │ │ │ ├── portal-dashboard-navigation.hbs │ │ │ │ │ ├── portal-editor.hbs │ │ │ │ │ ├── portal-homepage.hbs │ │ │ │ │ └── register.hbs │ │ │ │ │ ├── renderers │ │ │ │ │ ├── dashboard.js │ │ │ │ │ ├── designer.js │ │ │ │ │ ├── editor.js │ │ │ │ │ ├── error404.js │ │ │ │ │ ├── error500.js │ │ │ │ │ └── index.js │ │ │ │ │ └── theme.js │ │ │ └── util │ │ │ │ ├── constants.jag │ │ │ │ └── utility.jag │ │ │ └── sp_dashboard.xml │ ├── org.wso2.identity.styles.feature │ │ └── pom.xml │ ├── org.wso2.identity.ui.feature │ │ └── pom.xml │ ├── org.wso2.identity.utils.feature │ │ └── pom.xml │ └── pom.xml ├── integration-ui-templates │ └── pom.xml ├── integration │ ├── pom.xml │ ├── tests-common │ │ ├── admin-clients │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── identity │ │ │ │ └── integration │ │ │ │ └── common │ │ │ │ └── clients │ │ │ │ ├── AuthenticateStub.java │ │ │ │ ├── ClaimManagementServiceClient.java │ │ │ │ ├── Idp │ │ │ │ └── IdentityProviderMgtServiceClient.java │ │ │ │ ├── KeyStoreAdminClient.java │ │ │ │ ├── ResourceAdminServiceClient.java │ │ │ │ ├── TenantManagementServiceClient.java │ │ │ │ ├── UserManagementClient.java │ │ │ │ ├── UserProfileMgtServiceClient.java │ │ │ │ ├── application │ │ │ │ └── mgt │ │ │ │ │ ├── ApplicationManagementServiceClient.java │ │ │ │ │ └── DefaultAuthSeqMgtServiceClient.java │ │ │ │ ├── authorization │ │ │ │ └── mgt │ │ │ │ │ └── RemoteAuthorizationManagerServiceClient.java │ │ │ │ ├── ca │ │ │ │ └── authority │ │ │ │ │ ├── CAAdminServiceClient.java │ │ │ │ │ └── CAClientServiceClient.java │ │ │ │ ├── challenge │ │ │ │ └── questions │ │ │ │ │ └── mgt │ │ │ │ │ └── ChallengeQuestionMgtAdminClient.java │ │ │ │ ├── claim │ │ │ │ └── metadata │ │ │ │ │ └── mgt │ │ │ │ │ └── ClaimMetadataManagementServiceClient.java │ │ │ │ ├── functions │ │ │ │ └── library │ │ │ │ │ └── mgt │ │ │ │ │ └── FunctionLibraryManagementServiceClient.java │ │ │ │ ├── mgt │ │ │ │ ├── AccountCredentialMgtConfigServiceClient.java │ │ │ │ ├── IdentityGovernanceServiceClient.java │ │ │ │ ├── UserIdentityManagementAdminServiceClient.java │ │ │ │ └── UserInformationRecoveryServiceClient.java │ │ │ │ ├── oauth │ │ │ │ ├── Oauth2TokenValidationClient.java │ │ │ │ └── OauthAdminClient.java │ │ │ │ ├── openid │ │ │ │ └── OpenIDProviderServiceClient.java │ │ │ │ ├── registry │ │ │ │ └── PropertiesAdminServiceClient.java │ │ │ │ ├── scim │ │ │ │ └── SCIMConfigAdminClient.java │ │ │ │ ├── sso │ │ │ │ └── saml │ │ │ │ │ ├── SAMLSSOConfigServiceClient.java │ │ │ │ │ ├── SAMLSSOServiceClient.java │ │ │ │ │ └── query │ │ │ │ │ ├── ClientSignKeyDataHolder.java │ │ │ │ │ ├── QueryClientUtils.java │ │ │ │ │ └── SAMLQueryClient.java │ │ │ │ ├── sts │ │ │ │ └── ws │ │ │ │ │ └── trust │ │ │ │ │ ├── constants │ │ │ │ │ ├── Constants.java │ │ │ │ │ └── TestConstants.java │ │ │ │ │ ├── exception │ │ │ │ │ └── WSTrustClientException.java │ │ │ │ │ └── util │ │ │ │ │ ├── ClientUtils.java │ │ │ │ │ ├── RequestConstructor.java │ │ │ │ │ └── TestUtils.java │ │ │ │ ├── template │ │ │ │ └── mgt │ │ │ │ │ └── TemplateManagementServiceClient.java │ │ │ │ ├── user │ │ │ │ ├── account │ │ │ │ │ └── connector │ │ │ │ │ │ └── UserAccountConnectorServiceClient.java │ │ │ │ └── store │ │ │ │ │ ├── config │ │ │ │ │ └── UserStoreConfigAdminServiceClient.java │ │ │ │ │ └── count │ │ │ │ │ └── UserStoreCountServiceClient.java │ │ │ │ ├── usermgt │ │ │ │ ├── remote │ │ │ │ │ └── RemoteUserStoreManagerServiceClient.java │ │ │ │ └── uuid │ │ │ │ │ └── UUIDUserStoreManagerServiceClient.java │ │ │ │ ├── webappmgt │ │ │ │ └── WebAppAdminClient.java │ │ │ │ └── workflow │ │ │ │ └── mgt │ │ │ │ ├── ServiceAdminClient.java │ │ │ │ └── WorkflowAdminClient.java │ │ ├── extensions │ │ │ └── pom.xml │ │ ├── integration-test-utils │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── identity │ │ │ │ └── integration │ │ │ │ └── common │ │ │ │ ├── extension │ │ │ │ └── server │ │ │ │ │ └── IdentityServerExtension.java │ │ │ │ └── utils │ │ │ │ ├── CarbonTestServerManager.java │ │ │ │ ├── ISIntegrationTest.java │ │ │ │ ├── ISIntegrationUITest.java │ │ │ │ ├── MicroserviceServer.java │ │ │ │ ├── MicroserviceUtil.java │ │ │ │ ├── README.txt │ │ │ │ └── UserStoreConfigUtils.java │ │ ├── jacoco-report-generator │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── carbon │ │ │ │ └── identity │ │ │ │ └── jacoco │ │ │ │ └── ReportGenerator.java │ │ ├── pom.xml │ │ └── ui-pages │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── identity │ │ │ │ └── integration │ │ │ │ ├── common │ │ │ │ └── ui │ │ │ │ │ └── page │ │ │ │ │ ├── LoginPage.java │ │ │ │ │ ├── main │ │ │ │ │ ├── HomePage.java │ │ │ │ │ └── TenantHomePage.java │ │ │ │ │ └── util │ │ │ │ │ └── UIElementMapper.java │ │ │ │ └── ui │ │ │ │ └── pages │ │ │ │ ├── ISIntegrationUiBaseTest.java │ │ │ │ ├── UIElementMapper.java │ │ │ │ ├── login │ │ │ │ └── LoginPage.java │ │ │ │ └── main │ │ │ │ ├── HomePage.java │ │ │ │ └── TenantHomePage.java │ │ │ └── resources │ │ │ └── mapper.properties │ ├── tests-cypress-integration │ │ ├── pom.xml │ │ ├── tests-cypress-common │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── identity │ │ │ │ │ └── apps │ │ │ │ │ └── test │ │ │ │ │ └── container │ │ │ │ │ ├── CypressTestConstants.java │ │ │ │ │ ├── CypressTestContainer.java │ │ │ │ │ ├── CypressTestResults.java │ │ │ │ │ ├── CypressTestSuite.java │ │ │ │ │ ├── CypressTestUtils.java │ │ │ │ │ ├── MochawesomeResultsStrategy.java │ │ │ │ │ ├── TestResultsStrategy.java │ │ │ │ │ └── exception │ │ │ │ │ └── CypressContainerException.java │ │ │ │ └── resources │ │ │ │ ├── test-suite-runner.bat │ │ │ │ └── test-suite-runner.sh │ │ └── tests-identity-apps │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── identity │ │ │ │ └── cypress │ │ │ │ └── integration │ │ │ │ └── identity │ │ │ │ └── apps │ │ │ │ └── test │ │ │ │ └── CypressTestRunnerTestCase.java │ │ │ └── resources │ │ │ ├── automation.xml │ │ │ ├── automation_mapping.xsd │ │ │ ├── axis2config │ │ │ └── axis2_client.xml │ │ │ ├── emma.properties │ │ │ ├── filters.txt │ │ │ ├── instrumentation.txt │ │ │ ├── keystores │ │ │ └── products │ │ │ │ ├── client-truststore.p12 │ │ │ │ └── wso2carbon.p12 │ │ │ ├── log4j.properties │ │ │ ├── mapper.properties │ │ │ └── testng.xml │ ├── tests-integration │ │ ├── pom.xml │ │ └── tests-backend │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── identity │ │ │ │ └── integration │ │ │ │ └── test │ │ │ │ ├── AuthenticationAdminTestCase.java │ │ │ │ ├── CrossProtocolLogoutTestCase.java │ │ │ │ ├── EmailOTPTestCase.java │ │ │ │ ├── IdentityServerTestSuitInitializerTestCase.java │ │ │ │ ├── IdentityXmlParserTestCase.java │ │ │ │ ├── XmlParserTestUtils.java │ │ │ │ ├── analytics │ │ │ │ ├── authentication │ │ │ │ │ ├── AbstractAnalyticsLoginTestCase.java │ │ │ │ │ ├── AnalyticsLoginDataPublishHandlingTestCase.java │ │ │ │ │ └── AnalyticsLoginTestCase.java │ │ │ │ ├── base │ │ │ │ │ └── AnalyticsBaseTestCase.java │ │ │ │ ├── commons │ │ │ │ │ ├── AnalyticsDataHolder.java │ │ │ │ │ ├── KeyStoreUtil.java │ │ │ │ │ └── ThriftServer.java │ │ │ │ └── oauth │ │ │ │ │ └── OAuth2TokenIssuance.java │ │ │ │ ├── apiAuthorization │ │ │ │ ├── APIResourceInheritanceTestCase.java │ │ │ │ └── RBACWithAPIAuthorizationTestCase.java │ │ │ │ ├── application │ │ │ │ └── mgt │ │ │ │ │ ├── AbstractIdentityFederationTestCase.java │ │ │ │ │ ├── ApplicationManagementTestCase.java │ │ │ │ │ ├── ApplicationTemplateMgtTestCase.java │ │ │ │ │ ├── DefaultAuthSeqManagementTestCase.java │ │ │ │ │ ├── ImportExportServiceProviderTest.java │ │ │ │ │ └── ServiceProviderUserRoleValidationTestCase.java │ │ │ │ ├── applicationNativeAuthentication │ │ │ │ ├── ApplicationNativeAuthentication2FATestCase.java │ │ │ │ ├── ApplicationNativeAuthenticationFederationTestCase.java │ │ │ │ ├── ApplicationNativeAuthenticationTestCase.java │ │ │ │ └── Constants.java │ │ │ │ ├── auth │ │ │ │ ├── AbstractAdaptiveAuthenticationTestCase.java │ │ │ │ ├── AdaptiveScriptTemporaryClaimPersistenceTestCase.java │ │ │ │ ├── ConditionalAuthenticationTestCase.java │ │ │ │ ├── HttpMethodsTestCase.java │ │ │ │ ├── IdentifierFirstLoginTestCase.java │ │ │ │ ├── NashornAdaptiveScriptInitializerTestCase.java │ │ │ │ ├── PasswordLessEmailOTPAuthTestCase.java │ │ │ │ ├── PasswordlessSMSOTPAuthTestCase.java │ │ │ │ ├── RiskBasedLoginTestCase.java │ │ │ │ └── SecondaryStoreUserLoginTestCase.java │ │ │ │ ├── base │ │ │ │ ├── JDBCUserStoreInitializerTestCase.java │ │ │ │ ├── LDAPServerInitializerTestCase.java │ │ │ │ ├── LDAPUserStoreInitializerTestCase.java │ │ │ │ ├── MockApplicationServer.java │ │ │ │ ├── MockOIDCIdentityProvider.java │ │ │ │ ├── MockSMSProvider.java │ │ │ │ ├── ReadOnlyUserStoreInitializerTestCase.java │ │ │ │ ├── SMTPServerInitializerListener.java │ │ │ │ ├── SecondaryCarbonServerInitializerTestCase.java │ │ │ │ ├── TestDataHolder.java │ │ │ │ └── TomcatInitializerTestCase.java │ │ │ │ ├── certificateauthority │ │ │ │ ├── CaCertRevokeServicesTestCase.java │ │ │ │ ├── CaCertSignServicesTestCase.java │ │ │ │ ├── CaCsrServicesTestCase.java │ │ │ │ └── CaResources.java │ │ │ │ ├── challenge │ │ │ │ └── questions │ │ │ │ │ └── mgt │ │ │ │ │ └── ChallengeQuestionManagementAdminServiceTestCase.java │ │ │ │ ├── claim │ │ │ │ └── metadata │ │ │ │ │ └── mgt │ │ │ │ │ ├── ClaimMetadataManagementServiceTestCase.java │ │ │ │ │ ├── ClaimProfilesWithSCIM2SchemaTest.java │ │ │ │ │ ├── ClaimSelectiveStorageTestCase.java │ │ │ │ │ └── ClaimUniquenessValidationTestCase.java │ │ │ │ ├── consent │ │ │ │ ├── ConsentMgtTestCase.java │ │ │ │ └── SelfSignUpConsentTest.java │ │ │ │ ├── encryption │ │ │ │ └── EventPublisherPasswordEncryptionTestCase.java │ │ │ │ ├── functions │ │ │ │ └── library │ │ │ │ │ └── mgt │ │ │ │ │ └── FunctionLibraryManagementTestCase.java │ │ │ │ ├── identity │ │ │ │ ├── governance │ │ │ │ │ └── AdminForcedPasswordResetTestCase.java │ │ │ │ └── mgt │ │ │ │ │ ├── AccountCredentialMgtConfigServiceTestCase.java │ │ │ │ │ ├── AccountLockEnabledTestCase.java │ │ │ │ │ ├── AccountLockWhileCaseInsensitiveUserFalseTestCase.java │ │ │ │ │ ├── AccountLockingWhileSCIMEnabledTestCase.java │ │ │ │ │ ├── IdentityGovernanceTestCase.java │ │ │ │ │ ├── PasswordHistoryValidationTestCase.java │ │ │ │ │ ├── RetrieveResidentIdPEntityIdTestCase.java │ │ │ │ │ ├── UserIdentityManagementServiceTestCase.java │ │ │ │ │ ├── UserInformationRecoveryServiceTenantEmailUserTestCase.java │ │ │ │ │ └── UserInformationRecoveryServiceTestCase.java │ │ │ │ ├── identityServlet │ │ │ │ └── ExtendSessionEndpointAuthCodeGrantTestCase.java │ │ │ │ ├── idp │ │ │ │ └── mgt │ │ │ │ │ ├── ChallengeQuestionsUITestCase.java │ │ │ │ │ ├── IdentityProviderManagementTestCase.java │ │ │ │ │ ├── IdentityProviderMgtServiceTestCase.java │ │ │ │ │ ├── PreferenceAPIIntegrationUITestCase.java │ │ │ │ │ └── ResidentIDPConfigsTestCase.java │ │ │ │ ├── inheritance │ │ │ │ └── ConfigInheritanceTestCase.java │ │ │ │ ├── listeners │ │ │ │ └── IdentityTestListener.java │ │ │ │ ├── mgt │ │ │ │ └── ClaimManagementServiceTestCase.java │ │ │ │ ├── notification │ │ │ │ └── template │ │ │ │ │ └── mgt │ │ │ │ │ └── OrganizationNotificationOrgTemplatesTestCase.java │ │ │ │ ├── oauth2 │ │ │ │ ├── FederatedTokenSharingIDPConfigDisabledTestCase.java │ │ │ │ ├── FederatedTokenSharingTestCase.java │ │ │ │ ├── IDENTITY6777OAuth2TokenExpiryTestCase.java │ │ │ │ ├── JITUserAssociationTestCase.java │ │ │ │ ├── OAuth2ApplicationAccessTokenIntrospectionTestCase.java │ │ │ │ ├── OAuth2AuthorizationCodeGrantJWTTokenTestCase.java │ │ │ │ ├── OAuth2BackChannelLogoutTestCase.java │ │ │ │ ├── OAuth2DPopTestCase.java │ │ │ │ ├── OAuth2DeviceFlowTestCase.java │ │ │ │ ├── OAuth2IDTokenEncryptionTestCase.java │ │ │ │ ├── OAuth2PKCETestCase.java │ │ │ │ ├── OAuth2PushedAuthRequestTestCase.java │ │ │ │ ├── OAuth2RefreshGrantJWTTokenTestCase.java │ │ │ │ ├── OAuth2RequestObjectSignatureValidationTestCase.java │ │ │ │ ├── OAuth2ResponseModeTestCase.java │ │ │ │ ├── OAuth2RichAuthorizationRequestsGrantTypesTestCase.java │ │ │ │ ├── OAuth2RichAuthorizationRequestsTestCase.java │ │ │ │ ├── OAuth2RoleClaimTestCase.java │ │ │ │ ├── OAuth2ScopesTestCase.java │ │ │ │ ├── OAuth2ServiceAbstractIntegrationTest.java │ │ │ │ ├── OAuth2ServiceAuthCodeGrantCacheDisabledTestCase.java │ │ │ │ ├── OAuth2ServiceAuthCodeGrantOpenIdRequestObjectTestCase.java │ │ │ │ ├── OAuth2ServiceAuthCodeGrantTestCase.java │ │ │ │ ├── OAuth2ServiceClientCredentialTestCase.java │ │ │ │ ├── OAuth2ServiceErrorResponseTest.java │ │ │ │ ├── OAuth2ServiceImplicitGrantTestCase.java │ │ │ │ ├── OAuth2ServiceIntrospectionTestCase.java │ │ │ │ ├── OAuth2ServiceJWTGrantTestCase.java │ │ │ │ ├── OAuth2ServiceRefreshTokenGrantTestCase.java │ │ │ │ ├── OAuth2ServiceRegexCallbackUrlTestCase.java │ │ │ │ ├── OAuth2ServiceResourceOwnerLockedTestCase.java │ │ │ │ ├── OAuth2ServiceResourceOwnerTestCase.java │ │ │ │ ├── OAuth2ServiceSAML2BearerGrantTestCase.java │ │ │ │ ├── OAuth2TokenExchangeGrantTypeTestCase.java │ │ │ │ ├── OAuth2TokenRevocationAfterAccountDisablingTestCase.java │ │ │ │ ├── OAuth2TokenRevocationWithMultipleSessionTerminationTestCase.java │ │ │ │ ├── OAuth2TokenRevocationWithRevokedAccessToken.java │ │ │ │ ├── OAuth2TokenRevocationWithSessionTerminationTestCase.java │ │ │ │ ├── OAuth2TokenRevokeAfterCacheTimeOutTestCase.java │ │ │ │ ├── OAuth2TokenRevokeWithInvalidClientCredentialsTestCase.java │ │ │ │ ├── OAuth2TokenScopeValidatorTestCase.java │ │ │ │ ├── OAuthAdminServiceTestCase.java │ │ │ │ ├── OAuthAppsWithSameClientIdTestCase.java │ │ │ │ ├── OIDCCustomScopesLoginTest.java │ │ │ │ ├── OIDCDiscoveryTestCase.java │ │ │ │ ├── OIDCMetadataTest.java │ │ │ │ ├── Oauth2HashAlgorithmTestCase.java │ │ │ │ ├── Oauth2ImpersonationTestCase.java │ │ │ │ ├── Oauth2JWKSEndpointTestCase.java │ │ │ │ ├── Oauth2OPIframeTestCase.java │ │ │ │ ├── Oauth2PersistenceProcessorInsertTokenTestCase.java │ │ │ │ ├── Oauth2PersistenceProcessorTestCase.java │ │ │ │ ├── Oauth2TokenRenewalPerRequestTestCase.java │ │ │ │ ├── OpenIdUserInfoTestCase.java │ │ │ │ ├── PermissionBasedScopeValidatorTestCase.java │ │ │ │ ├── SystemScopePermissionValidationTestCase.java │ │ │ │ ├── consented │ │ │ │ │ └── token │ │ │ │ │ │ ├── OAuth2ServiceAuthCodeGrantJWTAccessTokenWithConsentedTokenColumnTestCase.java │ │ │ │ │ │ ├── OAuth2ServicePasswordGrantJWTAccessTokenWithConsentedTokenColumnTestCase.java │ │ │ │ │ │ └── OAuth2ServiceWithConsentedTokenColumnAbstractIntegrationTest.java │ │ │ │ ├── dataprovider │ │ │ │ │ └── model │ │ │ │ │ │ ├── ApplicationConfig.java │ │ │ │ │ │ ├── AuthorizedAccessTokenContext.java │ │ │ │ │ │ ├── AuthorizingUser.java │ │ │ │ │ │ ├── TokenScopes.java │ │ │ │ │ │ └── UserClaimConfig.java │ │ │ │ └── dcrm │ │ │ │ │ └── api │ │ │ │ │ ├── OAuthDCRMTestCase.java │ │ │ │ │ └── util │ │ │ │ │ └── OAuthDCRMConstants.java │ │ │ │ ├── oidc │ │ │ │ ├── OIDCAbstractIntegrationTest.java │ │ │ │ ├── OIDCAccessTokenAttributesTestCase.java │ │ │ │ ├── OIDCAuthCodeGrantSSODifferentSubjectIDTestCase.java │ │ │ │ ├── OIDCAuthCodeGrantSSOTestCase.java │ │ │ │ ├── OIDCAuthzCodeIdTokenValidationTestCase.java │ │ │ │ ├── OIDCFederatedIdpInitLogoutTest.java │ │ │ │ ├── OIDCFileBasedSkipLoginConsentTestCase.java │ │ │ │ ├── OIDCHybridFlowIntegrationTest.java │ │ │ │ ├── OIDCIdentityFederationTestCase.java │ │ │ │ ├── OIDCPasswordGrantTest.java │ │ │ │ ├── OIDCRPInitiatedLogoutTestCase.java │ │ │ │ ├── OIDCSPWiseSkipLoginConsentTestCase.java │ │ │ │ ├── OIDCSSOConsentTestCase.java │ │ │ │ ├── OIDCSubAttributeTestCase.java │ │ │ │ ├── OIDCUtilTest.java │ │ │ │ └── bean │ │ │ │ │ ├── OIDCApplication.java │ │ │ │ │ └── OIDCUser.java │ │ │ │ ├── organizationDiscovery │ │ │ │ └── OrganizationDiscoveryTestCase.java │ │ │ │ ├── postAuthnHandler │ │ │ │ └── ChallengeQuestionPostAuthnHandlerTestCase.java │ │ │ │ ├── provisioning │ │ │ │ ├── DBSeperationTestCase.java │ │ │ │ ├── JustInTimeProvisioningTestCase.java │ │ │ │ └── ProvisioningTestCase.java │ │ │ │ ├── recovery │ │ │ │ ├── PasswordRecoveryTestCase.java │ │ │ │ ├── UsernameRecoveryTestCase.java │ │ │ │ └── model │ │ │ │ │ └── v2 │ │ │ │ │ ├── ConfirmModel.java │ │ │ │ │ ├── InitModel.java │ │ │ │ │ ├── RecoverModel.java │ │ │ │ │ ├── ResetModel.java │ │ │ │ │ └── UserClaim.java │ │ │ │ ├── requestPathAuthenticator │ │ │ │ ├── RequestPathBasicAuthenticationSSOTest.java │ │ │ │ └── SAMLWithRequestPathAuthenticationTest.java │ │ │ │ ├── rest │ │ │ │ └── api │ │ │ │ │ ├── common │ │ │ │ │ ├── B2BRESTTestBase.java │ │ │ │ │ └── RESTTestBase.java │ │ │ │ │ ├── server │ │ │ │ │ ├── action │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── ActionTestBase.java │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ │ ├── ANDRule.java │ │ │ │ │ │ │ │ ├── ActionModel.java │ │ │ │ │ │ │ │ ├── ActionUpdateModel.java │ │ │ │ │ │ │ │ ├── AuthenticationType.java │ │ │ │ │ │ │ │ ├── Endpoint.java │ │ │ │ │ │ │ │ ├── EndpointUpdateModel.java │ │ │ │ │ │ │ │ ├── Expression.java │ │ │ │ │ │ │ │ └── ORRule.java │ │ │ │ │ │ │ ├── preissueaccesstoken │ │ │ │ │ │ │ ├── PreIssueAccessTokenActionFailureTest.java │ │ │ │ │ │ │ ├── PreIssueAccessTokenActionSuccessTest.java │ │ │ │ │ │ │ └── PreIssueAccessTokenTestBase.java │ │ │ │ │ │ │ ├── preupdatepassword │ │ │ │ │ │ │ ├── PreUpdatePasswordActionFailureTest.java │ │ │ │ │ │ │ ├── PreUpdatePasswordActionSuccessTest.java │ │ │ │ │ │ │ ├── PreUpdatePasswordTestBase.java │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ │ ├── PasswordSharing.java │ │ │ │ │ │ │ │ ├── PasswordSharingUpdateModel.java │ │ │ │ │ │ │ │ ├── PreUpdatePasswordActionModel.java │ │ │ │ │ │ │ │ └── PreUpdatePasswordActionUpdateModel.java │ │ │ │ │ │ │ └── preupdateprofile │ │ │ │ │ │ │ ├── PreUpdateProfileActionFailureTest.java │ │ │ │ │ │ │ ├── PreUpdateProfileActionSuccessTest.java │ │ │ │ │ │ │ ├── PreUpdateProfileTestBase.java │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── PreUpdateProfileActionModel.java │ │ │ │ │ │ │ └── PreUpdateProfileActionUpdateModel.java │ │ │ │ │ ├── admin │ │ │ │ │ │ └── advisory │ │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── AdminAdvisoryManagementSuccessTest.java │ │ │ │ │ │ │ └── AdminAdvisoryManagementTestBase.java │ │ │ │ │ ├── api │ │ │ │ │ │ └── resource │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── APIResourceCreationModel.java │ │ │ │ │ │ │ ├── APIResourceListItem.java │ │ │ │ │ │ │ ├── APIResourceListResponse.java │ │ │ │ │ │ │ ├── APIResourcePatchModel.java │ │ │ │ │ │ │ ├── APIResourceResponse.java │ │ │ │ │ │ │ ├── AuthorizationDetailsType.java │ │ │ │ │ │ │ ├── AuthorizationDetailsTypesCreationModel.java │ │ │ │ │ │ │ ├── PaginationLink.java │ │ │ │ │ │ │ ├── Property.java │ │ │ │ │ │ │ ├── ScopeCreationModel.java │ │ │ │ │ │ │ ├── ScopeGetModel.java │ │ │ │ │ │ │ └── SubscribedApplicationGetModel.java │ │ │ │ │ ├── application │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── ApplicationImportExportTest.java │ │ │ │ │ │ │ ├── ApplicationManagementBaseTest.java │ │ │ │ │ │ │ ├── ApplicationManagementFailureTest.java │ │ │ │ │ │ │ ├── ApplicationManagementOAuthFailureTest.java │ │ │ │ │ │ │ ├── ApplicationManagementOAuthSuccessTest.java │ │ │ │ │ │ │ ├── ApplicationManagementPassiveStsSuccessTest.java │ │ │ │ │ │ │ ├── ApplicationManagementSAMLSuccessTest.java │ │ │ │ │ │ │ ├── ApplicationManagementSuccessTest.java │ │ │ │ │ │ │ ├── ApplicationManagementWSTrustTest.java │ │ │ │ │ │ │ ├── ApplicationMetadataPositiveTest.java │ │ │ │ │ │ │ ├── ApplicationPatchTest.java │ │ │ │ │ │ │ ├── ApplicationTemplateManagementFailureTest.java │ │ │ │ │ │ │ ├── ApplicationTemplateManagementSuccessTest.java │ │ │ │ │ │ │ ├── Utils.java │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── AccessTokenConfiguration.java │ │ │ │ │ │ │ ├── AdditionalSpProperties.java │ │ │ │ │ │ │ ├── AdvancedApplicationConfiguration.java │ │ │ │ │ │ │ ├── AdvancedApplicationConfigurationAttestationMetaData.java │ │ │ │ │ │ │ ├── ApplicationListItem.java │ │ │ │ │ │ │ ├── ApplicationListResponse.java │ │ │ │ │ │ │ ├── ApplicationModel.java │ │ │ │ │ │ │ ├── ApplicationPatchModel.java │ │ │ │ │ │ │ ├── ApplicationResponseModel.java │ │ │ │ │ │ │ ├── ApplicationSharePOSTRequest.java │ │ │ │ │ │ │ ├── AssertionEncryptionConfiguration.java │ │ │ │ │ │ │ ├── AssociatedRolesConfig.java │ │ │ │ │ │ │ ├── AuthProtocolMetadata.java │ │ │ │ │ │ │ ├── AuthenticationSequence.java │ │ │ │ │ │ │ ├── AuthenticationStep.java │ │ │ │ │ │ │ ├── Authenticator.java │ │ │ │ │ │ │ ├── AuthorizedAPICreationModel.java │ │ │ │ │ │ │ ├── AuthorizedAPIPatchModel.java │ │ │ │ │ │ │ ├── AuthorizedAPIResponse.java │ │ │ │ │ │ │ ├── AuthorizedDomainAPIResponse.java │ │ │ │ │ │ │ ├── AuthorizedScope.java │ │ │ │ │ │ │ ├── Certificate.java │ │ │ │ │ │ │ ├── Claim.java │ │ │ │ │ │ │ ├── ClaimConfiguration.java │ │ │ │ │ │ │ ├── ClaimMappings.java │ │ │ │ │ │ │ ├── ClientAuthenticationConfiguration.java │ │ │ │ │ │ │ ├── ClientAuthenticationMethod.java │ │ │ │ │ │ │ ├── ClientAuthenticationMethodMetadata.java │ │ │ │ │ │ │ ├── CustomInboundProtocolConfiguration.java │ │ │ │ │ │ │ ├── DiscoverableGroup.java │ │ │ │ │ │ │ ├── DomainAPICreationModel.java │ │ │ │ │ │ │ ├── FapiMetadata.java │ │ │ │ │ │ │ ├── GrantType.java │ │ │ │ │ │ │ ├── GrantTypeMetaData.java │ │ │ │ │ │ │ ├── GroupBasicInfo.java │ │ │ │ │ │ │ ├── HybridFlowConfiguration.java │ │ │ │ │ │ │ ├── IdTokenConfiguration.java │ │ │ │ │ │ │ ├── IdTokenEncryptionConfiguration.java │ │ │ │ │ │ │ ├── IdpInitiatedSingleLogout.java │ │ │ │ │ │ │ ├── InboundProtocolListItem.java │ │ │ │ │ │ │ ├── InboundProtocols.java │ │ │ │ │ │ │ ├── InboundProtocolsListResponse.java │ │ │ │ │ │ │ ├── InboundSCIMProvisioningConfiguration.java │ │ │ │ │ │ │ ├── Link.java │ │ │ │ │ │ │ ├── MetadataProperty.java │ │ │ │ │ │ │ ├── OAuth2PKCEConfiguration.java │ │ │ │ │ │ │ ├── OIDCLogoutConfiguration.java │ │ │ │ │ │ │ ├── OIDCMetaData.java │ │ │ │ │ │ │ ├── OpenIDConnectConfiguration.java │ │ │ │ │ │ │ ├── OutboundProvisioningConfiguration.java │ │ │ │ │ │ │ ├── PassiveStsConfiguration.java │ │ │ │ │ │ │ ├── Property.java │ │ │ │ │ │ │ ├── ProvisioningConfiguration.java │ │ │ │ │ │ │ ├── PushAuthorizationRequestConfiguration.java │ │ │ │ │ │ │ ├── RefreshTokenConfiguration.java │ │ │ │ │ │ │ ├── RequestObjectConfiguration.java │ │ │ │ │ │ │ ├── RequestObjectEncryptionConfiguration.java │ │ │ │ │ │ │ ├── RequestedClaimConfiguration.java │ │ │ │ │ │ │ ├── Role.java │ │ │ │ │ │ │ ├── RoleConfig.java │ │ │ │ │ │ │ ├── RoleMapping.java │ │ │ │ │ │ │ ├── SAML2Configuration.java │ │ │ │ │ │ │ ├── SAML2ServiceProvider.java │ │ │ │ │ │ │ ├── SAMLAssertionConfiguration.java │ │ │ │ │ │ │ ├── SAMLAttributeProfile.java │ │ │ │ │ │ │ ├── SAMLMetaData.java │ │ │ │ │ │ │ ├── SAMLRequestValidation.java │ │ │ │ │ │ │ ├── SAMLResponseSigning.java │ │ │ │ │ │ │ ├── SingleLogoutProfile.java │ │ │ │ │ │ │ ├── SingleSignOnProfile.java │ │ │ │ │ │ │ ├── SubjectConfig.java │ │ │ │ │ │ │ ├── SubjectConfiguration.java │ │ │ │ │ │ │ ├── SubjectTokenConfiguration.java │ │ │ │ │ │ │ ├── TrustedAppConfiguration.java │ │ │ │ │ │ │ ├── WSTrustConfiguration.java │ │ │ │ │ │ │ └── WSTrustMetaData.java │ │ │ │ │ ├── authenticator │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── AuthenticatorFailureTest.java │ │ │ │ │ │ │ ├── AuthenticatorSuccessTest.java │ │ │ │ │ │ │ ├── AuthenticatorTestBase.java │ │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── AuthenticationType.java │ │ │ │ │ │ │ ├── Authenticator.java │ │ │ │ │ │ │ ├── Endpoint.java │ │ │ │ │ │ │ ├── UserDefinedLocalAuthenticatorCreation.java │ │ │ │ │ │ │ └── UserDefinedLocalAuthenticatorUpdate.java │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── UserDefinedLocalAuthenticatorPayload.java │ │ │ │ │ ├── branding │ │ │ │ │ │ └── preference │ │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── AppBrandingPreferenceManagementFailureTest.java │ │ │ │ │ │ │ ├── AppBrandingPreferenceManagementSuccessTest.java │ │ │ │ │ │ │ ├── AppBrandingPreferenceManagementTestBase.java │ │ │ │ │ │ │ ├── BrandingPreferenceManagementFailureTest.java │ │ │ │ │ │ │ ├── BrandingPreferenceManagementSuccessTest.java │ │ │ │ │ │ │ ├── BrandingPreferenceManagementTestBase.java │ │ │ │ │ │ │ └── CustomLayoutTest.java │ │ │ │ │ ├── certificate │ │ │ │ │ │ └── validation │ │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── cacertificates │ │ │ │ │ │ │ ├── CACertificatesFailureTest.java │ │ │ │ │ │ │ ├── CACertificatesSuccessTest.java │ │ │ │ │ │ │ ├── CACertificatesTestBase.java │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ │ └── CACertificateAddRequest.java │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ └── CertificateValidationTestBase.java │ │ │ │ │ │ │ └── revocationvalidators │ │ │ │ │ │ │ ├── RevocationValidatorsFailureTest.java │ │ │ │ │ │ │ ├── RevocationValidatorsSuccessTest.java │ │ │ │ │ │ │ └── RevocationValidatorsTestBase.java │ │ │ │ │ ├── challenge │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── ServerChallengeTestCase.java │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── ServerChallengeModel.java │ │ │ │ │ │ │ └── UserChallengeAnswer.java │ │ │ │ │ ├── claim │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── ClaimManagementNegativeTest.java │ │ │ │ │ │ │ ├── ClaimManagementSuccessTest.java │ │ │ │ │ │ │ ├── ClaimManagementTestBase.java │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── AttributeMappingDTO.java │ │ │ │ │ │ │ ├── AttributeProfileDTO.java │ │ │ │ │ │ │ ├── ClaimDialectReqDTO.java │ │ │ │ │ │ │ ├── ExternalClaimReq.java │ │ │ │ │ │ │ ├── LabelValueDTO.java │ │ │ │ │ │ │ ├── LocalClaimReq.java │ │ │ │ │ │ │ ├── LocalClaimRes.java │ │ │ │ │ │ │ └── PropertyDTO.java │ │ │ │ │ ├── common │ │ │ │ │ │ ├── B2BRESTAPIServerTestBase.java │ │ │ │ │ │ └── RESTAPIServerTestBase.java │ │ │ │ │ ├── configs │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── ConfigFailureTest.java │ │ │ │ │ │ │ ├── ConfigSuccessTest.java │ │ │ │ │ │ │ └── ConfigTestBase.java │ │ │ │ │ ├── cors │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── CORSFailureTest.java │ │ │ │ │ │ │ ├── CORSSuccessTest.java │ │ │ │ │ │ │ └── CORSTestBase.java │ │ │ │ │ ├── email │ │ │ │ │ │ └── template │ │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── EmailTemplatesNegativeTest.java │ │ │ │ │ │ │ ├── EmailTemplatesPositiveTest.java │ │ │ │ │ │ │ ├── EmailTemplatesTestBase.java │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ │ ├── EmailTemplate.java │ │ │ │ │ │ │ │ ├── EmailTemplateType.java │ │ │ │ │ │ │ │ ├── EmailTemplateTypeWithID.java │ │ │ │ │ │ │ │ ├── EmailTemplateTypeWithoutTemplates.java │ │ │ │ │ │ │ │ ├── EmailTemplateWithID.java │ │ │ │ │ │ │ │ └── SimpleEmailTemplate.java │ │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ ├── EmailTemplatesNegativeTest.java │ │ │ │ │ │ │ ├── EmailTemplatesPositiveTest.java │ │ │ │ │ │ │ ├── EmailTemplatesTestBase.java │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── EmailTemplate.java │ │ │ │ │ │ │ ├── EmailTemplateWithID.java │ │ │ │ │ │ │ └── SimpleEmailTemplate.java │ │ │ │ │ ├── extension │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── ExtensionManagementBaseTest.java │ │ │ │ │ │ │ └── ExtensionManagementSuccessTest.java │ │ │ │ │ ├── flow │ │ │ │ │ │ ├── execution │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ ├── FlowExecutionNegativeTest.java │ │ │ │ │ │ │ │ ├── FlowExecutionPositiveTest.java │ │ │ │ │ │ │ │ ├── FlowExecutionTestBase.java │ │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ │ ├── Component.java │ │ │ │ │ │ │ │ ├── Data.java │ │ │ │ │ │ │ │ ├── FlowConfig.java │ │ │ │ │ │ │ │ ├── FlowExecutionRequest.java │ │ │ │ │ │ │ │ └── FlowExecutionResponse.java │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── FlowManagementNegativeTest.java │ │ │ │ │ │ │ ├── FlowManagementPositiveTest.java │ │ │ │ │ │ │ ├── FlowManagementTestBase.java │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── Action.java │ │ │ │ │ │ │ ├── Component.java │ │ │ │ │ │ │ ├── Data.java │ │ │ │ │ │ │ ├── Error.java │ │ │ │ │ │ │ ├── Executor.java │ │ │ │ │ │ │ ├── FlowRequest.java │ │ │ │ │ │ │ ├── FlowResponse.java │ │ │ │ │ │ │ ├── Position.java │ │ │ │ │ │ │ ├── Size.java │ │ │ │ │ │ │ └── Step.java │ │ │ │ │ ├── identity │ │ │ │ │ │ └── governance │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── IdentityGovernanceFailureTest.java │ │ │ │ │ │ │ ├── IdentityGovernanceSuccessTest.java │ │ │ │ │ │ │ ├── IdentityGovernanceTestBase.java │ │ │ │ │ │ │ └── dto │ │ │ │ │ │ │ ├── CategoriesRes.java │ │ │ │ │ │ │ ├── CategoryConnectorsRes.java │ │ │ │ │ │ │ ├── CategoryRes.java │ │ │ │ │ │ │ ├── ConnectorRes.java │ │ │ │ │ │ │ ├── ConnectorsPatchReq.java │ │ │ │ │ │ │ ├── PreferenceResp.java │ │ │ │ │ │ │ ├── PropertyReq.java │ │ │ │ │ │ │ ├── PropertyRes.java │ │ │ │ │ │ │ └── PropertyRevertReq.java │ │ │ │ │ ├── idp │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── IdPFailureTest.java │ │ │ │ │ │ │ ├── IdPSuccessTest.java │ │ │ │ │ │ │ ├── IdPTestBase.java │ │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── AuthenticationType.java │ │ │ │ │ │ │ ├── Claims.java │ │ │ │ │ │ │ ├── Endpoint.java │ │ │ │ │ │ │ ├── FederatedAuthenticatorRequest.java │ │ │ │ │ │ │ ├── IdentityProviderPOSTRequest.java │ │ │ │ │ │ │ ├── PatchRequest.java │ │ │ │ │ │ │ ├── Property.java │ │ │ │ │ │ │ ├── ProvisioningRequest.java │ │ │ │ │ │ │ └── Roles.java │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── UserDefinedAuthenticatorPayload.java │ │ │ │ │ ├── input │ │ │ │ │ │ └── validation │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── MappingModel.java │ │ │ │ │ │ │ ├── RevertFields.java │ │ │ │ │ │ │ ├── RuleModel.java │ │ │ │ │ │ │ └── ValidationConfigModelForField.java │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── KeystoreManagementBaseTest.java │ │ │ │ │ │ │ ├── KeystoreManagementFailureTest.java │ │ │ │ │ │ │ ├── KeystoreManagementSuccessTest.java │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ └── CertificateRequest.java │ │ │ │ │ ├── notification │ │ │ │ │ │ ├── sender │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ ├── NotificationSenderFailureTest.java │ │ │ │ │ │ │ │ ├── NotificationSenderSuccessTest.java │ │ │ │ │ │ │ │ ├── NotificationSenderTestBase.java │ │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ │ ├── EmailProviderList.java │ │ │ │ │ │ │ │ ├── EmailSender.java │ │ │ │ │ │ │ │ ├── EmailSenderAdd.java │ │ │ │ │ │ │ │ ├── EmailSenderUpdateRequest.java │ │ │ │ │ │ │ │ ├── Error.java │ │ │ │ │ │ │ │ ├── Properties.java │ │ │ │ │ │ │ │ ├── SMSProviderList.java │ │ │ │ │ │ │ │ ├── SMSSender.java │ │ │ │ │ │ │ │ ├── SMSSenderAdd.java │ │ │ │ │ │ │ │ └── SMSSenderUpdateRequest.java │ │ │ │ │ │ └── template │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── Constants.java │ │ │ │ │ │ │ ├── NotificationEmailTemplatesNegativeTest.java │ │ │ │ │ │ │ ├── NotificationEmailTemplatesPositiveTest.java │ │ │ │ │ │ │ ├── NotificationSMSTemplatesNegativeTest.java │ │ │ │ │ │ │ ├── NotificationSMSTemplatesPositiveTest.java │ │ │ │ │ │ │ ├── NotificationSystemTemplatesNegativeTest.java │ │ │ │ │ │ │ ├── NotificationSystemTemplatesPositiveTest.java │ │ │ │ │ │ │ ├── NotificationTemplateFunctionsNegativeTest.java │ │ │ │ │ │ │ ├── NotificationTemplateFunctionsPositiveTest.java │ │ │ │ │ │ │ ├── NotificationTemplatesTestBase.java │ │ │ │ │ │ │ ├── NotificationTypesPositiveTest.java │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── EmailTemplate.java │ │ │ │ │ │ │ └── EmailTemplateWithID.java │ │ │ │ │ ├── oidc │ │ │ │ │ │ └── scope │ │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── OIDCScopeManagementBaseTest.java │ │ │ │ │ │ │ ├── OIDCScopeManagementFailureTest.java │ │ │ │ │ │ │ ├── OIDCScopeManagementSuccessTest.java │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ └── ScopeUpdateRequest.java │ │ │ │ │ ├── organization │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── OrganizationManagementBaseTest.java │ │ │ │ │ │ │ ├── OrganizationManagementFailureTest.java │ │ │ │ │ │ │ └── OrganizationManagementSuccessTest.java │ │ │ │ │ ├── permission │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ └── PermissionManagementTest.java │ │ │ │ │ ├── roles │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── Audience.java │ │ │ │ │ │ │ ├── Permission.java │ │ │ │ │ │ │ └── RoleV2.java │ │ │ │ │ ├── rules │ │ │ │ │ │ └── metadata │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── RulesMetadataFailureTest.java │ │ │ │ │ │ │ ├── RulesMetadataSuccessTest.java │ │ │ │ │ │ │ └── RulesMetadataTestBase.java │ │ │ │ │ ├── script │ │ │ │ │ │ └── library │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── ScriptLibraryFailureTest.java │ │ │ │ │ │ │ ├── ScriptLibrarySuccessTest.java │ │ │ │ │ │ │ └── ScriptLibraryTestBase.java │ │ │ │ │ ├── secret │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── SecretManagementFailureTest.java │ │ │ │ │ │ │ ├── SecretManagementSuccessTest.java │ │ │ │ │ │ │ └── SecretManagementTestBase.java │ │ │ │ │ ├── tenant │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── TenantFailureTest.java │ │ │ │ │ │ │ ├── TenantManagementBaseTest.java │ │ │ │ │ │ │ ├── TenantSuccessTest.java │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── LifeCycleStatus.java │ │ │ │ │ │ │ ├── Owner.java │ │ │ │ │ │ │ ├── OwnerResponse.java │ │ │ │ │ │ │ ├── TenantModel.java │ │ │ │ │ │ │ └── TenantResponseModel.java │ │ │ │ │ ├── user │ │ │ │ │ │ ├── sharing │ │ │ │ │ │ │ └── management │ │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ ├── UserSharingBaseTest.java │ │ │ │ │ │ │ │ ├── UserSharingFailureTest.java │ │ │ │ │ │ │ │ ├── UserSharingSuccessTest.java │ │ │ │ │ │ │ │ ├── constant │ │ │ │ │ │ │ │ └── UserSharingConstants.java │ │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ │ ├── Error.java │ │ │ │ │ │ │ │ ├── ProcessSuccessResponse.java │ │ │ │ │ │ │ │ ├── RoleWithAudience.java │ │ │ │ │ │ │ │ ├── RoleWithAudienceAudience.java │ │ │ │ │ │ │ │ ├── UserShareRequestBody.java │ │ │ │ │ │ │ │ ├── UserShareRequestBodyOrganizations.java │ │ │ │ │ │ │ │ ├── UserShareRequestBodyUserCriteria.java │ │ │ │ │ │ │ │ ├── UserShareWithAllRequestBody.java │ │ │ │ │ │ │ │ ├── UserSharedOrganizationsResponse.java │ │ │ │ │ │ │ │ ├── UserSharedOrganizationsResponseLinks.java │ │ │ │ │ │ │ │ ├── UserSharedOrganizationsResponseSharedOrganizations.java │ │ │ │ │ │ │ │ ├── UserSharedRolesResponse.java │ │ │ │ │ │ │ │ ├── UserUnshareRequestBody.java │ │ │ │ │ │ │ │ ├── UserUnshareRequestBodyUserCriteria.java │ │ │ │ │ │ │ │ └── UserUnshareWithAllRequestBody.java │ │ │ │ │ │ └── store │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── UserStoreFailureTest.java │ │ │ │ │ │ │ ├── UserStoreSuccessTest.java │ │ │ │ │ │ │ ├── UserStoreTestBase.java │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── AddUserStorePropertiesRes.java │ │ │ │ │ │ │ ├── AvailableUserStoreClassesRes.java │ │ │ │ │ │ │ ├── UserStoreConfigurationsRes.java │ │ │ │ │ │ │ ├── UserStoreListResponse.java │ │ │ │ │ │ │ └── UserStoreReq.java │ │ │ │ │ ├── webhook │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── WebhookManagementFailureTest.java │ │ │ │ │ │ │ ├── WebhookManagementSuccessTest.java │ │ │ │ │ │ │ ├── WebhookManagementTestBase.java │ │ │ │ │ │ │ ├── exception │ │ │ │ │ │ │ └── WebhookManagementException.java │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── WebhookList.java │ │ │ │ │ │ │ ├── WebhookRequest.java │ │ │ │ │ │ │ ├── WebhookRequestEventProfile.java │ │ │ │ │ │ │ ├── WebhookResponse.java │ │ │ │ │ │ │ ├── WebhookSubscription.java │ │ │ │ │ │ │ └── WebhookSummary.java │ │ │ │ │ └── workflow │ │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── WorkflowBaseTest.java │ │ │ │ │ │ ├── WorkflowFailureTest.java │ │ │ │ │ │ ├── WorkflowSuccessTest.java │ │ │ │ │ │ └── model │ │ │ │ │ │ ├── Operation.java │ │ │ │ │ │ ├── OptionDetails.java │ │ │ │ │ │ ├── WorkflowAssociationResponse.java │ │ │ │ │ │ ├── WorkflowResponse.java │ │ │ │ │ │ ├── WorkflowTemplateBase.java │ │ │ │ │ │ └── WorkflowTemplateParametersBase.java │ │ │ │ │ └── user │ │ │ │ │ ├── application │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── UserDiscoverableApplicationFailureTest.java │ │ │ │ │ │ ├── UserDiscoverableApplicationServiceTestBase.java │ │ │ │ │ │ └── UserDiscoverableApplicationSuccessTest.java │ │ │ │ │ ├── approval │ │ │ │ │ ├── common │ │ │ │ │ │ └── UserApprovalTestBase.java │ │ │ │ │ └── v1 │ │ │ │ │ │ └── UserMeApprovalTest.java │ │ │ │ │ ├── association │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── UserAdminAssociationNegativeBaseTest.java │ │ │ │ │ │ ├── UserAdminAssociationSuccessBaseTest.java │ │ │ │ │ │ ├── UserAdminBulkFederatedAssociationBaseTest.java │ │ │ │ │ │ ├── UserAssociationTestBase.java │ │ │ │ │ │ ├── UserMeNegativeTestBase.java │ │ │ │ │ │ └── UserMeSuccessTestBase.java │ │ │ │ │ ├── authorized │ │ │ │ │ └── apps │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── MeAuthorizedAppsNegativeTest.java │ │ │ │ │ │ ├── MeAuthorizedAppsSuccessTest.java │ │ │ │ │ │ └── UserAuthorizedAppsBaseTest.java │ │ │ │ │ │ └── v2 │ │ │ │ │ │ ├── ApplicationAuthorizedAppsNegativeTest.java │ │ │ │ │ │ ├── ApplicationAuthorizedAppsSuccessTest.java │ │ │ │ │ │ ├── MeAuthorizedAppsNegativeTest.java │ │ │ │ │ │ ├── MeAuthorizedAppsScopeTest.java │ │ │ │ │ │ ├── MeAuthorizedAppsSuccessTest.java │ │ │ │ │ │ └── UserAuthorizedAppsBaseTest.java │ │ │ │ │ ├── challenge │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── UserChallengeTestBase.java │ │ │ │ │ │ ├── UserMeNegativeTest.java │ │ │ │ │ │ ├── UserMeSuccessTest.java │ │ │ │ │ │ ├── UserNegativeTest.java │ │ │ │ │ │ └── UserSuccessTest.java │ │ │ │ │ ├── common │ │ │ │ │ ├── RESTAPIUserTestBase.java │ │ │ │ │ └── model │ │ │ │ │ │ ├── AuthenticationRequest.java │ │ │ │ │ │ ├── Email.java │ │ │ │ │ │ ├── GroupRequestObject.java │ │ │ │ │ │ ├── InvitationRequest.java │ │ │ │ │ │ ├── ListObject.java │ │ │ │ │ │ ├── Manager.java │ │ │ │ │ │ ├── Name.java │ │ │ │ │ │ ├── PatchOperationRequestObject.java │ │ │ │ │ │ ├── PhoneNumbers.java │ │ │ │ │ │ ├── RoleItemAddGroupobj.java │ │ │ │ │ │ ├── RoleRequestObject.java │ │ │ │ │ │ ├── RoleSearchRequestObject.java │ │ │ │ │ │ ├── ScimSchemaExtensionEnterprise.java │ │ │ │ │ │ ├── ScimSchemaExtensionSystem.java │ │ │ │ │ │ ├── UserItemAddGroupobj.java │ │ │ │ │ │ └── UserObject.java │ │ │ │ │ ├── liteUserRegister │ │ │ │ │ ├── LiteUserRegisterTestBase.java │ │ │ │ │ └── LiteUserRegisterTestCase.java │ │ │ │ │ ├── selfRegister │ │ │ │ │ ├── SelfRegisterTenantedTestCase.java │ │ │ │ │ ├── SelfRegisterTestBase.java │ │ │ │ │ └── SelfRegisterTestCase.java │ │ │ │ │ └── session │ │ │ │ │ └── v1 │ │ │ │ │ ├── UserSessionAdminSuccessTest.java │ │ │ │ │ ├── UserSessionMeSuccessTest.java │ │ │ │ │ └── UserSessionTest.java │ │ │ │ ├── restclients │ │ │ │ ├── APIResourceManagementClient.java │ │ │ │ ├── ActionsRestClient.java │ │ │ │ ├── AuthenticatorRestClient.java │ │ │ │ ├── ChallengeQuestionsRestClient.java │ │ │ │ ├── ClaimManagementRestClient.java │ │ │ │ ├── CustomAuthenticatorManagementClient.java │ │ │ │ ├── EmailTemplatesRestClient.java │ │ │ │ ├── FlowExecutionClient.java │ │ │ │ ├── FlowManagementClient.java │ │ │ │ ├── IdentityGovernanceRestClient.java │ │ │ │ ├── IdpMgtRestClient.java │ │ │ │ ├── KeystoreMgtRestClient.java │ │ │ │ ├── NotificationSenderRestClient.java │ │ │ │ ├── NotificationTemplatesRestClient.java │ │ │ │ ├── OAuth2RestClient.java │ │ │ │ ├── OIDCScopeMgtRestClient.java │ │ │ │ ├── OrgDiscoveryConfigRestClient.java │ │ │ │ ├── OrgMgtRestClient.java │ │ │ │ ├── PasswordRecoveryV2RestClient.java │ │ │ │ ├── RestBaseClient.java │ │ │ │ ├── SCIM2RestClient.java │ │ │ │ ├── TenantMgtRestClient.java │ │ │ │ ├── UserSharingRestClient.java │ │ │ │ ├── UserStoreMgtRestClient.java │ │ │ │ ├── UsersRestClient.java │ │ │ │ ├── ValidationRulesRestClient.java │ │ │ │ └── WebhooksRestClient.java │ │ │ │ ├── saml │ │ │ │ ├── AbstractSAMLSSOTestCase.java │ │ │ │ ├── ChangeACSUrlTestCase.java │ │ │ │ ├── IDPMetadataTestCase.java │ │ │ │ ├── RegistryMountTestCase.java │ │ │ │ ├── SAMLARTRESOLVETestCase.java │ │ │ │ ├── SAMLECPSSOTestCase.java │ │ │ │ ├── SAMLErrorResponseTestCase.java │ │ │ │ ├── SAMLFederationDynamicQueryParametersTestCase.java │ │ │ │ ├── SAMLFederationWithFileBasedSPAndIDPTestCase.java │ │ │ │ ├── SAMLIdPInitiatedSLOTestCase.java │ │ │ │ ├── SAMLIdPInitiatedSSOTestCase.java │ │ │ │ ├── SAMLIdentityFederationTestCase.java │ │ │ │ ├── SAMLInvalidIssuerTestCase.java │ │ │ │ ├── SAMLLocalAndOutboundAuthenticatorsTestCase.java │ │ │ │ ├── SAMLMetadataTestCase.java │ │ │ │ ├── SAMLQueryProfileTestBase.java │ │ │ │ ├── SAMLQueryProfileTestCase.java │ │ │ │ ├── SAMLSSOConsentTestCase.java │ │ │ │ ├── SAMLSSOForAdminLoginTestCase.java │ │ │ │ ├── SAMLSSOTestCase.java │ │ │ │ ├── SPMetaDataTenantTestCase.java │ │ │ │ ├── SPMetadataTestCase.java │ │ │ │ └── SSOSessionTimeoutTestCase.java │ │ │ │ ├── scim │ │ │ │ ├── IDENTITY4776SCIMServiceWithOAuthTestCase.java │ │ │ │ ├── MasterSCIMInitiator.java │ │ │ │ ├── SCIMComplexMultiAttributeUserTestCase.java │ │ │ │ ├── SCIMServiceProviderGroupTestCase.java │ │ │ │ ├── SCIMServiceProviderUserTestCase.java │ │ │ │ └── utils │ │ │ │ │ ├── SCIMResponseHandler.java │ │ │ │ │ └── SCIMUtils.java │ │ │ │ ├── scim2 │ │ │ │ ├── SCIM2BaseTestCase.java │ │ │ │ ├── SCIM2GroupTestCase.java │ │ │ │ ├── SCIM2MeTestCase.java │ │ │ │ ├── SCIM2MultiAttributeUserFilterTestCase.java │ │ │ │ ├── SCIM2PaginationTestCase.java │ │ │ │ ├── SCIM2RoleTestCase.java │ │ │ │ ├── SCIM2UserTestCase.java │ │ │ │ └── rest │ │ │ │ │ └── api │ │ │ │ │ ├── SCIM2BaseTest.java │ │ │ │ │ ├── SCIM2BulkResourceTestCase.java │ │ │ │ │ ├── SCIM2GroupTest.java │ │ │ │ │ ├── SCIM2SchemasTest.java │ │ │ │ │ ├── SCIMUserUpdateReadOnlyTest.java │ │ │ │ │ ├── SCIMUserUpdateTest.java │ │ │ │ │ ├── SCIMUtils.java │ │ │ │ │ └── customSchema │ │ │ │ │ ├── SCIM2CustomSchemaMeTestCase.java │ │ │ │ │ └── SCIM2CustomSchemaUserTestCase.java │ │ │ │ ├── serviceextensions │ │ │ │ ├── common │ │ │ │ │ └── ActionsBaseTestCase.java │ │ │ │ ├── customauthentication │ │ │ │ │ └── CustomInternalUserAuthenticatorTestCase.java │ │ │ │ ├── dataprovider │ │ │ │ │ └── model │ │ │ │ │ │ ├── ActionResponse.java │ │ │ │ │ │ ├── ExpectedPasswordUpdateResponse.java │ │ │ │ │ │ ├── ExpectedProfileUpdateResponse.java │ │ │ │ │ │ └── ExpectedTokenResponse.java │ │ │ │ ├── mockservices │ │ │ │ │ ├── MockCustomAuthenticatorService.java │ │ │ │ │ └── ServiceExtensionMockServer.java │ │ │ │ ├── model │ │ │ │ │ ├── AccessToken.java │ │ │ │ │ ├── ActionType.java │ │ │ │ │ ├── AllowedOperation.java │ │ │ │ │ ├── Application.java │ │ │ │ │ ├── Credential.java │ │ │ │ │ ├── Event.java │ │ │ │ │ ├── Operation.java │ │ │ │ │ ├── Organization.java │ │ │ │ │ ├── PasswordUpdatingUser.java │ │ │ │ │ ├── PreIssueAccessTokenActionRequest.java │ │ │ │ │ ├── PreIssueAccessTokenEvent.java │ │ │ │ │ ├── PreUpdatePasswordActionRequest.java │ │ │ │ │ ├── PreUpdatePasswordEvent.java │ │ │ │ │ ├── PreUpdateProfileActionRequest.java │ │ │ │ │ ├── PreUpdateProfileEvent.java │ │ │ │ │ ├── PreUpdateProfileRequest.java │ │ │ │ │ ├── ProfileUpdatingUser.java │ │ │ │ │ ├── Request.java │ │ │ │ │ ├── Tenant.java │ │ │ │ │ ├── TokenRequest.java │ │ │ │ │ ├── UpdatingUserClaim.java │ │ │ │ │ ├── User.java │ │ │ │ │ ├── UserClaim.java │ │ │ │ │ └── UserStore.java │ │ │ │ ├── preissueaccesstoken │ │ │ │ │ ├── PreIssueAccessTokenActionFailureClientCredentialsGrantTestCase.java │ │ │ │ │ ├── PreIssueAccessTokenActionFailureCodeGrantTestCase.java │ │ │ │ │ ├── PreIssueAccessTokenActionFailurePasswordGrantTestCase.java │ │ │ │ │ ├── PreIssueAccessTokenActionFailureRefreshTokenGrantTestCase.java │ │ │ │ │ ├── PreIssueAccessTokenActionSuccessClientCredentialsGrantTestCase.java │ │ │ │ │ ├── PreIssueAccessTokenActionSuccessCodeGrantTestCase.java │ │ │ │ │ ├── PreIssueAccessTokenActionSuccessPasswordGrantTestCase.java │ │ │ │ │ ├── PreIssueAccessTokenActionSuccessRefreshTokenExpiryTestCase.java │ │ │ │ │ ├── PreIssueAccessTokenActionSuccessRefreshTokenGrantTestCase.java │ │ │ │ │ ├── PreIssueAccessTokenActionWithRulesAtAuthorizationCodeGrantTestCase.java │ │ │ │ │ └── PreIssueAccessTokenActionWithRulesAtPasswordGrantTestCase.java │ │ │ │ ├── preupdatepassword │ │ │ │ │ ├── PreUpdatePasswordActionBaseTestCase.java │ │ │ │ │ ├── PreUpdatePasswordActionFailureTestCase.java │ │ │ │ │ ├── PreUpdatePasswordActionSmsOtpFailureTestCase.java │ │ │ │ │ └── PreUpdatePasswordActionSuccessTestCase.java │ │ │ │ └── preupdateprofile │ │ │ │ │ ├── PreUpdateProfileActionBaseTestCase.java │ │ │ │ │ ├── PreUpdateProfileActionFailureTestCase.java │ │ │ │ │ └── PreUpdateProfileActionSuccessTestCase.java │ │ │ │ ├── sts │ │ │ │ ├── ActiveSTSTestCase.java │ │ │ │ ├── SAML2TokenRenweTestCase.java │ │ │ │ ├── ServerLogReader.java │ │ │ │ ├── TestPassiveSTS.java │ │ │ │ └── TestPassiveSTSFederation.java │ │ │ │ ├── template │ │ │ │ └── mgt │ │ │ │ │ └── TemplateManagementTestCase.java │ │ │ │ ├── um │ │ │ │ └── ws │ │ │ │ │ └── api │ │ │ │ │ └── RemoteAuthorizationManagerServiceTestCase.java │ │ │ │ ├── user │ │ │ │ ├── account │ │ │ │ │ └── connector │ │ │ │ │ │ └── UserAccountConnectorTestCase.java │ │ │ │ ├── export │ │ │ │ │ └── UserInfoExportTestCase.java │ │ │ │ ├── mgt │ │ │ │ │ ├── CARBON15051EmailLoginTestCase.java │ │ │ │ │ ├── CARBON15502ReadWriteLDAPUserStoreManagerTestCase.java │ │ │ │ │ ├── JDBCBasedUserMgtTestCase.java │ │ │ │ │ ├── JDBCUserStoreManagerTestCase.java │ │ │ │ │ ├── ReadOnlyLDAPUserStoreManagerTestCase.java │ │ │ │ │ ├── ReadOnlyLdapBasedUserMgtTestCase.java │ │ │ │ │ ├── ReadWriteLDAPUserStoreManagerTestCase.java │ │ │ │ │ ├── ReadWriteLdapBasedUserMgtTestCase.java │ │ │ │ │ ├── UserManagementServiceAbstractTest.java │ │ │ │ │ ├── UserMgtServiceAbstractTestCase.java │ │ │ │ │ ├── UserMgtTestCase.java │ │ │ │ │ ├── UserMgtUISecurityTestCase.java │ │ │ │ │ ├── remote │ │ │ │ │ │ └── RemoteUserStoreManagerServiceTestCase.java │ │ │ │ │ └── uuid │ │ │ │ │ │ ├── AbstractUUIDUMTestCase.java │ │ │ │ │ │ ├── JDBCUUIDUMTestCase.java │ │ │ │ │ │ ├── ReadWriteLDAPUUIDUMTestCase.java │ │ │ │ │ │ └── UUIDUserManagerInitializerTestCase.java │ │ │ │ ├── profile │ │ │ │ │ └── mgt │ │ │ │ │ │ ├── NotificationOnUserOperationTestCase.java │ │ │ │ │ │ ├── SharedUserProfileClaimMgtTestCase.java │ │ │ │ │ │ ├── UserProfileAdminTestCase.java │ │ │ │ │ │ └── UserProfileMgtTestCase.java │ │ │ │ └── store │ │ │ │ │ ├── ClaimMappingsOnSecondaryUserStoreTestCase.java │ │ │ │ │ ├── JDBCUserStoreAddingTestCase.java │ │ │ │ │ ├── LegacyJDBCUserStoreAddingTestCase.java │ │ │ │ │ ├── OrganizationSecondaryUserStoreTestCase.java │ │ │ │ │ └── config │ │ │ │ │ ├── BcryptHashProviderTestCase.java │ │ │ │ │ ├── MultipleUserStoreTestCase.java │ │ │ │ │ ├── UserStoreConfigAdminTestCase.java │ │ │ │ │ ├── UserStoreConfigTestForIDENTITY5573.java │ │ │ │ │ ├── UserStoreDeployerTestCase.java │ │ │ │ │ └── UserStorePasswordEncryption.java │ │ │ │ ├── util │ │ │ │ └── Utils.java │ │ │ │ ├── utils │ │ │ │ ├── BasicAuthHandler.java │ │ │ │ ├── BasicAuthInfo.java │ │ │ │ ├── CarbonTestServerManager.java │ │ │ │ ├── CarbonUtils.java │ │ │ │ ├── CommonConstants.java │ │ │ │ ├── DPoPProofGenerator.java │ │ │ │ ├── DataExtractUtil.java │ │ │ │ ├── ExternalLDAPServer.java │ │ │ │ ├── FileUtils.java │ │ │ │ ├── ISTestUtils.java │ │ │ │ ├── IdentityConstants.java │ │ │ │ ├── OAuth2Constant.java │ │ │ │ ├── OAuth2Util.java │ │ │ │ ├── PasswordAlgorithm.java │ │ │ │ ├── RichAuthorizationRequestsUtils.java │ │ │ │ ├── ServiceDeploymentUtil.java │ │ │ │ ├── UserUtil.java │ │ │ │ └── WorkflowConstants.java │ │ │ │ ├── webhooks │ │ │ │ ├── credentials │ │ │ │ │ └── CredentialsEventTestCase.java │ │ │ │ ├── mockservice │ │ │ │ │ └── WebhookMockService.java │ │ │ │ ├── usermanagement │ │ │ │ │ ├── AdminInitUserManagementEventTestCase.java │ │ │ │ │ └── eventpayloadbuilder │ │ │ │ │ │ ├── AdminInitCredentialEventTestExpectedEventPayloadBuilder.java │ │ │ │ │ │ └── AdminInitUserManagementEventTestExpectedEventPayloadBuilder.java │ │ │ │ └── util │ │ │ │ │ ├── EventPayloadStack.java │ │ │ │ │ ├── EventPayloadUtils.java │ │ │ │ │ ├── EventPayloadValidator.java │ │ │ │ │ └── WebhookEventTestManager.java │ │ │ │ └── workflow │ │ │ │ └── mgt │ │ │ │ └── WorkflowManagementTestCase.java │ │ │ └── resources │ │ │ ├── RESTAPIErrors.properties │ │ │ ├── actions │ │ │ ├── flowexecution │ │ │ │ ├── invited-user-registration-flow.json │ │ │ │ └── password-recovery-flow.json │ │ │ └── response │ │ │ │ ├── error-response.json │ │ │ │ ├── failure-response.json │ │ │ │ ├── incomplete-response.json │ │ │ │ ├── pre-issue-access-token-response-code-before-refresh-with-refresh-token-expiry.json │ │ │ │ ├── pre-issue-access-token-response-code-before-refresh.json │ │ │ │ ├── pre-issue-access-token-response.json │ │ │ │ ├── pre-update-password-response.json │ │ │ │ ├── pre-update-profile-response.json │ │ │ │ ├── refresh-token-expiry-response-code-grant.json │ │ │ │ └── refresh-token-expiry-response-refresh-grant.json │ │ │ ├── adaptive.bat │ │ │ ├── adaptive.sh │ │ │ ├── apiSwaggerFiles │ │ │ └── scim2.yaml │ │ │ ├── artifacts │ │ │ └── IS │ │ │ │ ├── analytics │ │ │ │ ├── StatisticTestResources │ │ │ │ │ └── data-bridge-config.xml │ │ │ │ ├── Wso2EventTestCase │ │ │ │ │ ├── org.wso2.is.analytics.stream.OauthTokenIssuance_1.0.0.json │ │ │ │ │ ├── org.wso2.is.analytics.stream.OverallAuthentication_1.0.0.json │ │ │ │ │ └── org.wso2.is.analytics.stream.OverallSession_1.0.0.json │ │ │ │ └── config │ │ │ │ │ ├── IsAnalytics-Publisher-wso2event-AuthenticationData._original.xml │ │ │ │ │ ├── IsAnalytics-Publisher-wso2event-AuthenticationData.xml │ │ │ │ │ ├── IsAnalytics-Publisher-wso2event-OauthTokenIssueRefresh.xml │ │ │ │ │ ├── IsAnalytics-Publisher-wso2event-SessionData.xml │ │ │ │ │ ├── analytics_enabled.toml │ │ │ │ │ └── identity_event_analytics_enabled.toml │ │ │ │ ├── application │ │ │ │ └── mgt │ │ │ │ │ ├── role_validation_disabled.toml │ │ │ │ │ └── role_validation_enabled.toml │ │ │ │ ├── certificate-validation-mgt │ │ │ │ └── certificate_validation_config.toml │ │ │ │ ├── challenge-questions │ │ │ │ └── challenge_questions_config.toml │ │ │ │ ├── dbscripts │ │ │ │ └── h2.sql │ │ │ │ ├── default-identity-event.properties │ │ │ │ ├── default-identity.xml │ │ │ │ ├── email │ │ │ │ ├── emailOTP-email-template.xml │ │ │ │ └── email_otp_config.toml │ │ │ │ ├── identity-original-530-cache-disabled.xml │ │ │ │ ├── identityMgt │ │ │ │ ├── axis2.xml │ │ │ │ ├── case_insensitive_user_false.toml │ │ │ │ ├── identity-identitymgtlistener-enabled.xml │ │ │ │ ├── identity-mgt-account-lock-enabled.properties │ │ │ │ ├── identity-mgt-default.properties │ │ │ │ ├── identity-mgt-enabled.properties │ │ │ │ ├── identity-ssoservice-entityid-changed.xml │ │ │ │ └── user_mgt_regex_changed.toml │ │ │ │ ├── identity_encryption_enabled.toml │ │ │ │ ├── identity_hash_enabled.toml │ │ │ │ ├── identity_new_resource.toml │ │ │ │ ├── identity_new_resource_nashorn.toml │ │ │ │ ├── identity_new_resource_openjdknashorn.toml │ │ │ │ ├── is-default-schema.zip │ │ │ │ ├── javarp.cer │ │ │ │ ├── jit │ │ │ │ └── jit_user_association_config.toml │ │ │ │ ├── notification-mgt │ │ │ │ ├── config │ │ │ │ │ ├── msg-mgt-default.properties │ │ │ │ │ └── userOperationNotificationMgt.properties │ │ │ │ └── templates │ │ │ │ │ └── userOperation │ │ │ │ ├── oauth │ │ │ │ ├── IDENTITY6777-identity.xml │ │ │ │ ├── add_scope_deployment.toml │ │ │ │ ├── encrypt-decrypt-persistence-enabled-identity.xml │ │ │ │ ├── jwt-token-gen-enabled-identity.toml │ │ │ │ ├── jwt_token_issuer_add_remaining_user_attribute.toml │ │ │ │ ├── jwt_token_issuer_convert_to_oidc.toml │ │ │ │ ├── jwt_token_issuer_enabled.toml │ │ │ │ ├── oauth-app-build.xml │ │ │ │ ├── oauth2_service_resource_owner.toml │ │ │ │ ├── playground2 │ │ │ │ │ └── web.xml │ │ │ │ ├── skip_consent_enabled.toml │ │ │ │ ├── token_renewal_per_request_enabled.toml │ │ │ │ └── web.xml │ │ │ │ ├── oidc │ │ │ │ └── oidc-sso-app-build.xml │ │ │ │ ├── org.wso2.sample.is.sso.agent │ │ │ │ ├── avis-app-build.xml │ │ │ │ ├── avis.properties │ │ │ │ ├── travelocity-app-build.xml │ │ │ │ └── travelocity.properties │ │ │ │ ├── organizationDiscovery │ │ │ │ └── email_as_username.toml │ │ │ │ ├── passivests │ │ │ │ ├── PassiveSTSSampleApp │ │ │ │ │ └── web.xml │ │ │ │ └── sts-app-build.xml │ │ │ │ ├── provisioning │ │ │ │ ├── db_separation_config.toml │ │ │ │ └── default_configs_with_h2_db.toml │ │ │ │ ├── recovery │ │ │ │ ├── non_unique_user_disable.toml │ │ │ │ └── non_unique_user_enable.toml │ │ │ │ ├── saml │ │ │ │ ├── application-authentication-default.xml │ │ │ │ ├── application_authentication_changed_acs.toml │ │ │ │ ├── error-code-enabled-application-authentication.xml │ │ │ │ ├── filebasedspidpconfigs │ │ │ │ │ ├── management-console-sso-idp-config.xml │ │ │ │ │ ├── original-sso-idp-config.xml │ │ │ │ │ ├── saml-idp.xml │ │ │ │ │ ├── saml-sp-sso-idp-config.xml │ │ │ │ │ ├── saml-sp.xml │ │ │ │ │ └── self.xml │ │ │ │ ├── identity-mgt-listener-enabled.xml │ │ │ │ ├── identity-mgt-uselocked.properties │ │ │ │ ├── idp-metadata.xml │ │ │ │ ├── log4j2_saml_enabled.properties │ │ │ │ ├── registry.xml │ │ │ │ ├── registrymount │ │ │ │ │ ├── registry-app-build.xml │ │ │ │ │ └── travelocity.properties │ │ │ │ ├── saml-app-build.xml │ │ │ │ ├── saml-assertion-query-enabled-deployment.toml │ │ │ │ ├── saml-assertion-query-enabled-identity.xml │ │ │ │ ├── saml-sso-for-admin-console.toml │ │ │ │ ├── saml_ecp_consent_management_disabled.toml │ │ │ │ ├── sp-metadata.xml │ │ │ │ ├── supertenant-saml-app-build.xml │ │ │ │ ├── supertenantwithoutsigning │ │ │ │ │ └── travelocity.properties │ │ │ │ └── tenantwithoutsigning │ │ │ │ │ └── travelocity.properties │ │ │ │ ├── scim │ │ │ │ └── IDENTITY4776 │ │ │ │ │ └── catalina_server_config.toml │ │ │ │ ├── scim2 │ │ │ │ └── me_unsecured_identity.toml │ │ │ │ ├── scriptEngine │ │ │ │ ├── nashorn_script_engine_config.toml │ │ │ │ └── openjdknashorn_script_engine_config.toml │ │ │ │ ├── sp │ │ │ │ └── keystores │ │ │ │ │ ├── sp1KeyStore.p12 │ │ │ │ │ └── sp2KeyStore.p12 │ │ │ │ ├── tenant.qualified │ │ │ │ └── tenant_qualified_url_tenanted_sessions_disabled.toml │ │ │ │ ├── user │ │ │ │ ├── enable_email_username_deployment.toml │ │ │ │ └── enable_federated_association.toml │ │ │ │ └── userMgt │ │ │ │ ├── bulkUserImport.csv │ │ │ │ ├── carbon15051 │ │ │ │ ├── carbon.xml │ │ │ │ └── email_login_config.toml │ │ │ │ ├── default-user-mgt.xml │ │ │ │ ├── jdbc_user_mgt_config.toml │ │ │ │ ├── ldap_user_mgt_config.toml │ │ │ │ ├── readWriteLdapUserMgtConfigWildCard.xml │ │ │ │ ├── read_only_ldap_user_mgt_config.toml │ │ │ │ └── scim-enabled-user-mgt.xml │ │ │ ├── automation.xml │ │ │ ├── automationSchema.xsd │ │ │ ├── axis2config │ │ │ └── axis2_client.xml │ │ │ ├── backupIdentity.xml │ │ │ ├── bulk │ │ │ └── requests │ │ │ │ ├── group │ │ │ │ ├── add.json │ │ │ │ ├── delete.json │ │ │ │ ├── patch.json │ │ │ │ └── replace.json │ │ │ │ ├── role │ │ │ │ ├── add.json │ │ │ │ ├── delete.json │ │ │ │ ├── patch.json │ │ │ │ └── replace.json │ │ │ │ └── user │ │ │ │ ├── add.json │ │ │ │ ├── delete.json │ │ │ │ ├── patch.json │ │ │ │ └── replace.json │ │ │ ├── carbon.properties │ │ │ ├── claim-selective-storage-test-user.json │ │ │ ├── client │ │ │ └── modules │ │ │ │ ├── addressing-1.6.1-wso2v10.mar │ │ │ │ ├── addressing-1.6.1-wso2v11-20140923.221217-629.mar │ │ │ │ ├── addressing-1.6.1-wso2v11.mar │ │ │ │ ├── addressing-1.6.1-wso2v14.mar │ │ │ │ ├── rampart-1.6.1-wso2v12.mar │ │ │ │ ├── rampart-1.6.1-wso2v15.mar │ │ │ │ └── rampart-1.6.1-wso2v16.mar │ │ │ ├── defaultAuthSeq │ │ │ ├── incorrect_default_seq.xml │ │ │ ├── invalid_content_default_seq.xml │ │ │ ├── invalid_xml_element_default_seq.xml │ │ │ └── valid_default_seq.xml │ │ │ ├── emma.properties │ │ │ ├── filters.txt │ │ │ ├── identity.xml │ │ │ ├── instance.xml │ │ │ ├── instrumentation.txt │ │ │ ├── keystores │ │ │ └── products │ │ │ │ ├── client-truststore.p12 │ │ │ │ ├── wso2carbon.p12 │ │ │ │ └── wso2carbon.pem │ │ │ ├── log4j.properties │ │ │ ├── log4j2.properties │ │ │ ├── org │ │ │ └── wso2 │ │ │ │ └── identity │ │ │ │ └── integration │ │ │ │ └── test │ │ │ │ ├── apiAuthorization │ │ │ │ └── authorized-apis-for-api-inheritance-test.json │ │ │ │ ├── auth │ │ │ │ ├── ConditionalAuthenticationClaimAssignTestCase.js │ │ │ │ ├── ConditionalAuthenticationHTTPCookieTestCase.js │ │ │ │ ├── ConditionalAuthenticationTestCase.js │ │ │ │ ├── HttpGetScript.js │ │ │ │ ├── HttpPostScript.js │ │ │ │ ├── IdentifierFirstScript.js │ │ │ │ ├── RiskBasedLoginScript.js │ │ │ │ ├── RiskBasedLoginScriptPayload.js │ │ │ │ ├── TemporaryClaimsAdaptiveScript.js │ │ │ │ └── analytics-payload.json │ │ │ │ ├── inheritance │ │ │ │ └── authorized-apis.json │ │ │ │ ├── notification │ │ │ │ └── template │ │ │ │ │ └── mgt │ │ │ │ │ └── authorized-apis.json │ │ │ │ ├── oauth2 │ │ │ │ └── impersonation-org-test-apis.json │ │ │ │ ├── organizationDiscovery │ │ │ │ ├── email_as_username_request.json │ │ │ │ ├── enable_email_domain_org_discovery.json │ │ │ │ ├── map_email_domain_to_sub_org.json │ │ │ │ ├── organization-onboarding-apis.json │ │ │ │ └── revert_email_as_username_request.json │ │ │ │ ├── rest │ │ │ │ └── api │ │ │ │ │ ├── server │ │ │ │ │ ├── application │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── adaptive-metadata.json │ │ │ │ │ │ │ ├── all-inbound-protocols-response.json │ │ │ │ │ │ │ ├── create-application-template.json │ │ │ │ │ │ │ ├── create-basic-application-response.json │ │ │ │ │ │ │ ├── create-basic-application.json │ │ │ │ │ │ │ ├── create-duplicate-oauth-app-with-predefined-clientid.json │ │ │ │ │ │ │ ├── create-oauth-app-with-additional-oidc-attributes.json │ │ │ │ │ │ │ ├── create-oauth-app-with-empty-redirect-uri.json │ │ │ │ │ │ │ ├── create-oauth-app-with-invalid-allowed-origins.json │ │ │ │ │ │ │ ├── create-oauth-app-with-invalid-audience-values.json │ │ │ │ │ │ │ ├── create-oauth-app-with-invalid-client-authentication-method.json │ │ │ │ │ │ │ ├── create-oauth-app-with-invalid-grant-type.json │ │ │ │ │ │ │ ├── create-oauth-app-with-invalid-id-token-signing-algorithm.json │ │ │ │ │ │ │ ├── create-oauth-app-with-invalid-request-object-encryption-algorithm.json │ │ │ │ │ │ │ ├── create-oauth-app-with-invalid-request-object-encryption-method.json │ │ │ │ │ │ │ ├── create-oauth-app-with-invalid-request-object-signing-algorithm.json │ │ │ │ │ │ │ ├── create-oauth-app-with-no-redirect-uris.json │ │ │ │ │ │ │ ├── create-oauth-app-with-predefined-clientid.json │ │ │ │ │ │ │ ├── create-oauth-app.json │ │ │ │ │ │ │ ├── create-passive-sts-app-conflicting-inbound-key.json │ │ │ │ │ │ │ ├── create-passive-sts-app.json │ │ │ │ │ │ │ ├── create-saml-app-with-manual-config.json │ │ │ │ │ │ │ ├── create-saml-app-with-metadata-file.json │ │ │ │ │ │ │ ├── create-sample-basic-application.json │ │ │ │ │ │ │ ├── create-ws-trust-app.json │ │ │ │ │ │ │ ├── invalid-claim-configuration.json │ │ │ │ │ │ │ ├── invalid-discoverable-app.json │ │ │ │ │ │ │ ├── invalid-discoverable-groups.json │ │ │ │ │ │ │ ├── oidc-metadata.json │ │ │ │ │ │ │ ├── patch-application-advanced-configuration.json │ │ │ │ │ │ │ ├── put-saml-inbound-with-manual-configs.json │ │ │ │ │ │ │ ├── saml-metadata-super-tenant.json │ │ │ │ │ │ │ ├── saml-metadata-tenant.json │ │ │ │ │ │ │ ├── sample-sp-import-super-tenant.xml │ │ │ │ │ │ │ ├── sample-sp-import-super-tenant_updated.xml │ │ │ │ │ │ │ ├── sample-sp-import-tenant.xml │ │ │ │ │ │ │ ├── sample-sp-import-tenant_updated.xml │ │ │ │ │ │ │ ├── update-application-template.json │ │ │ │ │ │ │ ├── update-claim-configuration.json │ │ │ │ │ │ │ ├── update-oauth-app-with-additional-oidc-attributes.json │ │ │ │ │ │ │ ├── update-oauth-app-with-predefined-clientid.json │ │ │ │ │ │ │ ├── update-saml-app-with-manual-config.json │ │ │ │ │ │ │ ├── update-saml-app-with-metadata-file.json │ │ │ │ │ │ │ ├── ws-trust-metadata-super-tenant.json │ │ │ │ │ │ │ └── ws-trust-metadata-tenant.json │ │ │ │ │ ├── branding │ │ │ │ │ │ └── preference │ │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── add-custom-layout.json │ │ │ │ │ │ │ ├── add-custom-text.json │ │ │ │ │ │ │ ├── add-empty-app-branding-preference.json │ │ │ │ │ │ │ ├── add-empty-custom-text-preference.json │ │ │ │ │ │ │ ├── add-empty-json-preference.json │ │ │ │ │ │ │ ├── add-l1-app-branding-preference.json │ │ │ │ │ │ │ ├── add-l1-org-branding-preference.json │ │ │ │ │ │ │ ├── add-l2-app-branding-preference.json │ │ │ │ │ │ │ ├── add-l2-org-branding-preference.json │ │ │ │ │ │ │ ├── add-root-app-branding-preference.json │ │ │ │ │ │ │ ├── add-root-org-branding-preference.json │ │ │ │ │ │ │ ├── organization-self-service-apis.json │ │ │ │ │ │ │ ├── update-custom-layout.json │ │ │ │ │ │ │ ├── update-custom-text.json │ │ │ │ │ │ │ ├── update-l1-app-branding-preference.json │ │ │ │ │ │ │ ├── update-l2-app-branding-preference.json │ │ │ │ │ │ │ ├── update-root-app-branding-preference.json │ │ │ │ │ │ │ └── update-root-org-branding-preference.json │ │ │ │ │ ├── claim │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── claim-management-add-dialect.json │ │ │ │ │ │ │ ├── claim-management-add-external-claim-already-mapped.json │ │ │ │ │ │ │ ├── claim-management-add-external-claim-invalid-mapped-claim.json │ │ │ │ │ │ │ ├── claim-management-add-external-claim-mapped-to-custom-local-claim.json │ │ │ │ │ │ │ ├── claim-management-add-external-claim.json │ │ │ │ │ │ │ ├── claim-management-add-local-claim-invalid-userstore.json │ │ │ │ │ │ │ ├── claim-management-add-local-claim-with-existing-uri.json │ │ │ │ │ │ │ ├── claim-management-add-local-claim.json │ │ │ │ │ │ │ ├── claim-management-update-default-external-claim.json │ │ │ │ │ │ │ ├── claim-management-update-dialect.json │ │ │ │ │ │ │ ├── claim-management-update-external-claim-already-mapped.json │ │ │ │ │ │ │ ├── claim-management-update-external-claim-conflict.json │ │ │ │ │ │ │ ├── claim-management-update-external-claim-invalid-mapped-claim.json │ │ │ │ │ │ │ ├── claim-management-update-external-claim.json │ │ │ │ │ │ │ ├── claim-management-update-local-claim-conflict.json │ │ │ │ │ │ │ ├── claim-management-update-local-claim.json │ │ │ │ │ │ │ └── claim-management-update-sharedProfileValueResolvingMethod-of-system-claim.json │ │ │ │ │ ├── configs │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── default-impersonation-configs.json │ │ │ │ │ │ │ ├── default-scim-configs.json │ │ │ │ │ │ │ ├── patch-add-configs.json │ │ │ │ │ │ │ ├── patch-cors-configs-invalid-operation.json │ │ │ │ │ │ │ ├── patch-cors-configs-invalid-path.json │ │ │ │ │ │ │ ├── patch-cors-configs-invalid-value.json │ │ │ │ │ │ │ ├── patch-cors-configs.json │ │ │ │ │ │ │ ├── patch-modify-impersonation-configs.json │ │ │ │ │ │ │ ├── patch-remove-configs.json │ │ │ │ │ │ │ ├── patch-replace-configs.json │ │ │ │ │ │ │ ├── update-passive-sts-inbound-auth-configs.json │ │ │ │ │ │ │ ├── update-saml-inbound-auth-configs-invalid.json │ │ │ │ │ │ │ ├── update-saml-inbound-auth-configs.json │ │ │ │ │ │ │ └── update-scim-configs.json │ │ │ │ │ ├── email │ │ │ │ │ │ └── template │ │ │ │ │ │ │ ├── v1 │ │ │ │ │ │ │ ├── add-email-template-conflict-request.json │ │ │ │ │ │ │ ├── add-email-template-request.json │ │ │ │ │ │ │ ├── add-email-template-type-conflict-request.json │ │ │ │ │ │ │ ├── add-email-template-type-request.json │ │ │ │ │ │ │ ├── get-all-email-template-types-response.json │ │ │ │ │ │ │ ├── get-email-template-type-response.json │ │ │ │ │ │ │ ├── get-templates-list-of-email-template-type-response.json │ │ │ │ │ │ │ ├── update-email-template-request.json │ │ │ │ │ │ │ ├── update-email-template-type-request.json │ │ │ │ │ │ │ └── updated-email-template-type-response.json │ │ │ │ │ │ │ └── v2 │ │ │ │ │ │ │ ├── add-application-email-template-conflict-request.json │ │ │ │ │ │ │ ├── add-application-email-template-request.json │ │ │ │ │ │ │ ├── add-email-template-conflict-request.json │ │ │ │ │ │ │ ├── add-email-template-request.json │ │ │ │ │ │ │ ├── add-email-template-type-conflict-request.json │ │ │ │ │ │ │ ├── add-email-template-type-request.json │ │ │ │ │ │ │ ├── get-all-email-template-types-response.json │ │ │ │ │ │ │ ├── get-application-templates-list-of-email-template-type-response.json │ │ │ │ │ │ │ ├── get-templates-list-of-email-template-type-response.json │ │ │ │ │ │ │ ├── update-application-email-template-request.json │ │ │ │ │ │ │ └── update-email-template-request.json │ │ │ │ │ ├── flow │ │ │ │ │ │ ├── execution │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ └── registration-flow.json │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ └── registration-flow.json │ │ │ │ │ ├── identity │ │ │ │ │ │ └── governance │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── disable-password-expiry.json │ │ │ │ │ │ │ ├── get-categories-response.json │ │ │ │ │ │ │ ├── get-category-QWNjb3VudCBNYW5hZ2VtZW50-response.json │ │ │ │ │ │ │ ├── get-category-T3RoZXIgU2V0dGluZ3M-response.json │ │ │ │ │ │ │ ├── get-category-TG9naW4gQXR0ZW1wdHMgU2VjdXJpdHk-response.json │ │ │ │ │ │ │ ├── get-category-UGFzc3dvcmQgUG9saWNpZXM-response.json │ │ │ │ │ │ │ ├── get-category-VXNlciBPbmJvYXJkaW5n-response.json │ │ │ │ │ │ │ ├── get-connector-properties-response.json │ │ │ │ │ │ │ ├── get-connector-properties.json │ │ │ │ │ │ │ ├── get-properties-with-invalid-connector-name.json │ │ │ │ │ │ │ ├── get-properties-with-invalid-property-name.json │ │ │ │ │ │ │ ├── get-properties-without-property-name-response.json │ │ │ │ │ │ │ ├── get-properties-without-property-name.json │ │ │ │ │ │ │ ├── reset-connector-property.json │ │ │ │ │ │ │ ├── update-connector-property.json │ │ │ │ │ │ │ ├── update-multiple-connector-properties-incorrect.json │ │ │ │ │ │ │ └── update-multiple-connector-properties.json │ │ │ │ │ ├── idp │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── add-idp-conflict.json │ │ │ │ │ │ │ ├── add-idp-duplicate-properties.json │ │ │ │ │ │ │ ├── add-idp-template-conflict.json │ │ │ │ │ │ │ ├── add-idp-template.json │ │ │ │ │ │ │ ├── add-idp-template2.json │ │ │ │ │ │ │ ├── add-idp-with-custom-fed-auth.json │ │ │ │ │ │ │ ├── add-idp-with-custom-fed-multi-auth.json │ │ │ │ │ │ │ ├── add-idp-without-authenticator.json │ │ │ │ │ │ │ ├── add-idp.json │ │ │ │ │ │ │ ├── add-idp2.json │ │ │ │ │ │ │ ├── add-oidc-idp.json │ │ │ │ │ │ │ ├── add-saml-idp.json │ │ │ │ │ │ │ ├── add-trusted-token-issuer-idp.json │ │ │ │ │ │ │ ├── patch-add-certificate.json │ │ │ │ │ │ │ ├── patch-add-jwks-uri.json │ │ │ │ │ │ │ ├── patch-idp-home-realm.json │ │ │ │ │ │ │ ├── patch-remove-certificate.json │ │ │ │ │ │ │ ├── patch-remove-jwks-uri.json │ │ │ │ │ │ │ ├── test-metadata-saml.xml │ │ │ │ │ │ │ ├── update-idp-claims.json │ │ │ │ │ │ │ ├── update-idp-federated-authenticator.json │ │ │ │ │ │ │ ├── update-idp-jit.json │ │ │ │ │ │ │ ├── update-idp-outbound-connector.json │ │ │ │ │ │ │ ├── update-idp-roles.json │ │ │ │ │ │ │ ├── update-idp-template.json │ │ │ │ │ │ │ └── update-oidc-idp.json │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── cert-request-body1.json │ │ │ │ │ │ │ ├── cert-request-body2.json │ │ │ │ │ │ │ └── cert-request-body3.json │ │ │ │ │ ├── notification │ │ │ │ │ │ ├── sender │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ ├── add-email-sender-2.json │ │ │ │ │ │ │ │ ├── add-email-sender.json │ │ │ │ │ │ │ │ ├── add-sms-sender-2.json │ │ │ │ │ │ │ │ ├── add-sms-sender-invalid-provider.json │ │ │ │ │ │ │ │ ├── add-sms-sender.json │ │ │ │ │ │ │ │ ├── update-email-sender.json │ │ │ │ │ │ │ │ └── update-sms-sender.json │ │ │ │ │ │ └── template │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── request-body-add-email-template.template │ │ │ │ │ │ │ ├── request-body-add-sms-template.template │ │ │ │ │ │ │ ├── request-body-add-template-type.template │ │ │ │ │ │ │ ├── request-body-reset-template-type.template │ │ │ │ │ │ │ ├── request-body-update-email-template.template │ │ │ │ │ │ │ └── request-body-update-sms-template.template │ │ │ │ │ ├── oidc │ │ │ │ │ │ └── scope │ │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── add-invalid-scope-request-body1.json │ │ │ │ │ │ │ ├── add-scope-request-body1.json │ │ │ │ │ │ │ └── update-scope-request-body1.json │ │ │ │ │ ├── organization │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── add-admin-user-in-organization-request-body.json │ │ │ │ │ │ │ ├── add-discovery-attributes-request-body.json │ │ │ │ │ │ │ ├── add-discovery-config-request-body.json │ │ │ │ │ │ │ ├── add-greater-hospital-organization-request-body.json │ │ │ │ │ │ │ ├── add-invalid-discovery-attributes-request-body.json │ │ │ │ │ │ │ ├── add-organization-with-handle-request-body.json │ │ │ │ │ │ │ ├── add-smaller-hospital-organization-request-body.json │ │ │ │ │ │ │ ├── check-discovery-attributes-available-request-body.json │ │ │ │ │ │ │ ├── check-discovery-attributes-unavailable-request-body.json │ │ │ │ │ │ │ ├── create-organization-self-service-app-request-body.json │ │ │ │ │ │ │ ├── disable-organization-request-body.json │ │ │ │ │ │ │ ├── enable-self-organization-onboard-request-body.json │ │ │ │ │ │ │ ├── invalid-discovery-config-request-body.json │ │ │ │ │ │ │ ├── organization-self-service-apis.json │ │ │ │ │ │ │ ├── rename-organization-request-body.json │ │ │ │ │ │ │ ├── update-discovery-attributes-request-body.json │ │ │ │ │ │ │ └── update-hospital-organization-request-body.json │ │ │ │ │ ├── script │ │ │ │ │ │ └── library │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── sample-script-library-bad-content.js │ │ │ │ │ │ │ ├── sample-script-library-updated.js │ │ │ │ │ │ │ └── sample-script-library.js │ │ │ │ │ ├── secret │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── add-secret-type.json │ │ │ │ │ │ │ ├── add-secret.json │ │ │ │ │ │ │ ├── update-secret-type.json │ │ │ │ │ │ │ └── update-secret.json │ │ │ │ │ ├── tenant │ │ │ │ │ │ └── management │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── add-tenant-conflict.json │ │ │ │ │ │ │ ├── add-tenant-inline-password.json │ │ │ │ │ │ │ ├── add-tenant-invalid-claims.json │ │ │ │ │ │ │ ├── add-tenant-with-name.json │ │ │ │ │ │ │ ├── add-tenant.json │ │ │ │ │ │ │ └── update-owner.json │ │ │ │ │ ├── user │ │ │ │ │ │ ├── sharing │ │ │ │ │ │ │ └── management │ │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ │ └── user-sharing-apis.json │ │ │ │ │ │ └── store │ │ │ │ │ │ │ └── v1 │ │ │ │ │ │ │ ├── add-secondary-user-store-negative.json │ │ │ │ │ │ │ ├── get-available-user-store-classes.json │ │ │ │ │ │ │ ├── get-user-store-response.json │ │ │ │ │ │ │ ├── get-user-store_by_domain_id-response.json │ │ │ │ │ │ │ ├── get-user-store_by_type_id_response.json │ │ │ │ │ │ │ ├── patch-secondary-user-store.json │ │ │ │ │ │ │ ├── update-secondary-user-store.json │ │ │ │ │ │ │ ├── user-store-add-secondary-user-store.json │ │ │ │ │ │ │ ├── user-store-test-connection-with-masked-password.json │ │ │ │ │ │ │ └── user-store-test-connection.json │ │ │ │ │ └── workflow │ │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── add-association-invalid-workflow.json │ │ │ │ │ │ ├── add-workflow-association.json │ │ │ │ │ │ ├── add-workflow-invalid-engine.json │ │ │ │ │ │ ├── add-workflow-invalid-template.json │ │ │ │ │ │ ├── add-workflow.json │ │ │ │ │ │ ├── patch-association-name.json │ │ │ │ │ │ ├── patch-association-operation.json │ │ │ │ │ │ ├── patch-association-workflowId.json │ │ │ │ │ │ └── update-workflow.json │ │ │ │ │ └── user │ │ │ │ │ ├── approval │ │ │ │ │ └── v1 │ │ │ │ │ │ └── approval-state-template.json │ │ │ │ │ ├── association │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── association-creation-1-ic.json │ │ │ │ │ │ ├── association-creation-1.json │ │ │ │ │ │ ├── association-creation-2.json │ │ │ │ │ │ ├── association-creation-tenant-1-ic.json │ │ │ │ │ │ ├── association-creation-tenant-1.json │ │ │ │ │ │ └── association-creation-tenant-2.json │ │ │ │ │ ├── challenge │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── challenge-answer-set1-q4-correct.json │ │ │ │ │ │ ├── challenge-answer-set2-q4-correct.json │ │ │ │ │ │ ├── challenge-answers-array-correct-1.json │ │ │ │ │ │ ├── challenge-answers-array-correct-2.json │ │ │ │ │ │ ├── challenge-answers-array-multiple-from-same-set.json │ │ │ │ │ │ ├── challenge-answers-non-existing-question.json │ │ │ │ │ │ └── challenge-answers-non-existing-set.json │ │ │ │ │ ├── liteUserRegister │ │ │ │ │ ├── lite-user-register-claim-email-as-username-revert.json │ │ │ │ │ └── lite-user-register-claim-email-as-username.json │ │ │ │ │ └── selfRegister │ │ │ │ │ ├── self-register-request-body.json │ │ │ │ │ └── self-register-tenanted-user-request-body.json │ │ │ │ ├── scim2 │ │ │ │ └── rest │ │ │ │ │ └── api │ │ │ │ │ ├── claim-management-update-emailverified-claim.json │ │ │ │ │ ├── customSchema │ │ │ │ │ ├── scim2-custom-schema-add-user.json │ │ │ │ │ ├── scim2-custom-schema-patch-add-attribute.json │ │ │ │ │ ├── scim2-custom-schema-patch-remove-attribute.json │ │ │ │ │ ├── scim2-custom-schema-patch-replace-attribute.json │ │ │ │ │ └── scim2-custom-schema-put-user.json │ │ │ │ │ ├── scim2-add-group.json │ │ │ │ │ ├── scim2-add-user.json │ │ │ │ │ ├── scim2-patch-add-group-permissions.json │ │ │ │ │ ├── scim2-patch-remove-group-permissions.json │ │ │ │ │ ├── scim2-patch-replace-identity-claim.json │ │ │ │ │ ├── scim2-patch-user-add-op.json │ │ │ │ │ ├── scim2-patch-user-remove-op.json │ │ │ │ │ ├── scim2-patch-user-replace-op.json │ │ │ │ │ ├── scim2-put-group-permissions.json │ │ │ │ │ ├── scim2-put-user-change-username.json │ │ │ │ │ └── scim2-put-user.json │ │ │ │ ├── user │ │ │ │ ├── mgt │ │ │ │ │ ├── email-addresses-claim-update-to-exclude-userstore.json │ │ │ │ │ ├── email-addresses-claim-update-to-reset-excluded-userstores.json │ │ │ │ │ ├── mobile-numbers-claim-update-to-exclude-userstore.json │ │ │ │ │ └── mobile-numbers-claim-update-to-reset-excluded-userstores.json │ │ │ │ ├── profile │ │ │ │ │ └── mgt │ │ │ │ │ │ ├── authorized-apis.json │ │ │ │ │ │ ├── custom-claim-update-to-resolve-from-origin.json │ │ │ │ │ │ └── custom-claim-update-to-resolve-from-shared-profile.json │ │ │ │ └── store │ │ │ │ │ ├── authorized-apis.json │ │ │ │ │ ├── update-claim-mapping-primary.json │ │ │ │ │ ├── update-claim-mapping.json │ │ │ │ │ └── update-claim.json │ │ │ │ └── utils │ │ │ │ └── create-oidc-app-request-body.json │ │ │ ├── spFile │ │ │ └── TestServer.xml │ │ │ ├── spTemplate │ │ │ ├── TestTemplate1.xml │ │ │ ├── TestTemplate2.xml │ │ │ ├── TestTemplate3.xml │ │ │ ├── TestTemplate4.xml │ │ │ └── TestTemplate5.xml │ │ │ ├── stsclient │ │ │ ├── client.properties │ │ │ ├── keystore │ │ │ │ ├── admin.cert │ │ │ │ └── wso2carbon.p12 │ │ │ ├── messages │ │ │ │ ├── RSTR_bearer.xml │ │ │ │ ├── RST_bearer.xml │ │ │ │ ├── Request_Message_bearer.xml │ │ │ │ └── Response_Message_bearer.xml │ │ │ ├── repo │ │ │ │ └── modules │ │ │ │ │ ├── addressing-1.6.1-wso2v2.mar │ │ │ │ │ ├── rahas-1.6.1-wso2v1.mar │ │ │ │ │ └── rampart-1.6.1-wso2v1.mar │ │ │ ├── service-policy.xml │ │ │ ├── sts-client.bat │ │ │ ├── sts-client.sh │ │ │ ├── sts-policy-signonly.xml │ │ │ └── sts-policy-ut.xml │ │ │ ├── testng-server-mgt.xml │ │ │ ├── testng.xml │ │ │ ├── ws-trust-templates │ │ │ ├── renew_security_token_RST.xml │ │ │ ├── renew_security_token_RSTR.xml │ │ │ ├── request_security_token_RST.xml │ │ │ ├── request_security_token_RSTR.xml │ │ │ ├── validate_security_token_RST.xml │ │ │ └── validate_security_token_RSTR.xml │ │ │ └── wso2_com.xml │ └── tests-ui-integration │ │ ├── pom.xml │ │ ├── src │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── identity │ │ │ │ └── ui │ │ │ │ └── integration │ │ │ │ └── test │ │ │ │ ├── LoginTestCase.java │ │ │ │ ├── login │ │ │ │ └── ISLoginTestCase.java │ │ │ │ ├── user │ │ │ │ └── mgt │ │ │ │ │ └── RoleCreationTestCase.java │ │ │ │ └── utils │ │ │ │ ├── BasicAuthHandler.java │ │ │ │ ├── BasicAuthInfo.java │ │ │ │ └── SCIM │ │ │ │ ├── SCIMConstraints.java │ │ │ │ └── SCIMResponseHandler.java │ │ │ └── resources │ │ │ ├── artifacts │ │ │ └── IS │ │ │ │ ├── identityMgt │ │ │ │ ├── axis2-default.xml │ │ │ │ ├── axis2.xml │ │ │ │ ├── identity-mgt-default.properties │ │ │ │ └── identity-mgt-enabled.properties │ │ │ │ ├── javarp.cer │ │ │ │ ├── openId │ │ │ │ ├── dumbconsumerwithclaims │ │ │ │ │ └── travelocity.properties │ │ │ │ ├── dumbconsumerwithoutclaims │ │ │ │ │ └── travelocity.properties │ │ │ │ ├── identity-default.xml │ │ │ │ ├── identity-skipuserconsent.xml │ │ │ │ ├── openid-app-build.xml │ │ │ │ ├── smartconsumerwithclaims │ │ │ │ │ └── travelocity.properties │ │ │ │ └── smartconsumerwithoutclaims │ │ │ │ │ └── travelocity.properties │ │ │ │ └── userMgt │ │ │ │ ├── JdbcUserMgtConfig.xml │ │ │ │ ├── bulkUserImport.csv │ │ │ │ └── readOnlyLdapUserMgtConfig.xml │ │ │ ├── automation.properties │ │ │ ├── automation.xml │ │ │ ├── automation_mapping.xsd │ │ │ ├── axis2config │ │ │ └── axis2_client.xml │ │ │ ├── client │ │ │ └── modules │ │ │ │ └── addressing-1.6.1-wso2v11.mar │ │ │ ├── clusters.xml │ │ │ ├── emma.properties │ │ │ ├── filters.txt │ │ │ ├── instrumentation.txt │ │ │ ├── keystores │ │ │ └── products │ │ │ │ ├── client-truststore.p12 │ │ │ │ └── wso2carbon.p12 │ │ │ ├── log4j.properties │ │ │ ├── tenantList.csv │ │ │ ├── testng-server-mgt.xml │ │ │ ├── testng.xml │ │ │ └── userList.csv │ │ └── tests-ui │ │ ├── pom.xml │ │ └── src │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── wso2 │ │ │ └── identity │ │ │ └── ui │ │ │ └── integration │ │ │ └── test │ │ │ ├── dashboard │ │ │ └── DashboardSecurityTestCase.java │ │ │ ├── email │ │ │ └── template │ │ │ │ └── EmailTemplateChangeUITest.java │ │ │ ├── login │ │ │ └── ISLoginTestCase.java │ │ │ ├── oidc │ │ │ ├── OIDCAbstractUIIntegrationTest.java │ │ │ ├── OIDCApplication.java │ │ │ ├── OIDCAuthCodeSessionTestCase.java │ │ │ └── OIDCUser.java │ │ │ ├── tenant │ │ │ └── mgt │ │ │ │ └── TenantDropDownTestCase.java │ │ │ └── utils │ │ │ └── OIDCUITestConstants.java │ │ └── resources │ │ ├── artifacts │ │ └── IS │ │ │ ├── oidc │ │ │ └── playground-app-build.xml │ │ │ └── tenantDropdown │ │ │ ├── EndpointConfigDefault.properties │ │ │ ├── EndpointConfigTenantDropdownEnabled.properties │ │ │ ├── application-authentication-default.xml │ │ │ ├── application-authentication-tanantDropdown-enabled.xml │ │ │ ├── authenticators-default.xml │ │ │ ├── authenticators-tenantDropdown-enabled.xml │ │ │ ├── catalina-server-default.xml │ │ │ └── catalina-server-tanantDropdown-enabled.xml │ │ ├── automation.xml │ │ ├── automation_mapping.xsd │ │ ├── axis2config │ │ └── axis2_client.xml │ │ ├── client │ │ └── modules │ │ │ ├── addressing-1.6.1-wso2v11-20140923.221217-629.mar │ │ │ ├── addressing-1.6.1-wso2v11.mar │ │ │ └── rampart-1.6.1-wso2v12.mar │ │ ├── emma.properties │ │ ├── filters.txt │ │ ├── instrumentation.txt │ │ ├── keystores │ │ └── products │ │ │ ├── client-truststore.p12 │ │ │ └── wso2carbon.p12 │ │ ├── log4j.properties │ │ ├── mapper.properties │ │ ├── security │ │ └── policies │ │ │ ├── scenario-config.xml │ │ │ ├── scenario1-policy.xml │ │ │ ├── scenario10-policy.xml │ │ │ ├── scenario11-policy.xml │ │ │ ├── scenario12-policy.xml │ │ │ ├── scenario13-policy.xml │ │ │ ├── scenario14-policy.xml │ │ │ ├── scenario15-policy.xml │ │ │ ├── scenario16-policy.xml │ │ │ ├── scenario17-policy.xml │ │ │ ├── scenario2-policy.xml │ │ │ ├── scenario3-policy.xml │ │ │ ├── scenario4-policy.xml │ │ │ ├── scenario5-policy.xml │ │ │ ├── scenario6-policy.xml │ │ │ ├── scenario7-policy.xml │ │ │ ├── scenario8-policy.xml │ │ │ └── scenario9-policy.xml │ │ └── testng.xml ├── local-authenticators │ └── pom.xml ├── migration │ └── README.md ├── oauth2-grant-types │ └── pom.xml ├── p2-profile-gen │ ├── carbon.product │ └── pom.xml ├── provisioning-connectors │ └── pom.xml ├── samples │ └── README.md ├── social-authenticators │ └── pom.xml ├── styles │ ├── pom.xml │ ├── product │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── product.xml │ │ │ └── web │ │ │ ├── favicon.ico │ │ │ ├── product │ │ │ └── about.html │ │ │ └── styles │ │ │ ├── css │ │ │ └── main.css │ │ │ └── images │ │ │ ├── 1px.gif │ │ │ ├── back-repeat.png │ │ │ ├── is-button-bg-hover.gif │ │ │ ├── is-header-bg.gif │ │ │ ├── is-header-bg.png │ │ │ ├── is-header-logo.gif │ │ │ ├── is-header-logo.png │ │ │ ├── is-header-region-bg.gif │ │ │ ├── is-home-bg.gif │ │ │ ├── is-logo.png │ │ │ ├── is-page-bg.png │ │ │ ├── is-server-menu-header.png │ │ │ ├── menu-back.png │ │ │ ├── menu_header.gif │ │ │ ├── menu_header.png │ │ │ └── right-links-bg.gif │ └── service │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── resources │ │ ├── META-INF │ │ └── product.xml │ │ └── web │ │ ├── favicon.ico │ │ └── styles │ │ ├── css │ │ └── main.css │ │ └── images │ │ ├── 1px.gif │ │ ├── back-repeat.png │ │ ├── is-header-bg.png │ │ ├── is-logo.png │ │ ├── is-server-menu-header.png │ │ ├── menu_header.gif │ │ ├── menu_header.png │ │ └── right-links-bg.gif └── tests-utils │ ├── admin-services │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── wso2 │ │ │ └── carbon │ │ │ └── identity │ │ │ └── test │ │ │ └── integration │ │ │ └── service │ │ │ ├── UUIDUserStoreManagerService.java │ │ │ ├── dao │ │ │ ├── Attribute.java │ │ │ ├── AuthenticationResultDTO.java │ │ │ ├── ClaimDTO.java │ │ │ ├── ClaimValue.java │ │ │ ├── ConditionDTO.java │ │ │ ├── FailureReasonDTO.java │ │ │ ├── LoginIdentifierDTO.java │ │ │ ├── PermissionDTO.java │ │ │ ├── UniqueIDUserClaimSearchEntryDAO.java │ │ │ ├── UserClaimSearchEntryDAO.java │ │ │ ├── UserDTO.java │ │ │ ├── UserRoleListDTO.java │ │ │ └── UserStoreException.java │ │ │ └── internal │ │ │ └── UMTestServiceComponent.java │ │ └── resources │ │ └── META-INF │ │ └── services.xml │ ├── admin-stubs │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── UUIDUserStoreManagerService.wsdl │ └── pom.xml ├── oidc-conformance-tests ├── README.md ├── basic │ └── config │ │ ├── service_provider1_config.json │ │ └── service_provider2_config.json ├── config │ ├── acr_config.json │ ├── browser_configuration.py │ ├── oidc_deployment_config.toml │ ├── service_provider_claim_config.json │ └── user_claim_value_config.json ├── configure_is.py ├── conformance-suite-setup-guidelines.md ├── constants.py ├── export_results.py ├── formpost-basic │ └── config │ │ ├── service_provider1_config.json │ │ └── service_provider2_config.json ├── formpost-hybrid │ └── config │ │ ├── service_provider1_config.json │ │ └── service_provider2_config.json ├── formpost-implicit │ └── config │ │ ├── service_provider1_config.json │ │ └── service_provider2_config.json ├── hybrid │ └── config │ │ ├── service_provider1_config.json │ │ └── service_provider2_config.json ├── implicit │ └── config │ │ ├── service_provider1_config.json │ │ └── service_provider2_config.json ├── send_chat.py ├── send_email.py ├── start_conformance_suite.py └── test_runner.sh ├── oidc-fapi-conformance-tests ├── README.md ├── config │ ├── browser_configuration.py │ ├── client_configs.py │ ├── deployment-fapi-config.toml │ └── sandbox-certs │ │ ├── OB_SandBox_PP_Issuing_CA.cer │ │ └── OB_SandBox_PP_Root_CA.cer ├── configure_is_fapi.py ├── constants_fapi.py ├── export_results_fapi.py ├── resource-server │ ├── jwks_to_host │ │ ├── serverjwks.py │ │ └── serverjwks2.py │ ├── nginx-proxy │ ├── requirements.txt │ └── resource-server.py ├── start_conformance_suite.py └── test_runner_fapi.sh ├── pom.xml ├── product-scenarios ├── 1-manage-users-and-roles │ ├── 1.1-admin-user-manage-roles │ │ ├── 1.1.1-manage-roles-with-scim2 │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org.wso2.identity.scenarios.test.scim2 │ │ │ │ │ ├── ManageRolesSCIM2TestCase.java │ │ │ │ │ ├── ManageRolesWithUsersSCIM2TestCase.java │ │ │ │ │ ├── RenameExistingRoleToNameOfAnExistingRoleSCIM2TestCase.java │ │ │ │ │ ├── RoleNamingViolationSCIM2TestCase.java │ │ │ │ │ └── UpdateRoleSCIM2TestCase.java │ │ │ │ └── resources │ │ │ │ ├── log4j.properties │ │ │ │ ├── scim2-groups │ │ │ │ ├── scim2Group1.json │ │ │ │ ├── scim2Group2.json │ │ │ │ ├── scim2GroupWithLessThanMinCharacters.json │ │ │ │ ├── scim2GroupWithSpecialCharacters.json │ │ │ │ └── scim2UpdateGroup.json │ │ │ │ ├── scim2-users │ │ │ │ └── scim2User.json │ │ │ │ └── testng.xml │ │ ├── 1.1.2-manage-roles-with-scim1 │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 1.1.3-manage-roles-with-soap-services │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── identity │ │ │ │ │ └── scenarios │ │ │ │ │ └── test │ │ │ │ │ └── services │ │ │ │ │ ├── ManageInternalRolesWithPermissionTestCase.java │ │ │ │ │ ├── ManagePrimaryRolesWithPermissionTestCase.java │ │ │ │ │ └── ProvisionUserWithAdminRights.java │ │ │ │ └── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── README.md │ │ └── pom.xml │ ├── 1.2-admin-user-manage-user-accounts │ │ ├── 1.2.1-manage-users-with-scim2 │ │ │ ├── README.md │ │ │ ├── TestCases.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── identity │ │ │ │ │ └── scenarios │ │ │ │ │ └── test │ │ │ │ │ └── scim2 │ │ │ │ │ ├── AnonymousProvisioningTestCase.java │ │ │ │ │ ├── ProvisionEmailUserSCIM2TestCase.java │ │ │ │ │ ├── ProvisionExistingUserTestCase.java │ │ │ │ │ ├── ProvisionUserSCIM2EnterpriseUserRequestTestCase.java │ │ │ │ │ ├── ProvisionUserSCIM2FullRequestTestCase.java │ │ │ │ │ ├── ProvisionUserSCIM2TestCase.java │ │ │ │ │ ├── ProvisionUserWithAllAttributesTestCase.java │ │ │ │ │ ├── ProvisionUserWithMalformedRequestTestCase.java │ │ │ │ │ ├── ProvisionUserWithValidationFailuresTestCase.java │ │ │ │ │ ├── ProvisionUserWithoutAuthHeaderTestCase.java │ │ │ │ │ ├── ProvisionUserWithoutContentHeaderTestCase.java │ │ │ │ │ ├── SCIMConstants.java │ │ │ │ │ ├── UpdateProvisionedUserSCIM2TestCase.java │ │ │ │ │ ├── UserProvisionSCIMWithDifferentContentTypeTestCase.java │ │ │ │ │ └── UserProvisionWithInsufficientPrivilegesSCIM2TestCase.java │ │ │ │ └── resources │ │ │ │ ├── log4j.properties │ │ │ │ ├── scim2-users │ │ │ │ └── scim2user.json │ │ │ │ └── testng.xml │ │ ├── 1.2.10-force-user-password-reset │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 1.2.11-lock-unlock-user-accounts │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 1.2.12-enable-disable-user-accounts │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 1.2.13-removing-user-account │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 1.2.14-manage-challenge-questions │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 1.2.15-user-session-management │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 1.2.16-claim-management │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 1.2.2-manage-users-with-scim1 │ │ │ ├── README.md │ │ │ ├── TestCases.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── identity │ │ │ │ │ └── scenarios │ │ │ │ │ └── test │ │ │ │ │ └── scim │ │ │ │ │ ├── SCIMConstants.java │ │ │ │ │ └── UserProvisionSCIMTestCase.java │ │ │ │ └── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── 1.2.3-manage-users-with-soap-services │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 1.2.4-register-user-with-email-verification │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 1.2.5-ask-password │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 1.2.6-bulk-user-import │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 1.2.7-prevent-access-upon-invalid-login-attempts │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 1.2.8-suspend-idle-user-accounts │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 1.2.9-authentication-analytics │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── README.md │ │ └── pom.xml │ ├── 1.3-user-management-with-multilayer-approval │ │ ├── README.md │ │ └── pom.xml │ ├── 1.4-manage-user-stores │ │ ├── README.md │ │ └── pom.xml │ ├── README.md │ └── pom.xml ├── 10-fine-grained-access-control │ ├── 10.1-fine-grained-access-control-for-api-access │ │ ├── README.md │ │ └── pom.xml │ ├── README.md │ └── pom.xml ├── 11-monitor-user-logins-and-sessions │ ├── README.md │ └── pom.xml ├── 2-user-account-management │ ├── 2.1-self-registration-via-end-user-portal │ │ ├── README.md │ │ ├── pom.xml │ │ └── src │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── wso2 │ │ │ │ └── identity │ │ │ │ └── scenarios │ │ │ │ └── um │ │ │ │ └── test │ │ │ │ └── self │ │ │ │ └── registration │ │ │ │ └── api │ │ │ │ ├── SelfRegistrationTestCase.java │ │ │ │ └── util │ │ │ │ └── Constants.java │ │ │ └── resources │ │ │ ├── log4j.properties │ │ │ ├── registration-requests │ │ │ ├── request1.json │ │ │ └── request2.json │ │ │ └── testng.xml │ ├── 2.2-self-registration-via-social-ipds │ │ ├── README.md │ │ └── pom.xml │ ├── 2.3-self-registration-on-idp │ │ ├── README.md │ │ └── pom.xml │ ├── 2.4-manage-own-user-account │ │ ├── 2.4.1-update-profile │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 2.4.2-update-challenge-questions │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 2.4.3-update-consents │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 2.4.4-manage-user-associations │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 2.4.5-attach-fido-token │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 2.4.6-recover-user-account │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 2.4.7-recover-password │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 2.4.8-monitor-login │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── README.md │ │ └── pom.xml │ ├── README.md │ └── pom.xml ├── 3-identity-provisioning │ ├── 3.1-role-based │ │ ├── README.md │ │ └── pom.xml │ ├── 3.2-rule-based │ │ ├── README.md │ │ └── pom.xml │ ├── README.md │ └── pom.xml ├── 4-single-sign-on │ ├── 4.1-sso-for-web-app │ │ ├── 4.1.1-sso-with-saml │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── identity │ │ │ │ │ └── scenarios │ │ │ │ │ └── sso │ │ │ │ │ └── test │ │ │ │ │ └── saml │ │ │ │ │ ├── SAMLSSOBySPConfigTestCase.java │ │ │ │ │ ├── SAMLSSODataPopulator.java │ │ │ │ │ └── SAMLSSOWithExternalAppTestCase.java │ │ │ │ └── resources │ │ │ │ ├── log4j.properties │ │ │ │ ├── service-providers │ │ │ │ ├── sso-saml-app-2.xml │ │ │ │ └── sso-saml-app.xml │ │ │ │ ├── testng.xml │ │ │ │ └── users │ │ │ │ ├── super-tenant-user-2.json │ │ │ │ ├── super-tenant-user-3.json │ │ │ │ └── super-tenant-user.json │ │ ├── 4.1.2-saml-eidas │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 4.1.3-saml-2-artifact-binding │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 4.1.4-sso-with-oidc │ │ │ ├── 4.1.4.1-dcr │ │ │ │ ├── README.md │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── wso2 │ │ │ │ │ │ └── identity │ │ │ │ │ │ └── scenarios │ │ │ │ │ │ └── sso │ │ │ │ │ │ └── test │ │ │ │ │ │ └── dcr │ │ │ │ │ │ ├── DCRTestCase.java │ │ │ │ │ │ └── util │ │ │ │ │ │ └── Constants.java │ │ │ │ │ └── resources │ │ │ │ │ ├── log4j.properties │ │ │ │ │ ├── registration-requests │ │ │ │ │ ├── request1.json │ │ │ │ │ └── request2.json │ │ │ │ │ ├── testng.xml │ │ │ │ │ └── update-requests │ │ │ │ │ ├── request1.json │ │ │ │ │ └── request2.json │ │ │ ├── 4.1.4.2-request-object-support │ │ │ │ ├── README.md │ │ │ │ └── pom.xml │ │ │ ├── 4.1.4.3-basic-profile │ │ │ │ ├── README.md │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── test │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── wso2 │ │ │ │ │ │ └── identity │ │ │ │ │ │ └── scenarios │ │ │ │ │ │ └── sso │ │ │ │ │ │ └── test │ │ │ │ │ │ └── oidc │ │ │ │ │ │ └── OIDCSSOTestCase.java │ │ │ │ │ └── resources │ │ │ │ │ ├── dcr-requests │ │ │ │ │ ├── dcr-request-1.json │ │ │ │ │ └── dcr-request-2.json │ │ │ │ │ ├── log4j.properties │ │ │ │ │ └── testng.xml │ │ │ ├── 4.1.4.4-implicit-profile │ │ │ │ ├── README.md │ │ │ │ └── pom.xml │ │ │ ├── 4.1.4.5-hybrid-profile │ │ │ │ ├── README.md │ │ │ │ └── pom.xml │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 4.1.5-sso-with-ws-federation │ │ │ ├── README.md │ │ │ ├── TestCases.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── identity │ │ │ │ │ └── scenarios │ │ │ │ │ └── sso │ │ │ │ │ └── test │ │ │ │ │ └── ws │ │ │ │ │ └── fed │ │ │ │ │ └── sts │ │ │ │ │ └── TestPassiveSTS.java │ │ │ │ └── resources │ │ │ │ ├── log4j.properties │ │ │ │ ├── testng.xml │ │ │ │ └── users │ │ │ │ └── super-tenant-user.json │ │ ├── 4.1.6-sso-with-cross-protocol │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 4.1.7-sso-with-end-user-consent │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── README.md │ │ └── pom.xml │ ├── 4.2-sso-for-mobile │ │ ├── README.md │ │ └── pom.xml │ ├── 4.3-sso-for-spa │ │ ├── README.md │ │ └── pom.xml │ ├── 4.4-application-management │ │ ├── 4.4.1-soap-apis │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── identity │ │ │ │ │ └── scenarios │ │ │ │ │ └── test │ │ │ │ │ └── ApplicationManagementTestCase.java │ │ │ │ └── resources │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── README.md │ │ └── pom.xml │ ├── README.md │ ├── pom.xml │ └── test.sh ├── 5-sso-with-identity-federation │ ├── 5.1-login-with-standard-protocols │ │ ├── README.md │ │ └── pom.xml │ ├── 5.2-login-with-social-authenticators │ │ ├── README.md │ │ └── pom.xml │ ├── 5.3-federation-proxy │ │ ├── README.md │ │ └── pom.xml │ ├── 5.4-git-provisioning-to-identity-server │ │ ├── README.md │ │ └── pom.xml │ ├── 5.5-git-provisioning-to-cloud-server │ │ ├── README.md │ │ └── pom.xml │ ├── README.md │ └── pom.xml ├── 6-adaptive-and-strong-authentication │ ├── 6.1-multi-options-authentication │ │ ├── 6.1.1-single-sign-on-with-multiple-local-authentications │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 6.1.2-single-sign-on-with-multiple-local-authentications-and-federated-authentications │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── README.md │ │ └── pom.xml │ ├── 6.2-multi-factor-authentication │ │ ├── README.md │ │ └── pom.xml │ ├── 6.3-adaptive-authentication │ │ ├── 6.3.1-role-based-adaptive-authentication │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 6.3.10-use-dynamic-prompt-with-adaptive-authentication │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 6.3.2-user-age-based-adaptive-authentication │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 6.3.3-tenant-based-adaptive-authentication │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 6.3.4-user-store-based-adaptive-authentication │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 6.3.5-ip-based-adaptive-authentication │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 6.3.6-new-device-based-adaptive-authentication │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 6.3.7-acr-based-adaptive-authentication │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 6.3.8-risk-based-adaptive-authentication │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 6.3.9-use-wso2-stream-processor-for-adaptive-authentication │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── README.md │ │ └── pom.xml │ ├── README.md │ └── pom.xml ├── 7-single-sign-on-with-controlled-access │ ├── 7.1-manage-access-with-fine-grained-policies │ │ ├── 7.1.1-allow-login-to-an-application-for-a-user-who-has-a-particular-role-only │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 7.1.2-allow-login-to-an-application-when-a-defined-time-duration-only │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── README.md │ │ └── pom.xml │ ├── README.md │ └── pom.xml ├── 8-single-sign-on-with-delegated-access-control │ ├── 8.1-single-sign-on-with-saml-and-use-saml-grant-bearer │ │ ├── README.md │ │ └── pom.xml │ ├── 8.2-jwt-bearer │ │ ├── README.md │ │ └── pom.xml │ ├── README.md │ └── pom.xml ├── 9-access-delegation │ ├── 9.1-access-delegation-with-end-user-authorization │ │ ├── 9.1.1-authorization-code-grant-flow │ │ │ ├── README.md │ │ │ ├── TestCases.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── identity │ │ │ │ │ └── scenarios │ │ │ │ │ └── access │ │ │ │ │ └── delegation │ │ │ │ │ └── oauth2 │ │ │ │ │ └── code │ │ │ │ │ └── OAuth2AuthorizationCodeGrantTest.java │ │ │ │ └── resources │ │ │ │ ├── dcr-requests │ │ │ │ └── dcr-request-1.json │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── 9.1.10-self-contained-access-token-as-authorization-grant │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── identity │ │ │ │ │ └── scenarios │ │ │ │ │ └── access │ │ │ │ │ └── delegation │ │ │ │ │ └── oauth2 │ │ │ │ │ └── selfcontainedtoken │ │ │ │ │ ├── OAuth2SelfContainedTokenCodeGrantTest.java │ │ │ │ │ ├── OAuth2SelfContainedTokenImplicitGrantTest.java │ │ │ │ │ └── OAuth2SelfContainedTokenPasswordGrantTest.java │ │ │ │ └── resources │ │ │ │ ├── log4j.properties │ │ │ │ ├── service-providers │ │ │ │ ├── selfcontainedtoken-code-grant.xml │ │ │ │ ├── selfcontainedtoken-implicit-grant.xml │ │ │ │ └── selfcontainedtoken-password-grant.xml │ │ │ │ └── testng.xml │ │ ├── 9.1.2-authorization-code-grant-flow-with-pkce │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── identity │ │ │ │ │ └── scenarios │ │ │ │ │ └── access │ │ │ │ │ └── delegation │ │ │ │ │ └── oauth2 │ │ │ │ │ └── code │ │ │ │ │ └── pkce │ │ │ │ │ └── OAuth2AuthorizationCodeGrantWithPKCES256Test.java │ │ │ │ └── resources │ │ │ │ ├── dcr-requests │ │ │ │ └── dcr-request-1.json │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── 9.1.3-authorization-code-grant-flow-with-private-key-jwt-client-authentication │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 9.1.4-authorization-code-grant-flow-with-mutual-tls-client-authentication │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── 9.1.5-implicit-grant-flow │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── identity │ │ │ │ │ └── scenarios │ │ │ │ │ └── access │ │ │ │ │ └── delegation │ │ │ │ │ └── oauth2 │ │ │ │ │ └── implicit │ │ │ │ │ └── OAuth2ImplicitGrantTest.java │ │ │ │ └── resources │ │ │ │ ├── dcr-requests │ │ │ │ └── dcr-request-1.json │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── 9.1.6-password-grant-flow │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── identity │ │ │ │ │ └── scenarios │ │ │ │ │ └── access │ │ │ │ │ └── delegation │ │ │ │ │ └── oauth2 │ │ │ │ │ └── password │ │ │ │ │ └── OAuth2PasswordGrantTest.java │ │ │ │ └── resources │ │ │ │ ├── dcr-requests │ │ │ │ └── dcr-request-1.json │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── 9.1.7-client-credentials-grant-flow │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── identity │ │ │ │ │ └── scenarios │ │ │ │ │ └── access │ │ │ │ │ └── delegation │ │ │ │ │ └── oauth2 │ │ │ │ │ └── clientcred │ │ │ │ │ └── OAuth2ClientCredentialsGrantTest.java │ │ │ │ └── resources │ │ │ │ ├── dcr-requests │ │ │ │ └── dcr-request-1.json │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── 9.1.8-refresh-grant-flow │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── wso2 │ │ │ │ │ └── identity │ │ │ │ │ └── scenarios │ │ │ │ │ └── access │ │ │ │ │ └── delegation │ │ │ │ │ └── oauth2 │ │ │ │ │ └── refreshtoken │ │ │ │ │ ├── OAuth2RefreshTokenAuthorizationGrantTest.java │ │ │ │ │ └── OAuth2RefreshTokenPasswordGrantTest.java │ │ │ │ └── resources │ │ │ │ ├── dcr-requests │ │ │ │ ├── dcr-request-1.json │ │ │ │ └── dcr-request-2.json │ │ │ │ ├── log4j.properties │ │ │ │ └── testng.xml │ │ ├── 9.1.9-revoke-authorization-grant │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── README.md │ │ └── pom.xml │ ├── 9.2-access-delegation-with-user-managed-access │ │ ├── README.md │ │ └── pom.xml │ ├── README.md │ └── pom.xml ├── README.md ├── code-coverage │ ├── code-coverage.sh │ └── pom.xml ├── pom.xml ├── scenarios-commons │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── wso2 │ │ │ └── identity │ │ │ └── scenarios │ │ │ └── commons │ │ │ ├── HTTPCommonClient.java │ │ │ ├── OAuth2CommonClient.java │ │ │ ├── SAML2SSOTestBase.java │ │ │ ├── SAMLConfig.java │ │ │ ├── SAMLSSOExternalAppTestClient.java │ │ │ ├── SCIM2CommonClient.java │ │ │ ├── SSOCommonClient.java │ │ │ ├── SSOCommonClientForSAML.java │ │ │ ├── SSOTestBase.java │ │ │ ├── ScenarioTestBase.java │ │ │ ├── ScenarioTestException.java │ │ │ ├── TestConfig.java │ │ │ ├── TestUserMode.java │ │ │ ├── clients │ │ │ ├── Idp │ │ │ │ └── IdentityProviderMgtServiceClient.java │ │ │ ├── UserManagementClient.java │ │ │ ├── application │ │ │ │ └── mgt │ │ │ │ │ └── ApplicationManagementServiceClient.java │ │ │ ├── claims │ │ │ │ ├── ClaimManagementServiceClient.java │ │ │ │ └── ClaimMetadataManagementServiceClient.java │ │ │ ├── login │ │ │ │ └── AuthenticatorClient.java │ │ │ ├── oauth │ │ │ │ └── OauthAdminClient.java │ │ │ ├── sso │ │ │ │ └── saml │ │ │ │ │ └── SAMLSSOConfigServiceClient.java │ │ │ └── usermgt │ │ │ │ └── remote │ │ │ │ └── RemoteUserStoreManagerServiceClient.java │ │ │ ├── data │ │ │ └── DeploymentDataHolder.java │ │ │ ├── listeners │ │ │ └── IdentityScenarioTestListener.java │ │ │ ├── security │ │ │ ├── SSOAgentX509Credential.java │ │ │ ├── SSOAgentX509KeyStoreCredential.java │ │ │ └── X509CredentialImpl.java │ │ │ └── util │ │ │ ├── ApplicationUtil.java │ │ │ ├── AuthenticateStubUtil.java │ │ │ ├── Constants.java │ │ │ ├── DataExtractUtil.java │ │ │ ├── DeploymentUtil.java │ │ │ ├── IdentityScenarioUtil.java │ │ │ ├── OAuth2Constants.java │ │ │ ├── SAMLSSOUtil.java │ │ │ ├── SCIMProvisioningUtil.java │ │ │ ├── SSOConstants.java │ │ │ └── SSOUtil.java │ │ └── resources │ │ ├── keystores │ │ └── products │ │ │ └── wso2carbon.p12 │ │ └── log4j.properties ├── test-resources │ ├── README.md │ ├── deploy-samples-linux.sh │ └── deploy-samples-mac.sh └── test.sh ├── release-guidelines.md ├── release-notes.html └── usecases ├── common └── client-truststore.p12 ├── uc.sh ├── uc1 ├── master-datasources.xml ├── readme └── user-mgt.xml ├── uc2 ├── master-datasources.xml ├── readme └── user-mgt.xml ├── uc3 ├── master-datasources.xml ├── readme └── user-mgt.xml └── uc5 ├── master-datasources.xml ├── readme └── user-mgt.xml /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/doc-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/ISSUE_TEMPLATE/doc-issues.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/improvement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/ISSUE_TEMPLATE/improvement.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/ISSUE_TEMPLATE/new-feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/task.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/ISSUE_TEMPLATE/task.yml -------------------------------------------------------------------------------- /.github/claude/system_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/claude/system_prompt.txt -------------------------------------------------------------------------------- /.github/scripts/pr-builder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/scripts/pr-builder.sh -------------------------------------------------------------------------------- /.github/scripts/version_property_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/scripts/version_property_finder.py -------------------------------------------------------------------------------- /.github/workflows/add-team-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/workflows/add-team-label.yaml -------------------------------------------------------------------------------- /.github/workflows/auto_lable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/workflows/auto_lable.yml -------------------------------------------------------------------------------- /.github/workflows/claude_runner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/workflows/claude_runner.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-updater-next.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/workflows/dependency-updater-next.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-updater.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/workflows/dependency-updater.yml -------------------------------------------------------------------------------- /.github/workflows/fapi-oidc-conformance-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/workflows/fapi-oidc-conformance-test.yml -------------------------------------------------------------------------------- /.github/workflows/fork-branch-deleter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/workflows/fork-branch-deleter.yml -------------------------------------------------------------------------------- /.github/workflows/fossa-scanner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/workflows/fossa-scanner.yaml -------------------------------------------------------------------------------- /.github/workflows/integration-test-runner-JDK11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/workflows/integration-test-runner-JDK11.yml -------------------------------------------------------------------------------- /.github/workflows/integration-test-runner-jdk17.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/workflows/integration-test-runner-jdk17.yml -------------------------------------------------------------------------------- /.github/workflows/integration-test-runner-jdk21.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/workflows/integration-test-runner-jdk21.yml -------------------------------------------------------------------------------- /.github/workflows/label-doc-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/workflows/label-doc-issues.yml -------------------------------------------------------------------------------- /.github/workflows/migration-automation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/workflows/migration-automation.yml -------------------------------------------------------------------------------- /.github/workflows/oidc-conformance-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/workflows/oidc-conformance-test.yml -------------------------------------------------------------------------------- /.github/workflows/on-pr-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/workflows/on-pr-merge.yml -------------------------------------------------------------------------------- /.github/workflows/sync-prs-to-next.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.github/workflows/sync-prs-to-next.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/README.txt -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/wso2_codestyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/docs/wso2_codestyle.xml -------------------------------------------------------------------------------- /etc/JavadocStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/etc/JavadocStyles.css -------------------------------------------------------------------------------- /etc/copyright.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/etc/copyright.html -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/issue_template.md -------------------------------------------------------------------------------- /jmeter-tests/passive-sts/sign-in.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/jmeter-tests/passive-sts/sign-in.jmx -------------------------------------------------------------------------------- /jmeter-tests/saml2/saml2-sso.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/jmeter-tests/saml2/saml2-sso.jmx -------------------------------------------------------------------------------- /legal/base-LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/legal/base-LICENCE.txt -------------------------------------------------------------------------------- /legal/identity-provider-LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/legal/identity-provider-LICENCE.txt -------------------------------------------------------------------------------- /legal/idp-sample-LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/legal/idp-sample-LICENCE.txt -------------------------------------------------------------------------------- /legal/openid4java-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/legal/openid4java-LICENSE.txt -------------------------------------------------------------------------------- /legal/struts-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/legal/struts-LICENSE.txt -------------------------------------------------------------------------------- /legal/token-verifier-core-LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/legal/token-verifier-core-LICENCE.txt -------------------------------------------------------------------------------- /legal/usermanager-core-LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/legal/usermanager-core-LICENCE.txt -------------------------------------------------------------------------------- /modules/agents/mobile-proxy-idp/iOS/WSO2 IdPProxy/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/agents/mobile-proxy-idp/iOS/WSO2 IdPProxy/.DS_Store -------------------------------------------------------------------------------- /modules/agents/mobile-proxy-idp/iOS/WSO2 IdPProxy/AZone/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/agents/mobile-proxy-idp/iOS/WSO2 IdPProxy/AZone/.DS_Store -------------------------------------------------------------------------------- /modules/agents/mobile-proxy-idp/iOS/WSO2 IdPProxy/IdPProxy Application/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/agents/mobile-proxy-idp/iOS/WSO2 IdPProxy/IdPProxy Application/.DS_Store -------------------------------------------------------------------------------- /modules/agents/mobile-proxy-idp/iOS/WSO2 IdPProxy/eBuy/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/agents/mobile-proxy-idp/iOS/WSO2 IdPProxy/eBuy/.DS_Store -------------------------------------------------------------------------------- /modules/api-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/api-resources/README.md -------------------------------------------------------------------------------- /modules/api-resources/api-resources-full/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/api-resources/api-resources-full/pom.xml -------------------------------------------------------------------------------- /modules/api-resources/api-resources-full/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/api-resources/api-resources-full/src/main/webapp/META-INF/context.xml -------------------------------------------------------------------------------- /modules/api-resources/api-resources-full/src/main/webapp/META-INF/webapp-classloading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/api-resources/api-resources-full/src/main/webapp/META-INF/webapp-classloading.xml -------------------------------------------------------------------------------- /modules/api-resources/api-resources-full/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/api-resources/api-resources-full/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /modules/api-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/api-resources/pom.xml -------------------------------------------------------------------------------- /modules/authenticators/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/authenticators/pom.xml -------------------------------------------------------------------------------- /modules/connectors/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/connectors/pom.xml -------------------------------------------------------------------------------- /modules/distribution/axis2_config_change.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/axis2_config_change.xml.j2 -------------------------------------------------------------------------------- /modules/distribution/conf/bps/bps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/conf/bps/bps.xml -------------------------------------------------------------------------------- /modules/distribution/conf/card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/conf/card.jpg -------------------------------------------------------------------------------- /modules/distribution/conf/policies/authn_group_based_policy_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/conf/policies/authn_group_based_policy_template.xml -------------------------------------------------------------------------------- /modules/distribution/conf/policies/authn_role_based_policy_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/conf/policies/authn_role_based_policy_template.xml -------------------------------------------------------------------------------- /modules/distribution/conf/policies/authn_scope_based_policy_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/conf/policies/authn_scope_based_policy_template.xml -------------------------------------------------------------------------------- /modules/distribution/conf/policies/authn_time_and_role_based_policy_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/conf/policies/authn_time_and_role_based_policy_template.xml -------------------------------------------------------------------------------- /modules/distribution/conf/policies/authn_time_and_scope_based_policy_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/conf/policies/authn_time_and_scope_based_policy_template.xml -------------------------------------------------------------------------------- /modules/distribution/conf/policies/authn_time_and_user_claim_based_policy_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/conf/policies/authn_time_and_user_claim_based_policy_template.xml -------------------------------------------------------------------------------- /modules/distribution/conf/policies/authn_time_and_user_store_based_policy_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/conf/policies/authn_time_and_user_store_based_policy_template.xml -------------------------------------------------------------------------------- /modules/distribution/conf/policies/authn_time_based_policy_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/conf/policies/authn_time_based_policy_template.xml -------------------------------------------------------------------------------- /modules/distribution/conf/policies/authn_user_claim_based_policy_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/conf/policies/authn_user_claim_based_policy_template.xml -------------------------------------------------------------------------------- /modules/distribution/conf/policies/authn_user_store_based_policy_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/conf/policies/authn_user_store_based_policy_template.xml -------------------------------------------------------------------------------- /modules/distribution/conf/policies/eval_permission_tree_policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/conf/policies/eval_permission_tree_policy.xml -------------------------------------------------------------------------------- /modules/distribution/conf/policies/provisioning_role_based_policy_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/conf/policies/provisioning_role_based_policy_template.xml -------------------------------------------------------------------------------- /modules/distribution/conf/policies/provisioning_time_and_role_based_policy_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/conf/policies/provisioning_time_and_role_based_policy_template.xml -------------------------------------------------------------------------------- /modules/distribution/conf/policies/provisioning_time_and_user_claim_based_policy_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/conf/policies/provisioning_time_and_user_claim_based_policy_template.xml -------------------------------------------------------------------------------- /modules/distribution/conf/policies/provisioning_time_based_policy_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/conf/policies/provisioning_time_based_policy_template.xml -------------------------------------------------------------------------------- /modules/distribution/conf/policies/provisioning_user_claim_based_policy_template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/conf/policies/provisioning_user_claim_based_policy_template.xml -------------------------------------------------------------------------------- /modules/distribution/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/pom.xml -------------------------------------------------------------------------------- /modules/distribution/registry_config_change.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/registry_config_change.xml.j2 -------------------------------------------------------------------------------- /modules/distribution/src/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/assembly/bin.xml -------------------------------------------------------------------------------- /modules/distribution/src/assembly/dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/assembly/dist.xml -------------------------------------------------------------------------------- /modules/distribution/src/assembly/filter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/assembly/filter.properties -------------------------------------------------------------------------------- /modules/distribution/src/assembly/src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/assembly/src.xml -------------------------------------------------------------------------------- /modules/distribution/src/bin/adaptive.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/bin/adaptive.bat -------------------------------------------------------------------------------- /modules/distribution/src/bin/adaptive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/bin/adaptive.sh -------------------------------------------------------------------------------- /modules/distribution/src/bin/fips.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/bin/fips.bat -------------------------------------------------------------------------------- /modules/distribution/src/bin/fips.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/bin/fips.sh -------------------------------------------------------------------------------- /modules/distribution/src/bin/openssl-tls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/bin/openssl-tls.sh -------------------------------------------------------------------------------- /modules/distribution/src/repository/resources/conf/carbon.properties: -------------------------------------------------------------------------------- 1 | org.wso2.CipherTransformation=AES/GCM/NoPadding 2 | -------------------------------------------------------------------------------- /modules/distribution/src/repository/resources/conf/catalina-server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/repository/resources/conf/catalina-server.xml -------------------------------------------------------------------------------- /modules/distribution/src/repository/resources/conf/catalina.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/repository/resources/conf/catalina.properties -------------------------------------------------------------------------------- /modules/distribution/src/repository/resources/conf/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/repository/resources/conf/default.json -------------------------------------------------------------------------------- /modules/distribution/src/repository/resources/conf/deployment.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/repository/resources/conf/deployment.toml -------------------------------------------------------------------------------- /modules/distribution/src/repository/resources/conf/infer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/repository/resources/conf/infer.json -------------------------------------------------------------------------------- /modules/distribution/src/repository/resources/conf/key-mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/repository/resources/conf/key-mappings.json -------------------------------------------------------------------------------- /modules/distribution/src/repository/resources/conf/log4j2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/repository/resources/conf/log4j2.properties -------------------------------------------------------------------------------- /modules/distribution/src/repository/resources/conf/secret-conf.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/repository/resources/conf/secret-conf.properties -------------------------------------------------------------------------------- /modules/distribution/src/repository/resources/conf/templates/repository/conf/tomcat/catalina-server.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/repository/resources/conf/templates/repository/conf/tomcat/catalina-server.xml.j2 -------------------------------------------------------------------------------- /modules/distribution/src/repository/resources/identity/apple/attestation/apple_attestation_root_ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/repository/resources/identity/apple/attestation/apple_attestation_root_ca.pem -------------------------------------------------------------------------------- /modules/distribution/src/repository/resources/pages/samlsso_federate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/repository/resources/pages/samlsso_federate.html -------------------------------------------------------------------------------- /modules/distribution/src/repository/resources/security/client-truststore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/repository/resources/security/client-truststore.p12 -------------------------------------------------------------------------------- /modules/distribution/src/repository/resources/security/wso2carbon.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/repository/resources/security/wso2carbon.p12 -------------------------------------------------------------------------------- /modules/distribution/src/repository/resources/shindig/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/src/repository/resources/shindig/index.jsp -------------------------------------------------------------------------------- /modules/distribution/updates/product.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/distribution/updates/product.txt -------------------------------------------------------------------------------- /modules/features/etc/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/etc/feature.properties -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/pom.xml -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/LICENSE -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/acs.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/acs.jag -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/apis/gadget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/apis/gadget.json -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/apis/ues.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/apis/ues.jag -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/app.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/authenticationHandler.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/authenticationHandler.jag -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/conf/site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/conf/site.json -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/controllers/wsUtil.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/controllers/wsUtil.jag -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/css/bootstrap.min.css -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/css/dialog_bx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/css/dialog_bx.css -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/css/font-awesome-ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/css/font-awesome-ie7.css -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/css/font-awesome.css -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/css/font-awesome.min.css -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/css/localstyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/css/localstyles.css -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/css/navigation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/css/navigation.css -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/css/styles.css -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/font/Lato-Bol-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/font/Lato-Bol-webfont.eot -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/font/Lato-Bol-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/font/Lato-Bol-webfont.svg -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/font/Lato-Bol-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/font/Lato-Bol-webfont.ttf -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/font/Lato-Bol-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/font/Lato-Bol-webfont.woff -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/font/Lato-Reg-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/font/Lato-Reg-webfont.eot -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/font/Lato-Reg-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/font/Lato-Reg-webfont.svg -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/font/Lato-Reg-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/font/Lato-Reg-webfont.ttf -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/font/Lato-Reg-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/font/Lato-Reg-webfont.woff -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/img/body-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/img/body-back.png -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/img/container-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/img/container-back.png -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/img/designer-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/img/designer-sprite.png -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/img/dummy-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/img/dummy-grid.png -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/img/login-side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/img/login-side.png -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/img/logo.png -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/img/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/img/logo2.png -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/img/repeat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/img/repeat.jpg -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/index.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/index.jag -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/jaggery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/jaggery.conf -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/UESContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/UESContainer.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/bootstrap.min.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/d_main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/d_main.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/d_modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/d_modal.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/handlebars.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/jquery.validate.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/main.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/modal.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/navigation.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/respond.min.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/shindig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/js/shindig.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/locale_default.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/locale_en.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/login.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/login.jag -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/logout.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/logout.jag -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/modules/__user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/modules/__user.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/modules/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/modules/server.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/modules/ues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/modules/ues.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/my_profiles.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/my_profiles.jag -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/refresh.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/refresh.jag -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/samlsso.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/samlsso.jag -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/self_registration.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/self_registration.jag -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/session_manager.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/session_manager.jag -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/ui-components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/ui-components.json -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/userAssociationHandler.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/userAssociationHandler.jag -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/util/constants.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/util/constants.jag -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/util/utility.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/dashboard/util/utility.jag -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/p2.inf -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/conf/site.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/conf/site.json -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/error_pages/error.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/error_pages/error.jag -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/account-recovery/js/ui/js/main.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/approvals/gadget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/approvals/gadget.xml -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/approvals/index.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/approvals/index.jag -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/approvals/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/approvals/js/main.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/approvals/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/approvals/js/modal.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/backup_otp/gadget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/backup_otp/gadget.xml -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/backup_otp/index.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/backup_otp/index.jag -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/backup_otp/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/backup_otp/js/main.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/backup_otp/js/ui/js/main.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/certificate_authority/js/pagination.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/certificate_authority/js/ui/js/main.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/connected_accounts/js/ui/js/main.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/consent_management/js/ui/js/vendor/jstree/src/outro.js: -------------------------------------------------------------------------------- 1 | })); -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/identity_management/js/ui/js/main.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/pwd_change/gadget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/pwd_change/gadget.xml -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/pwd_change/index.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/pwd_change/index.jag -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/pwd_change/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/pwd_change/js/main.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/pwd_change/js/ui/js/main.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/scim_providers/js/ui/js/main.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/user_auth_apps/js/ui/js/main.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/gadgets/user_profile/js/ui/js/main.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/index.jag: -------------------------------------------------------------------------------- 1 | <% 2 | var caramel; 3 | 4 | 5 | (function () { 6 | 7 | 8 | }()); 9 | %> 10 | -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/jaggery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/jaggery.conf -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/css/error.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/css/error.css -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/css/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/css/ie.css -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/css/jslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/css/jslider.css -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/css/styles.css -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/css/theme.css -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/favicon.ico -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/helpers/portal-dashboard-navigation.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/img/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/img/banner.png -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/img/crop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/img/crop.gif -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/img/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/img/delete.gif -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/img/dialogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/img/dialogs.png -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/img/logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/img/logo-1.png -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/img/logo.png -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/img/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/img/resize.png -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/img/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/img/star.png -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/img/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/img/toolbar.png -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/js/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/js/alert.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/js/async.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/js/async.min.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/js/autosave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/js/autosave.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/js/bootstrap.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/js/diff/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/js/diff/diff.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/js/elfinder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/js/elfinder.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/js/ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/js/ie.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/js/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/js/intro.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/js/shindig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/js/shindig.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/js/theme.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/js/tmpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/js/tmpl.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/pages/error.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/pages/error.hbs -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/themes/portal/theme.js -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/util/constants.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/util/constants.jag -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/util/utility.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/portal/util/utility.jag -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/sp_dashboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.jaggery.apps.feature/src/main/resources/sp_dashboard.xml -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.styles.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.styles.feature/pom.xml -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.ui.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.ui.feature/pom.xml -------------------------------------------------------------------------------- /modules/features/org.wso2.identity.utils.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/org.wso2.identity.utils.feature/pom.xml -------------------------------------------------------------------------------- /modules/features/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/features/pom.xml -------------------------------------------------------------------------------- /modules/integration-ui-templates/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration-ui-templates/pom.xml -------------------------------------------------------------------------------- /modules/integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/pom.xml -------------------------------------------------------------------------------- /modules/integration/tests-common/admin-clients/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-common/admin-clients/pom.xml -------------------------------------------------------------------------------- /modules/integration/tests-common/extensions/pom.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/integration/tests-common/integration-test-utils/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-common/integration-test-utils/pom.xml -------------------------------------------------------------------------------- /modules/integration/tests-common/integration-test-utils/src/main/java/org/wso2/identity/integration/common/utils/README.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/integration/tests-common/jacoco-report-generator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-common/jacoco-report-generator/pom.xml -------------------------------------------------------------------------------- /modules/integration/tests-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-common/pom.xml -------------------------------------------------------------------------------- /modules/integration/tests-common/ui-pages/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-common/ui-pages/pom.xml -------------------------------------------------------------------------------- /modules/integration/tests-common/ui-pages/src/main/resources/mapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-common/ui-pages/src/main/resources/mapper.properties -------------------------------------------------------------------------------- /modules/integration/tests-cypress-integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-cypress-integration/pom.xml -------------------------------------------------------------------------------- /modules/integration/tests-cypress-integration/tests-cypress-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-cypress-integration/tests-cypress-common/pom.xml -------------------------------------------------------------------------------- /modules/integration/tests-cypress-integration/tests-cypress-common/src/main/resources/test-suite-runner.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-cypress-integration/tests-cypress-common/src/main/resources/test-suite-runner.bat -------------------------------------------------------------------------------- /modules/integration/tests-cypress-integration/tests-cypress-common/src/main/resources/test-suite-runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-cypress-integration/tests-cypress-common/src/main/resources/test-suite-runner.sh -------------------------------------------------------------------------------- /modules/integration/tests-cypress-integration/tests-identity-apps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-cypress-integration/tests-identity-apps/pom.xml -------------------------------------------------------------------------------- /modules/integration/tests-cypress-integration/tests-identity-apps/src/test/resources/automation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-cypress-integration/tests-identity-apps/src/test/resources/automation.xml -------------------------------------------------------------------------------- /modules/integration/tests-cypress-integration/tests-identity-apps/src/test/resources/automation_mapping.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-cypress-integration/tests-identity-apps/src/test/resources/automation_mapping.xsd -------------------------------------------------------------------------------- /modules/integration/tests-cypress-integration/tests-identity-apps/src/test/resources/emma.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-cypress-integration/tests-identity-apps/src/test/resources/emma.properties -------------------------------------------------------------------------------- /modules/integration/tests-cypress-integration/tests-identity-apps/src/test/resources/filters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-cypress-integration/tests-identity-apps/src/test/resources/filters.txt -------------------------------------------------------------------------------- /modules/integration/tests-cypress-integration/tests-identity-apps/src/test/resources/instrumentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-cypress-integration/tests-identity-apps/src/test/resources/instrumentation.txt -------------------------------------------------------------------------------- /modules/integration/tests-cypress-integration/tests-identity-apps/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-cypress-integration/tests-identity-apps/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /modules/integration/tests-cypress-integration/tests-identity-apps/src/test/resources/mapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-cypress-integration/tests-identity-apps/src/test/resources/mapper.properties -------------------------------------------------------------------------------- /modules/integration/tests-cypress-integration/tests-identity-apps/src/test/resources/testng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-cypress-integration/tests-identity-apps/src/test/resources/testng.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/pom.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/pom.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/RESTAPIErrors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/RESTAPIErrors.properties -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/actions/response/error-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/actions/response/error-response.json -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/actions/response/failure-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/actions/response/failure-response.json -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/actions/response/pre-update-password-response.json: -------------------------------------------------------------------------------- 1 | { 2 | "actionStatus": "SUCCESS" 3 | } 4 | -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/actions/response/pre-update-profile-response.json: -------------------------------------------------------------------------------- 1 | { 2 | "actionStatus": "SUCCESS" 3 | } 4 | -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/adaptive.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/adaptive.bat -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/adaptive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/adaptive.sh -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/apiSwaggerFiles/scim2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/apiSwaggerFiles/scim2.yaml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/dbscripts/h2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/dbscripts/h2.sql -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/default-identity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/default-identity.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/email/email_otp_config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/email/email_otp_config.toml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/identityMgt/axis2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/identityMgt/axis2.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/identity_hash_enabled.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/identity_hash_enabled.toml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/identity_new_resource.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/identity_new_resource.toml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/is-default-schema.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/is-default-schema.zip -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/javarp.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/javarp.cer -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/oauth/oauth-app-build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/oauth/oauth-app-build.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/oauth/playground2/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/oauth/playground2/web.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/oauth/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/oauth/web.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/oidc/oidc-sso-app-build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/oidc/oidc-sso-app-build.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/saml/idp-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/saml/idp-metadata.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/saml/registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/saml/registry.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/saml/saml-app-build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/saml/saml-app-build.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/saml/sp-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/saml/sp-metadata.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/userMgt/bulkUserImport.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/userMgt/bulkUserImport.csv -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/artifacts/IS/userMgt/carbon15051/carbon.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/automation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/automation.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/automationSchema.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/automationSchema.xsd -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/axis2config/axis2_client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/axis2config/axis2_client.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/backupIdentity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/backupIdentity.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/group/add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/group/add.json -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/group/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/group/delete.json -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/group/patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/group/patch.json -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/group/replace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/group/replace.json -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/role/add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/role/add.json -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/role/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/role/delete.json -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/role/patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/role/patch.json -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/role/replace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/role/replace.json -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/user/add.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/user/add.json -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/user/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/user/delete.json -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/user/patch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/user/patch.json -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/user/replace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/bulk/requests/user/replace.json -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/carbon.properties: -------------------------------------------------------------------------------- 1 | #org.wso2.CipherTransformation=RSA/ECB/OAEPwithSHA1andMGF1Padding 2 | -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/claim-selective-storage-test-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/claim-selective-storage-test-user.json -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/client/modules/rampart-1.6.1-wso2v12.mar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/client/modules/rampart-1.6.1-wso2v12.mar -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/client/modules/rampart-1.6.1-wso2v15.mar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/client/modules/rampart-1.6.1-wso2v15.mar -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/client/modules/rampart-1.6.1-wso2v16.mar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/client/modules/rampart-1.6.1-wso2v16.mar -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/defaultAuthSeq/incorrect_default_seq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/defaultAuthSeq/incorrect_default_seq.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/defaultAuthSeq/valid_default_seq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/defaultAuthSeq/valid_default_seq.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/emma.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/emma.properties -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/filters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/filters.txt -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/identity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/identity.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/instance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/instance.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/instrumentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/instrumentation.txt -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/keystores/products/client-truststore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/keystores/products/client-truststore.p12 -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/keystores/products/wso2carbon.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/keystores/products/wso2carbon.p12 -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/keystores/products/wso2carbon.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/keystores/products/wso2carbon.pem -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/log4j2.properties: -------------------------------------------------------------------------------- 1 | rootLogger = INFO 2 | -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/org/wso2/identity/integration/test/rest/api/server/claim/management/v1/claim-management-add-dialect.json: -------------------------------------------------------------------------------- 1 | { 2 | "dialectURI": "http://dummy.org/claim" 3 | } 4 | -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/org/wso2/identity/integration/test/rest/api/server/claim/management/v1/claim-management-update-dialect.json: -------------------------------------------------------------------------------- 1 | { 2 | "dialectURI": "http://updateddummy.org/claim" 3 | } 4 | -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/org/wso2/identity/integration/test/rest/api/server/configs/v1/update-passive-sts-inbound-auth-configs.json: -------------------------------------------------------------------------------- 1 | { 2 | "enableRequestSigning": true 3 | } 4 | -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/org/wso2/identity/integration/test/rest/api/server/email/template/v2/add-email-template-type-conflict-request.json: -------------------------------------------------------------------------------- 1 | { 2 | "displayName": "AccountEnable" 3 | } 4 | -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/org/wso2/identity/integration/test/rest/api/server/email/template/v2/add-email-template-type-request.json: -------------------------------------------------------------------------------- 1 | { 2 | "displayName": "TestEmailTemplateType" 3 | } 4 | -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/org/wso2/identity/integration/test/rest/api/server/secret/management/v1/update-secret-type.json: -------------------------------------------------------------------------------- 1 | { 2 | "description" : "updated secret type" 3 | } 4 | -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/org/wso2/identity/integration/test/rest/api/server/workflow/v1/patch-association-operation.json: -------------------------------------------------------------------------------- 1 | { 2 | "operation": "DELETE_USER" 3 | } 4 | -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/org/wso2/identity/integration/test/rest/api/server/workflow/v1/patch-association-workflowId.json: -------------------------------------------------------------------------------- 1 | { 2 | "workflowId": "101" 3 | } 4 | -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/org/wso2/identity/integration/test/rest/api/user/approval/v1/approval-state-template.json: -------------------------------------------------------------------------------- 1 | { 2 | "action":"%s" 3 | } 4 | -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/org/wso2/identity/integration/test/scim2/rest/api/scim2-put-group-permissions.json: -------------------------------------------------------------------------------- 1 | ["/permission/admin/configure/security/usermgt"] 2 | -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/spFile/TestServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/spFile/TestServer.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/spTemplate/TestTemplate1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/spTemplate/TestTemplate1.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/spTemplate/TestTemplate2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/spTemplate/TestTemplate2.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/spTemplate/TestTemplate3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/spTemplate/TestTemplate3.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/spTemplate/TestTemplate4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/spTemplate/TestTemplate4.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/spTemplate/TestTemplate5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/spTemplate/TestTemplate5.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/stsclient/client.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/stsclient/client.properties -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/stsclient/keystore/admin.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/stsclient/keystore/admin.cert -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/stsclient/keystore/wso2carbon.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/stsclient/keystore/wso2carbon.p12 -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/stsclient/messages/RSTR_bearer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/stsclient/messages/RSTR_bearer.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/stsclient/messages/RST_bearer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/stsclient/messages/RST_bearer.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/stsclient/service-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/stsclient/service-policy.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/stsclient/sts-client.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/stsclient/sts-client.bat -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/stsclient/sts-client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/stsclient/sts-client.sh -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/stsclient/sts-policy-signonly.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/stsclient/sts-policy-signonly.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/stsclient/sts-policy-ut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/stsclient/sts-policy-ut.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/testng-server-mgt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/testng-server-mgt.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/testng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/testng.xml -------------------------------------------------------------------------------- /modules/integration/tests-integration/tests-backend/src/test/resources/wso2_com.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-integration/tests-backend/src/test/resources/wso2_com.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/pom.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/java/org/wso2/identity/ui/integration/test/LoginTestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/java/org/wso2/identity/ui/integration/test/LoginTestCase.java -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/artifacts/IS/identityMgt/axis2-default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/artifacts/IS/identityMgt/axis2-default.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/artifacts/IS/identityMgt/axis2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/artifacts/IS/identityMgt/axis2.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/artifacts/IS/javarp.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/artifacts/IS/javarp.cer -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/artifacts/IS/openId/identity-default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/artifacts/IS/openId/identity-default.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/artifacts/IS/openId/identity-skipuserconsent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/artifacts/IS/openId/identity-skipuserconsent.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/artifacts/IS/openId/openid-app-build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/artifacts/IS/openId/openid-app-build.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/artifacts/IS/userMgt/JdbcUserMgtConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/artifacts/IS/userMgt/JdbcUserMgtConfig.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/artifacts/IS/userMgt/bulkUserImport.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/artifacts/IS/userMgt/bulkUserImport.csv -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/artifacts/IS/userMgt/readOnlyLdapUserMgtConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/artifacts/IS/userMgt/readOnlyLdapUserMgtConfig.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/automation.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/automation.properties -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/automation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/automation.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/automation_mapping.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/automation_mapping.xsd -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/axis2config/axis2_client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/axis2config/axis2_client.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/client/modules/addressing-1.6.1-wso2v11.mar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/client/modules/addressing-1.6.1-wso2v11.mar -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/clusters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/clusters.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/emma.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/emma.properties -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/filters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/filters.txt -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/instrumentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/instrumentation.txt -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/keystores/products/client-truststore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/keystores/products/client-truststore.p12 -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/keystores/products/wso2carbon.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/keystores/products/wso2carbon.p12 -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/tenantList.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/tenantList.csv -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/testng-server-mgt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/testng-server-mgt.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/testng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/testng.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/src/test/resources/userList.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/src/test/resources/userList.csv -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/pom.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/artifacts/IS/oidc/playground-app-build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/artifacts/IS/oidc/playground-app-build.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/automation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/automation.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/automation_mapping.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/automation_mapping.xsd -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/axis2config/axis2_client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/axis2config/axis2_client.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/client/modules/rampart-1.6.1-wso2v12.mar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/client/modules/rampart-1.6.1-wso2v12.mar -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/emma.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/emma.properties -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/filters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/filters.txt -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/instrumentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/instrumentation.txt -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/keystores/products/client-truststore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/keystores/products/client-truststore.p12 -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/keystores/products/wso2carbon.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/keystores/products/wso2carbon.p12 -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/mapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/mapper.properties -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario-config.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario1-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario1-policy.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario10-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario10-policy.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario11-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario11-policy.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario12-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario12-policy.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario13-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario13-policy.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario14-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario14-policy.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario15-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario15-policy.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario16-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario16-policy.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario17-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario17-policy.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario2-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario2-policy.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario3-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario3-policy.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario4-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario4-policy.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario5-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario5-policy.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario6-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario6-policy.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario7-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario7-policy.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario8-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario8-policy.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario9-policy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/security/policies/scenario9-policy.xml -------------------------------------------------------------------------------- /modules/integration/tests-ui-integration/tests-ui/src/test/resources/testng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/integration/tests-ui-integration/tests-ui/src/test/resources/testng.xml -------------------------------------------------------------------------------- /modules/local-authenticators/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/local-authenticators/pom.xml -------------------------------------------------------------------------------- /modules/migration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/migration/README.md -------------------------------------------------------------------------------- /modules/oauth2-grant-types/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/oauth2-grant-types/pom.xml -------------------------------------------------------------------------------- /modules/p2-profile-gen/carbon.product: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/p2-profile-gen/carbon.product -------------------------------------------------------------------------------- /modules/p2-profile-gen/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/p2-profile-gen/pom.xml -------------------------------------------------------------------------------- /modules/provisioning-connectors/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/provisioning-connectors/pom.xml -------------------------------------------------------------------------------- /modules/samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/samples/README.md -------------------------------------------------------------------------------- /modules/social-authenticators/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/social-authenticators/pom.xml -------------------------------------------------------------------------------- /modules/styles/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/pom.xml -------------------------------------------------------------------------------- /modules/styles/product/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/product/pom.xml -------------------------------------------------------------------------------- /modules/styles/product/src/main/resources/META-INF/product.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/product/src/main/resources/META-INF/product.xml -------------------------------------------------------------------------------- /modules/styles/product/src/main/resources/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/product/src/main/resources/web/favicon.ico -------------------------------------------------------------------------------- /modules/styles/product/src/main/resources/web/product/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/product/src/main/resources/web/product/about.html -------------------------------------------------------------------------------- /modules/styles/product/src/main/resources/web/styles/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/product/src/main/resources/web/styles/css/main.css -------------------------------------------------------------------------------- /modules/styles/product/src/main/resources/web/styles/images/1px.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/product/src/main/resources/web/styles/images/1px.gif -------------------------------------------------------------------------------- /modules/styles/product/src/main/resources/web/styles/images/back-repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/product/src/main/resources/web/styles/images/back-repeat.png -------------------------------------------------------------------------------- /modules/styles/product/src/main/resources/web/styles/images/is-button-bg-hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/product/src/main/resources/web/styles/images/is-button-bg-hover.gif -------------------------------------------------------------------------------- /modules/styles/product/src/main/resources/web/styles/images/is-header-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/product/src/main/resources/web/styles/images/is-header-bg.gif -------------------------------------------------------------------------------- /modules/styles/product/src/main/resources/web/styles/images/is-header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/product/src/main/resources/web/styles/images/is-header-bg.png -------------------------------------------------------------------------------- /modules/styles/product/src/main/resources/web/styles/images/is-header-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/product/src/main/resources/web/styles/images/is-header-logo.gif -------------------------------------------------------------------------------- /modules/styles/product/src/main/resources/web/styles/images/is-header-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/product/src/main/resources/web/styles/images/is-header-logo.png -------------------------------------------------------------------------------- /modules/styles/product/src/main/resources/web/styles/images/is-header-region-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/product/src/main/resources/web/styles/images/is-header-region-bg.gif -------------------------------------------------------------------------------- /modules/styles/product/src/main/resources/web/styles/images/is-home-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/product/src/main/resources/web/styles/images/is-home-bg.gif -------------------------------------------------------------------------------- /modules/styles/product/src/main/resources/web/styles/images/is-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/product/src/main/resources/web/styles/images/is-logo.png -------------------------------------------------------------------------------- /modules/styles/product/src/main/resources/web/styles/images/is-page-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/product/src/main/resources/web/styles/images/is-page-bg.png -------------------------------------------------------------------------------- /modules/styles/product/src/main/resources/web/styles/images/is-server-menu-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/product/src/main/resources/web/styles/images/is-server-menu-header.png -------------------------------------------------------------------------------- /modules/styles/product/src/main/resources/web/styles/images/menu-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/product/src/main/resources/web/styles/images/menu-back.png -------------------------------------------------------------------------------- /modules/styles/product/src/main/resources/web/styles/images/menu_header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/product/src/main/resources/web/styles/images/menu_header.gif -------------------------------------------------------------------------------- /modules/styles/product/src/main/resources/web/styles/images/menu_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/product/src/main/resources/web/styles/images/menu_header.png -------------------------------------------------------------------------------- /modules/styles/product/src/main/resources/web/styles/images/right-links-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/product/src/main/resources/web/styles/images/right-links-bg.gif -------------------------------------------------------------------------------- /modules/styles/service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/service/pom.xml -------------------------------------------------------------------------------- /modules/styles/service/src/main/resources/META-INF/product.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/service/src/main/resources/META-INF/product.xml -------------------------------------------------------------------------------- /modules/styles/service/src/main/resources/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/service/src/main/resources/web/favicon.ico -------------------------------------------------------------------------------- /modules/styles/service/src/main/resources/web/styles/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/service/src/main/resources/web/styles/css/main.css -------------------------------------------------------------------------------- /modules/styles/service/src/main/resources/web/styles/images/1px.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/service/src/main/resources/web/styles/images/1px.gif -------------------------------------------------------------------------------- /modules/styles/service/src/main/resources/web/styles/images/back-repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/service/src/main/resources/web/styles/images/back-repeat.png -------------------------------------------------------------------------------- /modules/styles/service/src/main/resources/web/styles/images/is-header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/service/src/main/resources/web/styles/images/is-header-bg.png -------------------------------------------------------------------------------- /modules/styles/service/src/main/resources/web/styles/images/is-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/service/src/main/resources/web/styles/images/is-logo.png -------------------------------------------------------------------------------- /modules/styles/service/src/main/resources/web/styles/images/is-server-menu-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/service/src/main/resources/web/styles/images/is-server-menu-header.png -------------------------------------------------------------------------------- /modules/styles/service/src/main/resources/web/styles/images/menu_header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/service/src/main/resources/web/styles/images/menu_header.gif -------------------------------------------------------------------------------- /modules/styles/service/src/main/resources/web/styles/images/menu_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/service/src/main/resources/web/styles/images/menu_header.png -------------------------------------------------------------------------------- /modules/styles/service/src/main/resources/web/styles/images/right-links-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/styles/service/src/main/resources/web/styles/images/right-links-bg.gif -------------------------------------------------------------------------------- /modules/tests-utils/admin-services/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/tests-utils/admin-services/pom.xml -------------------------------------------------------------------------------- /modules/tests-utils/admin-services/src/main/resources/META-INF/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/tests-utils/admin-services/src/main/resources/META-INF/services.xml -------------------------------------------------------------------------------- /modules/tests-utils/admin-stubs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/tests-utils/admin-stubs/pom.xml -------------------------------------------------------------------------------- /modules/tests-utils/admin-stubs/src/main/resources/UUIDUserStoreManagerService.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/tests-utils/admin-stubs/src/main/resources/UUIDUserStoreManagerService.wsdl -------------------------------------------------------------------------------- /modules/tests-utils/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/modules/tests-utils/pom.xml -------------------------------------------------------------------------------- /oidc-conformance-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/README.md -------------------------------------------------------------------------------- /oidc-conformance-tests/basic/config/service_provider1_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/basic/config/service_provider1_config.json -------------------------------------------------------------------------------- /oidc-conformance-tests/basic/config/service_provider2_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/basic/config/service_provider2_config.json -------------------------------------------------------------------------------- /oidc-conformance-tests/config/acr_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/config/acr_config.json -------------------------------------------------------------------------------- /oidc-conformance-tests/config/browser_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/config/browser_configuration.py -------------------------------------------------------------------------------- /oidc-conformance-tests/config/oidc_deployment_config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/config/oidc_deployment_config.toml -------------------------------------------------------------------------------- /oidc-conformance-tests/config/service_provider_claim_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/config/service_provider_claim_config.json -------------------------------------------------------------------------------- /oidc-conformance-tests/config/user_claim_value_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/config/user_claim_value_config.json -------------------------------------------------------------------------------- /oidc-conformance-tests/configure_is.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/configure_is.py -------------------------------------------------------------------------------- /oidc-conformance-tests/conformance-suite-setup-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/conformance-suite-setup-guidelines.md -------------------------------------------------------------------------------- /oidc-conformance-tests/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/constants.py -------------------------------------------------------------------------------- /oidc-conformance-tests/export_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/export_results.py -------------------------------------------------------------------------------- /oidc-conformance-tests/formpost-basic/config/service_provider1_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/formpost-basic/config/service_provider1_config.json -------------------------------------------------------------------------------- /oidc-conformance-tests/formpost-basic/config/service_provider2_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/formpost-basic/config/service_provider2_config.json -------------------------------------------------------------------------------- /oidc-conformance-tests/formpost-hybrid/config/service_provider1_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/formpost-hybrid/config/service_provider1_config.json -------------------------------------------------------------------------------- /oidc-conformance-tests/formpost-hybrid/config/service_provider2_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/formpost-hybrid/config/service_provider2_config.json -------------------------------------------------------------------------------- /oidc-conformance-tests/formpost-implicit/config/service_provider1_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/formpost-implicit/config/service_provider1_config.json -------------------------------------------------------------------------------- /oidc-conformance-tests/formpost-implicit/config/service_provider2_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/formpost-implicit/config/service_provider2_config.json -------------------------------------------------------------------------------- /oidc-conformance-tests/hybrid/config/service_provider1_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/hybrid/config/service_provider1_config.json -------------------------------------------------------------------------------- /oidc-conformance-tests/hybrid/config/service_provider2_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/hybrid/config/service_provider2_config.json -------------------------------------------------------------------------------- /oidc-conformance-tests/implicit/config/service_provider1_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/implicit/config/service_provider1_config.json -------------------------------------------------------------------------------- /oidc-conformance-tests/implicit/config/service_provider2_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/implicit/config/service_provider2_config.json -------------------------------------------------------------------------------- /oidc-conformance-tests/send_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/send_chat.py -------------------------------------------------------------------------------- /oidc-conformance-tests/send_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/send_email.py -------------------------------------------------------------------------------- /oidc-conformance-tests/start_conformance_suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/start_conformance_suite.py -------------------------------------------------------------------------------- /oidc-conformance-tests/test_runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-conformance-tests/test_runner.sh -------------------------------------------------------------------------------- /oidc-fapi-conformance-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-fapi-conformance-tests/README.md -------------------------------------------------------------------------------- /oidc-fapi-conformance-tests/config/browser_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-fapi-conformance-tests/config/browser_configuration.py -------------------------------------------------------------------------------- /oidc-fapi-conformance-tests/config/client_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-fapi-conformance-tests/config/client_configs.py -------------------------------------------------------------------------------- /oidc-fapi-conformance-tests/config/deployment-fapi-config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-fapi-conformance-tests/config/deployment-fapi-config.toml -------------------------------------------------------------------------------- /oidc-fapi-conformance-tests/config/sandbox-certs/OB_SandBox_PP_Issuing_CA.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-fapi-conformance-tests/config/sandbox-certs/OB_SandBox_PP_Issuing_CA.cer -------------------------------------------------------------------------------- /oidc-fapi-conformance-tests/config/sandbox-certs/OB_SandBox_PP_Root_CA.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-fapi-conformance-tests/config/sandbox-certs/OB_SandBox_PP_Root_CA.cer -------------------------------------------------------------------------------- /oidc-fapi-conformance-tests/configure_is_fapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-fapi-conformance-tests/configure_is_fapi.py -------------------------------------------------------------------------------- /oidc-fapi-conformance-tests/constants_fapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-fapi-conformance-tests/constants_fapi.py -------------------------------------------------------------------------------- /oidc-fapi-conformance-tests/export_results_fapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-fapi-conformance-tests/export_results_fapi.py -------------------------------------------------------------------------------- /oidc-fapi-conformance-tests/resource-server/jwks_to_host/serverjwks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-fapi-conformance-tests/resource-server/jwks_to_host/serverjwks.py -------------------------------------------------------------------------------- /oidc-fapi-conformance-tests/resource-server/jwks_to_host/serverjwks2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-fapi-conformance-tests/resource-server/jwks_to_host/serverjwks2.py -------------------------------------------------------------------------------- /oidc-fapi-conformance-tests/resource-server/nginx-proxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-fapi-conformance-tests/resource-server/nginx-proxy -------------------------------------------------------------------------------- /oidc-fapi-conformance-tests/resource-server/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-fapi-conformance-tests/resource-server/requirements.txt -------------------------------------------------------------------------------- /oidc-fapi-conformance-tests/resource-server/resource-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-fapi-conformance-tests/resource-server/resource-server.py -------------------------------------------------------------------------------- /oidc-fapi-conformance-tests/start_conformance_suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-fapi-conformance-tests/start_conformance_suite.py -------------------------------------------------------------------------------- /oidc-fapi-conformance-tests/test_runner_fapi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/oidc-fapi-conformance-tests/test_runner_fapi.sh -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/pom.xml -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/1.1-admin-user-manage-roles/1.1.1-manage-roles-with-scim2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/1-manage-users-and-roles/1.1-admin-user-manage-roles/1.1.1-manage-roles-with-scim2/README.md -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/1.1-admin-user-manage-roles/1.1.1-manage-roles-with-scim2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/1-manage-users-and-roles/1.1-admin-user-manage-roles/1.1.1-manage-roles-with-scim2/pom.xml -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/1.1-admin-user-manage-roles/1.1.1-manage-roles-with-scim2/src/test/resources/scim2-groups/scim2Group1.json: -------------------------------------------------------------------------------- 1 | {"displayName":"manager"} 2 | -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/1.1-admin-user-manage-roles/1.1.1-manage-roles-with-scim2/src/test/resources/scim2-groups/scim2Group2.json: -------------------------------------------------------------------------------- 1 | {"displayName":"Engineer"} 2 | -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/1.1-admin-user-manage-roles/1.1.1-manage-roles-with-scim2/src/test/resources/scim2-groups/scim2GroupWithLessThanMinCharacters.json: -------------------------------------------------------------------------------- 1 | {"displayName":"qa"} 2 | -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/1.1-admin-user-manage-roles/1.1.1-manage-roles-with-scim2/src/test/resources/scim2-groups/scim2GroupWithSpecialCharacters.json: -------------------------------------------------------------------------------- 1 | {"displayName":"junior manager"} 2 | -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/1.1-admin-user-manage-roles/1.1.1-manage-roles-with-scim2/src/test/resources/scim2-groups/scim2UpdateGroup.json: -------------------------------------------------------------------------------- 1 | {"displayName":"executive"} 2 | -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/1.1-admin-user-manage-roles/1.1.2-manage-roles-with-scim1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/1-manage-users-and-roles/1.1-admin-user-manage-roles/1.1.2-manage-roles-with-scim1/README.md -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/1.1-admin-user-manage-roles/1.1.2-manage-roles-with-scim1/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/1-manage-users-and-roles/1.1-admin-user-manage-roles/1.1.2-manage-roles-with-scim1/pom.xml -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/1.1-admin-user-manage-roles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/1-manage-users-and-roles/1.1-admin-user-manage-roles/README.md -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/1.1-admin-user-manage-roles/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/1-manage-users-and-roles/1.1-admin-user-manage-roles/pom.xml -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/1.2-admin-user-manage-user-accounts/1.2.16-claim-management/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/1-manage-users-and-roles/1.2-admin-user-manage-user-accounts/1.2.16-claim-management/pom.xml -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/1.2-admin-user-manage-user-accounts/1.2.5-ask-password/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/1-manage-users-and-roles/1.2-admin-user-manage-user-accounts/1.2.5-ask-password/README.md -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/1.2-admin-user-manage-user-accounts/1.2.5-ask-password/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/1-manage-users-and-roles/1.2-admin-user-manage-user-accounts/1.2.5-ask-password/pom.xml -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/1.2-admin-user-manage-user-accounts/1.2.6-bulk-user-import/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/1-manage-users-and-roles/1.2-admin-user-manage-user-accounts/1.2.6-bulk-user-import/README.md -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/1.2-admin-user-manage-user-accounts/1.2.6-bulk-user-import/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/1-manage-users-and-roles/1.2-admin-user-manage-user-accounts/1.2.6-bulk-user-import/pom.xml -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/1.2-admin-user-manage-user-accounts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/1-manage-users-and-roles/1.2-admin-user-manage-user-accounts/README.md -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/1.2-admin-user-manage-user-accounts/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/1-manage-users-and-roles/1.2-admin-user-manage-user-accounts/pom.xml -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/1.3-user-management-with-multilayer-approval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/1-manage-users-and-roles/1.3-user-management-with-multilayer-approval/README.md -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/1.3-user-management-with-multilayer-approval/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/1-manage-users-and-roles/1.3-user-management-with-multilayer-approval/pom.xml -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/1.4-manage-user-stores/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/1-manage-users-and-roles/1.4-manage-user-stores/README.md -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/1.4-manage-user-stores/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/1-manage-users-and-roles/1.4-manage-user-stores/pom.xml -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/1-manage-users-and-roles/README.md -------------------------------------------------------------------------------- /product-scenarios/1-manage-users-and-roles/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/1-manage-users-and-roles/pom.xml -------------------------------------------------------------------------------- /product-scenarios/10-fine-grained-access-control/10.1-fine-grained-access-control-for-api-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/10-fine-grained-access-control/10.1-fine-grained-access-control-for-api-access/README.md -------------------------------------------------------------------------------- /product-scenarios/10-fine-grained-access-control/10.1-fine-grained-access-control-for-api-access/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/10-fine-grained-access-control/10.1-fine-grained-access-control-for-api-access/pom.xml -------------------------------------------------------------------------------- /product-scenarios/10-fine-grained-access-control/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/10-fine-grained-access-control/README.md -------------------------------------------------------------------------------- /product-scenarios/10-fine-grained-access-control/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/10-fine-grained-access-control/pom.xml -------------------------------------------------------------------------------- /product-scenarios/11-monitor-user-logins-and-sessions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/11-monitor-user-logins-and-sessions/README.md -------------------------------------------------------------------------------- /product-scenarios/11-monitor-user-logins-and-sessions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/11-monitor-user-logins-and-sessions/pom.xml -------------------------------------------------------------------------------- /product-scenarios/2-user-account-management/2.1-self-registration-via-end-user-portal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/2-user-account-management/2.1-self-registration-via-end-user-portal/README.md -------------------------------------------------------------------------------- /product-scenarios/2-user-account-management/2.1-self-registration-via-end-user-portal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/2-user-account-management/2.1-self-registration-via-end-user-portal/pom.xml -------------------------------------------------------------------------------- /product-scenarios/2-user-account-management/2.2-self-registration-via-social-ipds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/2-user-account-management/2.2-self-registration-via-social-ipds/README.md -------------------------------------------------------------------------------- /product-scenarios/2-user-account-management/2.2-self-registration-via-social-ipds/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/2-user-account-management/2.2-self-registration-via-social-ipds/pom.xml -------------------------------------------------------------------------------- /product-scenarios/2-user-account-management/2.3-self-registration-on-idp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/2-user-account-management/2.3-self-registration-on-idp/README.md -------------------------------------------------------------------------------- /product-scenarios/2-user-account-management/2.3-self-registration-on-idp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/2-user-account-management/2.3-self-registration-on-idp/pom.xml -------------------------------------------------------------------------------- /product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.1-update-profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.1-update-profile/README.md -------------------------------------------------------------------------------- /product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.1-update-profile/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.1-update-profile/pom.xml -------------------------------------------------------------------------------- /product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.3-update-consents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.3-update-consents/README.md -------------------------------------------------------------------------------- /product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.3-update-consents/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.3-update-consents/pom.xml -------------------------------------------------------------------------------- /product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.5-attach-fido-token/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.5-attach-fido-token/README.md -------------------------------------------------------------------------------- /product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.5-attach-fido-token/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.5-attach-fido-token/pom.xml -------------------------------------------------------------------------------- /product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.6-recover-user-account/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.6-recover-user-account/README.md -------------------------------------------------------------------------------- /product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.6-recover-user-account/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.6-recover-user-account/pom.xml -------------------------------------------------------------------------------- /product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.7-recover-password/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.7-recover-password/README.md -------------------------------------------------------------------------------- /product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.7-recover-password/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.7-recover-password/pom.xml -------------------------------------------------------------------------------- /product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.8-monitor-login/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.8-monitor-login/README.md -------------------------------------------------------------------------------- /product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.8-monitor-login/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/2-user-account-management/2.4-manage-own-user-account/2.4.8-monitor-login/pom.xml -------------------------------------------------------------------------------- /product-scenarios/2-user-account-management/2.4-manage-own-user-account/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/2-user-account-management/2.4-manage-own-user-account/README.md -------------------------------------------------------------------------------- /product-scenarios/2-user-account-management/2.4-manage-own-user-account/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/2-user-account-management/2.4-manage-own-user-account/pom.xml -------------------------------------------------------------------------------- /product-scenarios/2-user-account-management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/2-user-account-management/README.md -------------------------------------------------------------------------------- /product-scenarios/2-user-account-management/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/2-user-account-management/pom.xml -------------------------------------------------------------------------------- /product-scenarios/3-identity-provisioning/3.1-role-based/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/3-identity-provisioning/3.1-role-based/README.md -------------------------------------------------------------------------------- /product-scenarios/3-identity-provisioning/3.1-role-based/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/3-identity-provisioning/3.1-role-based/pom.xml -------------------------------------------------------------------------------- /product-scenarios/3-identity-provisioning/3.2-rule-based/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/3-identity-provisioning/3.2-rule-based/README.md -------------------------------------------------------------------------------- /product-scenarios/3-identity-provisioning/3.2-rule-based/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/3-identity-provisioning/3.2-rule-based/pom.xml -------------------------------------------------------------------------------- /product-scenarios/3-identity-provisioning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/3-identity-provisioning/README.md -------------------------------------------------------------------------------- /product-scenarios/3-identity-provisioning/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/3-identity-provisioning/pom.xml -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.1-sso-with-saml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.1-sso-with-saml/README.md -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.1-sso-with-saml/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.1-sso-with-saml/pom.xml -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.1-sso-with-saml/src/test/resources/testng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.1-sso-with-saml/src/test/resources/testng.xml -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.2-saml-eidas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.2-saml-eidas/README.md -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.2-saml-eidas/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.2-saml-eidas/pom.xml -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.3-saml-2-artifact-binding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.3-saml-2-artifact-binding/README.md -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.3-saml-2-artifact-binding/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.3-saml-2-artifact-binding/pom.xml -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.4-sso-with-oidc/4.1.4.1-dcr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.4-sso-with-oidc/4.1.4.1-dcr/README.md -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.4-sso-with-oidc/4.1.4.1-dcr/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.4-sso-with-oidc/4.1.4.1-dcr/pom.xml -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.4-sso-with-oidc/4.1.4.3-basic-profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.4-sso-with-oidc/4.1.4.3-basic-profile/README.md -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.4-sso-with-oidc/4.1.4.3-basic-profile/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.4-sso-with-oidc/4.1.4.3-basic-profile/pom.xml -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.4-sso-with-oidc/4.1.4.4-implicit-profile/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.4-sso-with-oidc/4.1.4.4-implicit-profile/pom.xml -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.4-sso-with-oidc/4.1.4.5-hybrid-profile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.4-sso-with-oidc/4.1.4.5-hybrid-profile/README.md -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.4-sso-with-oidc/4.1.4.5-hybrid-profile/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.4-sso-with-oidc/4.1.4.5-hybrid-profile/pom.xml -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.4-sso-with-oidc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.4-sso-with-oidc/README.md -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.4-sso-with-oidc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.4-sso-with-oidc/pom.xml -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.5-sso-with-ws-federation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.5-sso-with-ws-federation/README.md -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.5-sso-with-ws-federation/TestCases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.5-sso-with-ws-federation/TestCases.md -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.5-sso-with-ws-federation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.5-sso-with-ws-federation/pom.xml -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.6-sso-with-cross-protocol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.6-sso-with-cross-protocol/README.md -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.6-sso-with-cross-protocol/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.6-sso-with-cross-protocol/pom.xml -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.7-sso-with-end-user-consent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.7-sso-with-end-user-consent/README.md -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.7-sso-with-end-user-consent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/4.1.7-sso-with-end-user-consent/pom.xml -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/README.md -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.1-sso-for-web-app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.1-sso-for-web-app/pom.xml -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.2-sso-for-mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.2-sso-for-mobile/README.md -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.2-sso-for-mobile/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.2-sso-for-mobile/pom.xml -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.3-sso-for-spa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.3-sso-for-spa/README.md -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.3-sso-for-spa/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.3-sso-for-spa/pom.xml -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.4-application-management/4.4.1-soap-apis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.4-application-management/4.4.1-soap-apis/README.md -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.4-application-management/4.4.1-soap-apis/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.4-application-management/4.4.1-soap-apis/pom.xml -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.4-application-management/4.4.1-soap-apis/src/test/resources/testng.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.4-application-management/4.4.1-soap-apis/src/test/resources/testng.xml -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.4-application-management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.4-application-management/README.md -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/4.4-application-management/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/4.4-application-management/pom.xml -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/README.md -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/pom.xml -------------------------------------------------------------------------------- /product-scenarios/4-single-sign-on/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/4-single-sign-on/test.sh -------------------------------------------------------------------------------- /product-scenarios/5-sso-with-identity-federation/5.1-login-with-standard-protocols/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/5-sso-with-identity-federation/5.1-login-with-standard-protocols/README.md -------------------------------------------------------------------------------- /product-scenarios/5-sso-with-identity-federation/5.1-login-with-standard-protocols/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/5-sso-with-identity-federation/5.1-login-with-standard-protocols/pom.xml -------------------------------------------------------------------------------- /product-scenarios/5-sso-with-identity-federation/5.2-login-with-social-authenticators/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/5-sso-with-identity-federation/5.2-login-with-social-authenticators/README.md -------------------------------------------------------------------------------- /product-scenarios/5-sso-with-identity-federation/5.2-login-with-social-authenticators/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/5-sso-with-identity-federation/5.2-login-with-social-authenticators/pom.xml -------------------------------------------------------------------------------- /product-scenarios/5-sso-with-identity-federation/5.3-federation-proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/5-sso-with-identity-federation/5.3-federation-proxy/README.md -------------------------------------------------------------------------------- /product-scenarios/5-sso-with-identity-federation/5.3-federation-proxy/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/5-sso-with-identity-federation/5.3-federation-proxy/pom.xml -------------------------------------------------------------------------------- /product-scenarios/5-sso-with-identity-federation/5.4-git-provisioning-to-identity-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/5-sso-with-identity-federation/5.4-git-provisioning-to-identity-server/README.md -------------------------------------------------------------------------------- /product-scenarios/5-sso-with-identity-federation/5.4-git-provisioning-to-identity-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/5-sso-with-identity-federation/5.4-git-provisioning-to-identity-server/pom.xml -------------------------------------------------------------------------------- /product-scenarios/5-sso-with-identity-federation/5.5-git-provisioning-to-cloud-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/5-sso-with-identity-federation/5.5-git-provisioning-to-cloud-server/README.md -------------------------------------------------------------------------------- /product-scenarios/5-sso-with-identity-federation/5.5-git-provisioning-to-cloud-server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/5-sso-with-identity-federation/5.5-git-provisioning-to-cloud-server/pom.xml -------------------------------------------------------------------------------- /product-scenarios/5-sso-with-identity-federation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/5-sso-with-identity-federation/README.md -------------------------------------------------------------------------------- /product-scenarios/5-sso-with-identity-federation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/5-sso-with-identity-federation/pom.xml -------------------------------------------------------------------------------- /product-scenarios/6-adaptive-and-strong-authentication/6.1-multi-options-authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/6-adaptive-and-strong-authentication/6.1-multi-options-authentication/README.md -------------------------------------------------------------------------------- /product-scenarios/6-adaptive-and-strong-authentication/6.1-multi-options-authentication/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/6-adaptive-and-strong-authentication/6.1-multi-options-authentication/pom.xml -------------------------------------------------------------------------------- /product-scenarios/6-adaptive-and-strong-authentication/6.2-multi-factor-authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/6-adaptive-and-strong-authentication/6.2-multi-factor-authentication/README.md -------------------------------------------------------------------------------- /product-scenarios/6-adaptive-and-strong-authentication/6.2-multi-factor-authentication/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/6-adaptive-and-strong-authentication/6.2-multi-factor-authentication/pom.xml -------------------------------------------------------------------------------- /product-scenarios/6-adaptive-and-strong-authentication/6.3-adaptive-authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/6-adaptive-and-strong-authentication/6.3-adaptive-authentication/README.md -------------------------------------------------------------------------------- /product-scenarios/6-adaptive-and-strong-authentication/6.3-adaptive-authentication/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/6-adaptive-and-strong-authentication/6.3-adaptive-authentication/pom.xml -------------------------------------------------------------------------------- /product-scenarios/6-adaptive-and-strong-authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/6-adaptive-and-strong-authentication/README.md -------------------------------------------------------------------------------- /product-scenarios/6-adaptive-and-strong-authentication/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/6-adaptive-and-strong-authentication/pom.xml -------------------------------------------------------------------------------- /product-scenarios/7-single-sign-on-with-controlled-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/7-single-sign-on-with-controlled-access/README.md -------------------------------------------------------------------------------- /product-scenarios/7-single-sign-on-with-controlled-access/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/7-single-sign-on-with-controlled-access/pom.xml -------------------------------------------------------------------------------- /product-scenarios/8-single-sign-on-with-delegated-access-control/8.2-jwt-bearer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/8-single-sign-on-with-delegated-access-control/8.2-jwt-bearer/README.md -------------------------------------------------------------------------------- /product-scenarios/8-single-sign-on-with-delegated-access-control/8.2-jwt-bearer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/8-single-sign-on-with-delegated-access-control/8.2-jwt-bearer/pom.xml -------------------------------------------------------------------------------- /product-scenarios/8-single-sign-on-with-delegated-access-control/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/8-single-sign-on-with-delegated-access-control/README.md -------------------------------------------------------------------------------- /product-scenarios/8-single-sign-on-with-delegated-access-control/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/8-single-sign-on-with-delegated-access-control/pom.xml -------------------------------------------------------------------------------- /product-scenarios/9-access-delegation/9.1-access-delegation-with-end-user-authorization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/9-access-delegation/9.1-access-delegation-with-end-user-authorization/README.md -------------------------------------------------------------------------------- /product-scenarios/9-access-delegation/9.1-access-delegation-with-end-user-authorization/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/9-access-delegation/9.1-access-delegation-with-end-user-authorization/pom.xml -------------------------------------------------------------------------------- /product-scenarios/9-access-delegation/9.2-access-delegation-with-user-managed-access/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/9-access-delegation/9.2-access-delegation-with-user-managed-access/README.md -------------------------------------------------------------------------------- /product-scenarios/9-access-delegation/9.2-access-delegation-with-user-managed-access/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/9-access-delegation/9.2-access-delegation-with-user-managed-access/pom.xml -------------------------------------------------------------------------------- /product-scenarios/9-access-delegation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/9-access-delegation/README.md -------------------------------------------------------------------------------- /product-scenarios/9-access-delegation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/9-access-delegation/pom.xml -------------------------------------------------------------------------------- /product-scenarios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/README.md -------------------------------------------------------------------------------- /product-scenarios/code-coverage/code-coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/code-coverage/code-coverage.sh -------------------------------------------------------------------------------- /product-scenarios/code-coverage/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/code-coverage/pom.xml -------------------------------------------------------------------------------- /product-scenarios/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/pom.xml -------------------------------------------------------------------------------- /product-scenarios/scenarios-commons/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/scenarios-commons/pom.xml -------------------------------------------------------------------------------- /product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/HTTPCommonClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/HTTPCommonClient.java -------------------------------------------------------------------------------- /product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/SAML2SSOTestBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/SAML2SSOTestBase.java -------------------------------------------------------------------------------- /product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/SAMLConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/SAMLConfig.java -------------------------------------------------------------------------------- /product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/SCIM2CommonClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/SCIM2CommonClient.java -------------------------------------------------------------------------------- /product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/SSOCommonClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/SSOCommonClient.java -------------------------------------------------------------------------------- /product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/SSOTestBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/SSOTestBase.java -------------------------------------------------------------------------------- /product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/ScenarioTestBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/ScenarioTestBase.java -------------------------------------------------------------------------------- /product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/TestConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/TestConfig.java -------------------------------------------------------------------------------- /product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/TestUserMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/TestUserMode.java -------------------------------------------------------------------------------- /product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/util/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/util/Constants.java -------------------------------------------------------------------------------- /product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/util/SAMLSSOUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/util/SAMLSSOUtil.java -------------------------------------------------------------------------------- /product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/util/SSOConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/util/SSOConstants.java -------------------------------------------------------------------------------- /product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/util/SSOUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/scenarios-commons/src/main/java/org/wso2/identity/scenarios/commons/util/SSOUtil.java -------------------------------------------------------------------------------- /product-scenarios/scenarios-commons/src/main/resources/keystores/products/wso2carbon.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/scenarios-commons/src/main/resources/keystores/products/wso2carbon.p12 -------------------------------------------------------------------------------- /product-scenarios/scenarios-commons/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/scenarios-commons/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /product-scenarios/test-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/test-resources/README.md -------------------------------------------------------------------------------- /product-scenarios/test-resources/deploy-samples-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/test-resources/deploy-samples-linux.sh -------------------------------------------------------------------------------- /product-scenarios/test-resources/deploy-samples-mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/test-resources/deploy-samples-mac.sh -------------------------------------------------------------------------------- /product-scenarios/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/product-scenarios/test.sh -------------------------------------------------------------------------------- /release-guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/release-guidelines.md -------------------------------------------------------------------------------- /release-notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/release-notes.html -------------------------------------------------------------------------------- /usecases/common/client-truststore.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/usecases/common/client-truststore.p12 -------------------------------------------------------------------------------- /usecases/uc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/usecases/uc.sh -------------------------------------------------------------------------------- /usecases/uc1/master-datasources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/usecases/uc1/master-datasources.xml -------------------------------------------------------------------------------- /usecases/uc1/readme: -------------------------------------------------------------------------------- 1 | AD (RO) Primary | UM/REG DB on Informix 2 | -------------------------------------------------------------------------------- /usecases/uc1/user-mgt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/usecases/uc1/user-mgt.xml -------------------------------------------------------------------------------- /usecases/uc2/master-datasources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/usecases/uc2/master-datasources.xml -------------------------------------------------------------------------------- /usecases/uc2/readme: -------------------------------------------------------------------------------- 1 | Informix (RO) Primary | UM/REG DB on H2 2 | -------------------------------------------------------------------------------- /usecases/uc2/user-mgt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/usecases/uc2/user-mgt.xml -------------------------------------------------------------------------------- /usecases/uc3/master-datasources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/usecases/uc3/master-datasources.xml -------------------------------------------------------------------------------- /usecases/uc3/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/usecases/uc3/readme -------------------------------------------------------------------------------- /usecases/uc3/user-mgt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/usecases/uc3/user-mgt.xml -------------------------------------------------------------------------------- /usecases/uc5/master-datasources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/usecases/uc5/master-datasources.xml -------------------------------------------------------------------------------- /usecases/uc5/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/usecases/uc5/readme -------------------------------------------------------------------------------- /usecases/uc5/user-mgt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wso2/product-is/HEAD/usecases/uc5/user-mgt.xml --------------------------------------------------------------------------------