├── .editorconfig ├── .github └── workflows │ └── sync-to-gitlab.yml ├── .gitignore ├── CONTRIBUTING.md ├── INSTALL ├── INSTALL-dist ├── LICENSE ├── LICENSE.CC ├── LICENSE.EUPL ├── NEWS ├── NOTICE ├── README ├── README.md ├── RELEASE-NOTES ├── config ├── checkstyle │ ├── checkstyle-suppressions.xml │ └── checkstyle.xml ├── config-native.xml ├── false-positives.xml ├── initial-objects │ ├── archetype │ │ ├── 020-archetype-system-user.xml │ │ ├── 021-archetype-system-role.xml │ │ ├── 022-archetype-business-role.xml │ │ ├── 023-archetype-manual-provisioning-case.xml │ │ ├── 024-archetype-operation-request.xml │ │ ├── 025-archetype-approval-case.xml │ │ ├── 026-archetype-trace.xml │ │ ├── 027-archetype-correlation-case.xml │ │ ├── 028-archetype-application-role.xml │ │ ├── 029-archetype-application.xml │ │ ├── 059-archetype-report.xml │ │ ├── 060-archetype-report-dashboard.xml │ │ ├── 061-archetype-report-collection.xml │ │ ├── 062-archetype-classification.xml │ │ ├── 063-archetype-clearance.xml │ │ ├── 150-archetype-location.xml │ │ ├── 150-archetype-organization.xml │ │ ├── 150-archetype-organizational-unit.xml │ │ ├── 150-archetype-project.xml │ │ ├── 150-archetype-team.xml │ │ ├── 501-archetype-task-reconciliation.xml │ │ ├── 502-archetype-task-recomputation.xml │ │ ├── 503-archetype-task-import.xml │ │ ├── 504-archetype-task-live-sync.xml │ │ ├── 505-archetype-task-async-update.xml │ │ ├── 506-archetype-task-cleanup.xml │ │ ├── 507-archetype-task-report.xml │ │ ├── 508-archetype-task-single-bulk-action.xml │ │ ├── 509-archetype-task-iterative-bulk-action.xml │ │ ├── 510-archetype-task-report-import-classic.xml │ │ ├── 511-archetype-task-report-export-classic.xml │ │ ├── 512-archetype-task-report-export-distributed.xml │ │ ├── 513-archetype-task-shadow-integrity-check.xml │ │ ├── 514-archetype-task-shadows-refresh.xml │ │ ├── 515-archetype-task-objects-delete.xml │ │ ├── 516-archetype-task-shadows-delete-long-time-not-updated.xml │ │ ├── 517-archetype-task-execute-change.xml │ │ ├── 518-archetype-task-execute-deltas.xml │ │ ├── 519-archetype-task-reindex-repository.xml │ │ ├── 520-archetype-task-certification.xml │ │ ├── 521-archetype-task-approval.xml │ │ ├── 522-archetype-task-object-integrity-check.xml │ │ ├── 523-archetype-task-shadow-reclassification.xml │ │ ├── 528-archetype-task-util.xml │ │ ├── 529-archetype-task-system.xml │ │ ├── 530-archetype-task-validity.xml │ │ ├── 531-archetype-task-trigger.xml │ │ ├── 532-archetype-task-propagation.xml │ │ ├── 533-archetype-task-multi-propagation.xml │ │ ├── 534-archetype-task-certification-open-next-stage.xml │ │ ├── 535-archetype-task-certification-remediation.xml │ │ ├── 536-archetype-task-certification-start-campaign.xml │ │ ├── 537-archetype-task-certification-close-current-stage.xml │ │ ├── 538-archetype-task-certification-reiterate-campaign.xml │ │ ├── 700-archetype-event-mark.xml │ │ ├── 701-archetype-object-mark.xml │ │ ├── 702-archetype-person.xml │ │ ├── 703-archetype-resource-template.xml │ │ └── 705-archetype-shadow-policy-mark.xml │ ├── dashboard │ │ ├── 310-dashboard-admin.xml │ │ └── 899-dashboard-compliance.xml │ ├── lookup-table │ │ ├── 200-lookup-languages.xml │ │ ├── 210-lookup-locales.xml │ │ ├── 220-lookup-timezones.xml │ │ ├── 230-lookup-lifecycle-state.xml │ │ └── 240-lookup-state.xml │ ├── mark │ │ ├── 250-mark-no-classification.xml │ │ ├── 250-mark-privileged-access.xml │ │ ├── 250-mark-unowned.xml │ │ ├── 710-mark-focus-activated.xml │ │ ├── 711-mark-focus-deactivated.xml │ │ ├── 712-mark-focus-renamed.xml │ │ ├── 713-mark-focus-assignment-changed.xml │ │ ├── 714-mark-focus-archetype-changed.xml │ │ ├── 715-mark-focus-parent-org-reference-changed.xml │ │ ├── 716-mark-focus-role-membership-changed.xml │ │ ├── 730-mark-projection-activated.xml │ │ ├── 731-mark-projection-deactivated.xml │ │ ├── 732-mark-projection-renamed.xml │ │ ├── 733-mark-projection-identifier-changed.xml │ │ ├── 734-mark-projection-entitlement-changed.xml │ │ ├── 735-mark-projection-password-changed.xml │ │ ├── 736-mark-shadow-classification-changed.xml │ │ ├── 737-mark-shadow-correlation-state-changed.xml │ │ ├── 738-mark-projection-resource-object-affected.xml │ │ ├── 800-mark-protected.xml │ │ ├── 801-mark-decommission-later.xml │ │ ├── 802-mark-correlate-later.xml │ │ ├── 803-mark-do-not-touch.xml │ │ ├── 804-mark-invalid-data.xml │ │ ├── 805-mark-unmanaged.xml │ │ ├── 806-mark-managed.xml │ │ ├── 811-exclusion-violation.xml │ │ ├── 812-requirement-violation.xml │ │ ├── 813-underassigned.xml │ │ ├── 814-overassigned.xml │ │ ├── 815-object-modified.xml │ │ ├── 816-assignment-modified.xml │ │ ├── 817-has-assignment.xml │ │ ├── 818-has-no-assignment.xml │ │ ├── 819-object-state.xml │ │ ├── 820-assignment-state.xml │ │ ├── 821-object-time-validity.xml │ │ ├── 822-assignment-time-validity.xml │ │ ├── 830-suspicious.xml │ │ ├── mark-shadow-correlation-owner-found.xml │ │ ├── mark-shadow-correlation-owner-not-certain.xml │ │ └── mark-shadow-correlation-owner-not-found.xml │ ├── object-collection │ │ ├── 250-object-collection-resource-all.xml │ │ ├── 251-object-collection-resource-up.xml │ │ ├── 252-object-collection-application-role.xml │ │ ├── 253-object-collection-application-active.xml │ │ ├── 253-object-collection-application.xml │ │ ├── 260-object-collection-task-all.xml │ │ ├── 261-object-collection-task-active.xml │ │ ├── 262-object-collection-task-report.xml │ │ ├── 263-object-collection-task-certification.xml │ │ ├── 270-object-collection-audit.xml │ │ ├── 271-object-collection-audit-24h.xml │ │ ├── 272-object-collection-audit-errors-24h.xml │ │ ├── 273-object-collection-audit-modifications-24h.xml │ │ ├── 280-object-collection-certification-campaign-all.xml │ │ ├── 290-object-collection-shadow-all.xml │ │ ├── 330-object-collection-my-cases.xml │ │ ├── 340-object-collection-resource-templates.xml │ │ ├── 350-object-collection-application-suspicious.xml │ │ ├── 350-object-collection-application-unowned.xml │ │ ├── 350-object-collection-application-without-classification.xml │ │ ├── 350-object-collection-privileged-users.xml │ │ ├── 350-object-collection-role-active.xml │ │ ├── 350-object-collection-role-all.xml │ │ ├── 350-object-collection-role-unowned.xml │ │ ├── 350-object-collection-user-active.xml │ │ ├── 352-suspicious-objects.xml │ │ ├── 353-users-with-sod-violations.xml │ │ ├── 354-roles-privileged.xml │ │ ├── 357-suspicious-roles.xml │ │ └── 358-suspicious-users.xml │ ├── object-templates │ │ └── 380-object-template-person.xml │ ├── org │ │ ├── 390-org-projects.xml │ │ ├── 390-org-teams.xml │ │ └── 390-org-world.xml │ ├── policy │ │ ├── 300-classification-privileged-access.xml │ │ ├── 300-policy-require-classification.xml │ │ └── 300-policy-require-owner.xml │ ├── report │ │ ├── 090-report-audit.xml │ │ ├── 100-report-reconciliation.xml │ │ ├── 110-report-user-list.xml │ │ ├── 130-report-certification-definitions.xml │ │ ├── 140-report-certification-campaigns.xml │ │ ├── 150-report-certification-cases.xml │ │ ├── 160-report-certification-work-items.xml │ │ ├── 170-report-simulation-objects.xml │ │ ├── 171-report-simulation-objects-with-metrics.xml │ │ ├── 172-report-simulation-items-changed.xml │ │ ├── 173-report-simulation-values-changed.xml │ │ ├── 180-report-simulation-results.xml │ │ └── 200-report-indirect-assignments.xml │ ├── role │ │ ├── 030-role-superuser.xml │ │ ├── 040-role-enduser.xml │ │ ├── 041-role-approver.xml │ │ ├── 042-role-reviewer.xml │ │ └── 043-role-delegator.xml │ ├── security-policy │ │ └── 015-security-policy.xml │ ├── service │ │ ├── 600-origin-internal.xml │ │ ├── 601-origin-user-entry.xml │ │ ├── 602-origin-artificial-intelligence.xml │ │ ├── 603-origin-system-intelligence.xml │ │ └── 610-service-identity-recovery.xml │ ├── system-configuration │ │ └── 000-system-configuration.xml │ ├── task │ │ ├── 550-task-cleanup.xml │ │ ├── 560-task-validity.xml │ │ ├── 570-task-trigger.xml │ │ └── 910-task-recompute-all-users.xml │ ├── user │ │ └── 050-user-administrator.xml │ └── value-policy │ │ └── 010-value-policy.xml └── sql │ ├── README.txt │ └── native │ ├── postgres-audit-upgrade.sql │ ├── postgres-audit.sql │ ├── postgres-quartz.sql │ ├── postgres-upgrade.sql │ └── postgres.sql ├── custom ├── pom.xml ├── testng-integration.xml └── testng-unit.xml ├── dist ├── javadoc │ └── pom.xml ├── midpoint-api │ └── pom.xml ├── pom.xml └── src │ └── main │ ├── assembly │ └── dist.xml │ ├── bin │ ├── midpoint.bat │ ├── midpoint.exe │ ├── midpoint.sh │ ├── midpointw.exe │ ├── ninja.bat │ ├── ninja.sh │ ├── service.bat │ ├── start.bat │ ├── start.sh │ ├── stop.bat │ └── stop.sh │ └── var │ └── README.txt ├── docs ├── LICENSE ├── _reference-disclaimer.adoc ├── admin-gui │ ├── admin-gui-config │ │ ├── admin-gui-config-examples.adoc │ │ ├── custom-columns-2022-03-18.png │ │ ├── custom_action_screen.png │ │ ├── default-list-view-panel-configuration.adoc │ │ └── index.adoc │ ├── area-categories.adoc │ ├── collections-views │ │ ├── configuration │ │ │ ├── image2021-1-19_9-37-5.png │ │ │ ├── index.adoc │ │ │ └── search_config.png │ │ ├── example-audit-search │ │ │ ├── image2021-1-19_13-15-0.png │ │ │ └── index.adoc │ │ ├── example-searchbox-managers │ │ │ ├── index.adoc │ │ │ ├── mngrs-cllctn.png │ │ │ ├── mngrs-tggl-1.png │ │ │ └── mngrs-tggl-2.png │ │ ├── index.adoc │ │ └── show-only-active-users │ │ │ ├── index.adoc │ │ │ └── usersView.png │ ├── custom-forms │ │ ├── Screenshot-2017-01-27-10.16.55.png │ │ └── index.adoc │ ├── dashboards │ │ ├── compliance-dashboard │ │ │ ├── compliance-dashboard-screenshot.png │ │ │ └── index.adoc │ │ ├── configuration │ │ │ ├── dashboard-presentation-styles.webp │ │ │ ├── dashboard-screenshot.png │ │ │ ├── enabled-users.png │ │ │ ├── index.adoc │ │ │ ├── object.png │ │ │ ├── of.png │ │ │ ├── only-value.png │ │ │ ├── percentage.png │ │ │ └── slash.png │ │ ├── dashboard-architecture │ │ │ ├── async-dashboard-architecture.drawio │ │ │ ├── async-dashboard-architecture.svg │ │ │ ├── basic-dashboard-architecture.drawio │ │ │ ├── basic-dashboard-architecture.svg │ │ │ └── index.adoc │ │ ├── dashboard-configuration-intro │ │ │ ├── first-dashboard-active-users.webp │ │ │ └── index.adoc │ │ ├── dashboards-reports-and-recurring-tasks-config-limitation.adoc │ │ ├── index.adoc │ │ └── use-idea-for-midpoint-engineering.adoc │ ├── delta-visualization.adoc │ ├── deployment-information │ │ ├── image2017-1-30-14-12-38.png │ │ └── index.adoc │ ├── feature-customization.adoc │ ├── gui-user-profile │ │ ├── index.adoc │ │ ├── save-button.png │ │ └── saved-filters-list.png │ ├── index.adoc │ ├── localization-configuration.adoc │ ├── localization.adoc │ ├── look-feel-customization.adoc │ ├── midpoint-jar-signature-status │ │ ├── index.adoc │ │ ├── jar-official.png │ │ ├── jar-overlay.png │ │ └── jar-unofficial.png │ ├── preview-new-advanced.png │ ├── preview-new-simple.png │ ├── preview-old.png │ ├── request-access │ │ ├── configuration.adoc │ │ ├── index.adoc │ │ ├── step-1-group-manual-selection.png │ │ ├── step-1-group-user-selected.png │ │ ├── step-1-poi-group.png │ │ ├── step-1-poi.png │ │ ├── step-2-relation.png │ │ ├── step-3-catalog-table.png │ │ ├── step-3-catalog-tiles.png │ │ ├── step-3-roles-of-teammate.png │ │ ├── step-4-checkout-item-edit.png │ │ ├── step-4-checkout.png │ │ ├── step-4-conflict-list.png │ │ └── step-4-conflicts-solved.png │ ├── resource-wizard │ │ ├── association-type │ │ │ ├── association-type-table.png │ │ │ ├── choice-association-type.png │ │ │ ├── choice-part.png │ │ │ ├── index.adoc │ │ │ ├── step-1-association-type-basic-config.png │ │ │ ├── step-1-select-object.png │ │ │ ├── step-1-select-subject.png │ │ │ ├── step-1-specify-data-for-association.png │ │ │ └── subject │ │ │ │ ├── choice-part.png │ │ │ │ ├── index.adoc │ │ │ │ ├── provisioning-from-resource │ │ │ │ ├── choice-part.png │ │ │ │ ├── index.adoc │ │ │ │ ├── step-1-basic-configuration.png │ │ │ │ ├── step-2-mapping.png │ │ │ │ ├── step-3-synchronization-table.png │ │ │ │ ├── step-4-correlation-items.png │ │ │ │ ├── step-4-correlation-rule-table.png │ │ │ │ └── table-new.png │ │ │ │ └── provisioning-to-resource │ │ │ │ ├── choice-part.png │ │ │ │ ├── index.adoc │ │ │ │ ├── step-1-basic-configuration.png │ │ │ │ ├── step-2-mapping.png │ │ │ │ └── table-new.png │ │ ├── configuration-resource-panels.adoc │ │ ├── create-resource-select-unique-attribute.webp │ │ ├── create-resource-using-wizard.adoc │ │ ├── how-to-use-lifecycle-state.adoc │ │ ├── index.adoc │ │ ├── limitation-all.adoc │ │ ├── limitation-corelation.adoc │ │ ├── limitation-mapping.adoc │ │ ├── object-type │ │ │ ├── activation │ │ │ │ ├── index.adoc │ │ │ │ ├── step-6-activation-inbound-add.png │ │ │ │ ├── step-6-activation-inbound-full.png │ │ │ │ ├── step-6-activation-inbounds.png │ │ │ │ ├── step-6-activation-outbound-add.png │ │ │ │ ├── step-6-activation-outbound-full.png │ │ │ │ ├── step-6-activation-outbounds.png │ │ │ │ └── step-6-predefined-details.png │ │ │ ├── capability │ │ │ │ ├── index.adoc │ │ │ │ └── step-5-capabilities.png │ │ │ ├── choice-part.png │ │ │ ├── correlation │ │ │ │ ├── correlation-rules-list.webp │ │ │ │ ├── correlation-rules-multiple-correlator.webp │ │ │ │ ├── correlation-rules-setup-accounts-configure-menu.webp │ │ │ │ ├── index.adoc │ │ │ │ ├── step-4-correlator-item.png │ │ │ │ └── step-4-correlator-rule.png │ │ │ ├── credentials │ │ │ │ ├── credential-mapping-setup-accounts-configure-menu.webp │ │ │ │ ├── credential-outbound-mapping.webp │ │ │ │ └── index.adoc │ │ │ ├── data-preview.png │ │ │ ├── index.adoc │ │ │ ├── mapping │ │ │ │ ├── advanced-mappings.adoc │ │ │ │ ├── index.adoc │ │ │ │ ├── step-2-mappings-inbound-detail-main.png │ │ │ │ ├── step-2-mappings-inbound-detail-optional.png │ │ │ │ ├── step-2-mappings-inbound.png │ │ │ │ ├── step-2-mappings-outbound-detail-main.png │ │ │ │ ├── step-2-mappings-outbound-detail-optional.png │ │ │ │ ├── step-2-mappings-outbound.png │ │ │ │ ├── step-2-mappings-override-detail-basic.png │ │ │ │ ├── step-2-mappings-override-detail-limitations.png │ │ │ │ └── step-2-mappings-override.png │ │ │ ├── object-type-table.webp │ │ │ ├── policies │ │ │ │ ├── index.adoc │ │ │ │ ├── object-add-mark-01.webp │ │ │ │ ├── object-add-mark-02.webp │ │ │ │ ├── object-add-mark-03.webp │ │ │ │ ├── object-marks-review.webp │ │ │ │ ├── object-type-policies.webp │ │ │ │ ├── resource-account.webp │ │ │ │ ├── simulations-add-mark.webp │ │ │ │ ├── step-8-default-operation-policies.png │ │ │ │ ├── step-8-marking.png │ │ │ │ └── step-8-policies.png │ │ │ ├── step-1-object-type-basic-config.webp │ │ │ ├── step-1-object-type-midpoint-data.webp │ │ │ ├── step-1-object-type-resource-data.webp │ │ │ └── synchronization │ │ │ │ ├── index.adoc │ │ │ │ ├── step-3-synch-detail-action.png │ │ │ │ ├── step-3-synch-detail-basic.png │ │ │ │ ├── step-3-synch-detail-optional.png │ │ │ │ ├── sync-rules-setup-accounts-configure-menu.webp │ │ │ │ └── sync-rules-setup-rules-list.webp │ │ ├── resource-wizard-create-new-01-intro_4-9.webp │ │ ├── resource-wizard-create-new-03-connection_4-9.webp │ │ ├── resource-wizard-create-new-05-schema_4-9.webp │ │ ├── resource-wizard-create-new-06-next-steps_4-9.webp │ │ ├── resource │ │ │ ├── choice-part.png │ │ │ └── data-preview.png │ │ ├── see-also.adoc │ │ └── wizard-existing-resource │ │ │ ├── accessing-from-accounts.png │ │ │ ├── index.adoc │ │ │ ├── resource-details.png │ │ │ ├── step-1-select-task-type-simulated.png │ │ │ ├── step-1-select-task-type.png │ │ │ ├── step-2-basic-simulated.png │ │ │ ├── step-2-basic.png │ │ │ ├── step-3-resource-simulated.png │ │ │ ├── step-3-resource.png │ │ │ ├── step-4-distribution.png │ │ │ ├── step-4-execution-simulated.png │ │ │ ├── step-5-schedule-simulated.png │ │ │ ├── task-wizard-defined-tasks.png │ │ │ └── task-wizard-menu.png │ ├── role-wizard │ │ ├── arw-step-1-basic.png │ │ ├── arw-step-1-select-application.png │ │ ├── arw-step-2-tiles.png │ │ ├── arw-step-3-governance.png │ │ ├── arw-step-3-member.png │ │ ├── arw-step-4-configuration-of-outbound-mappings.png │ │ ├── arw-step-4-select-object-type.png │ │ ├── arw-step-4-select-resource.png │ │ ├── arw-step-4-selecting-of-association.png │ │ ├── brw-step-1-basic.png │ │ ├── brw-step-1-select-application-role.png │ │ ├── index.adoc │ │ └── role-details.png │ ├── sections-object-details │ │ ├── index.adoc │ │ └── screenshot-sections.png │ ├── self-service │ │ ├── dasboard-home.png │ │ ├── image2016-7-14-11-8-15.png │ │ ├── image2017-1-16-1-34-10.png │ │ └── index.adoc │ ├── simulations.adoc │ ├── simulations │ │ ├── simulation-processed-object.png │ │ ├── simulation-processed-objects-error.png │ │ ├── simulation-processed-objects.png │ │ ├── simulation-result.png │ │ ├── simulation-results.png │ │ └── simulations-import-preview.png │ ├── summary-panel-customization │ │ ├── index.adoc │ │ └── summary-pannel-customized.png │ ├── task-list.png │ ├── tasks.adoc │ └── user-interface-form-fields.adoc ├── cases │ ├── approval │ │ ├── examples │ │ │ ├── 1-multi-stage-metarole-driven-approvals.adoc │ │ │ └── index.adoc │ │ ├── index.adoc │ │ └── policy-based-approvals.adoc │ ├── authorizations.adoc │ ├── escalation.adoc │ ├── index.adoc │ ├── multiple-approval-processes.adoc │ └── notifications.adoc ├── concepts │ ├── activation │ │ ├── archived_icon1.png │ │ ├── disable-instead-of-delete.adoc │ │ ├── disabled_icon1.png │ │ ├── enabled_icon.png │ │ └── index.adoc │ ├── channel.adoc │ ├── clockwork │ │ ├── clockwork-and-projector.adoc │ │ ├── conflict-resolution-howto.adoc │ │ ├── hooks.adoc │ │ ├── index.adoc │ │ ├── model-context │ │ │ ├── clockwork-projector-model-context.png │ │ │ ├── index.adoc │ │ │ └── serialization.adoc │ │ └── scripting-hooks.adoc │ ├── configuration-item-lifecycle │ │ ├── index.adoc │ │ ├── lifecycle-states.drawio │ │ └── lifecycle-states.drawio.png │ ├── data-representation-formats.adoc │ ├── index.adoc │ ├── item-path.adoc │ ├── iteration │ │ ├── index.adoc │ │ ├── unique-account-username.adoc │ │ ├── unique-midpoint-user-name.adoc │ │ └── unique-property-value.adoc │ ├── mark │ │ ├── event-marks.adoc │ │ ├── index.adoc │ │ └── managed-and-unmanaged-shadows.adoc │ ├── matching-rules.adoc │ ├── metadata │ │ └── index.adoc │ ├── object-lifecycle │ │ ├── index.adoc │ │ ├── schemas-lifecycle-statechart.odg │ │ ├── schemas-lifecycle-statechart.png │ │ └── task-configurations-and-lifecycle-states-relation.drawio.svg │ ├── polystring.adoc │ ├── query │ │ ├── IMG_24022017_180501_0.png │ │ ├── full-text-search.adoc │ │ ├── image2017-2-28-10-46-42.png │ │ ├── index.adoc │ │ ├── midpoint-query-language │ │ │ ├── advanced-query-select.webp │ │ │ ├── errors │ │ │ │ ├── err-add-unsupported-filter-type.png │ │ │ │ ├── err-add-unsupported-filter.png │ │ │ │ ├── err-cannot-find-enum-value.png │ │ │ │ ├── err-cannot-invoke-subfilter-value-is-null.png │ │ │ │ ├── err-definition-is-not-property.png │ │ │ │ ├── err-path-is-not-present-deref.png │ │ │ │ ├── err-path-is-not-present.png │ │ │ │ ├── err-qname-value-expected.png │ │ │ │ ├── err-unsupported-matching-rule.png │ │ │ │ └── index.adoc │ │ │ ├── expressions.adoc │ │ │ ├── filters.adoc │ │ │ ├── index.adoc │ │ │ ├── query-examples │ │ │ │ ├── advanced-query-save-search.webp │ │ │ │ ├── advanced-query-select.webp │ │ │ │ └── index.adoc │ │ │ ├── query-language-in-groovy.adoc │ │ │ ├── query-playground │ │ │ │ ├── index.adoc │ │ │ │ ├── query-converter.png │ │ │ │ └── query-playground.png │ │ │ └── searchable-items.adoc │ │ ├── query-concepts │ │ │ ├── index.adoc │ │ │ ├── object-reference-object.drawio │ │ │ ├── object-reference-object.png │ │ │ ├── org-filters-relation.drawio │ │ │ ├── org-filters-relation.png │ │ │ ├── org-filters.drawio │ │ │ └── org-filters.png │ │ ├── reindex.PNG │ │ └── xml-query-language.adoc │ ├── relation │ │ ├── index.adoc │ │ └── relation-configuration.adoc │ ├── relativity.adoc │ ├── system-configuration-object.adoc │ └── workflows │ │ ├── external-workflow-integration.adoc │ │ └── index.adoc ├── correlation │ ├── confidence-formula.png │ ├── correlation-case-list.webp │ ├── correlation-cases.adoc │ ├── custom-indexing.adoc │ ├── fuzzy-searching.adoc │ ├── index.adoc │ ├── items-correlator.adoc │ ├── ldap-hris-correlation-case-workitem-resolution.webp │ ├── mapping-redirection-1.drawio.png │ ├── mapping-redirection-2.drawio.png │ ├── mapping-redirection.drawio │ ├── multiple-identity-data-sources.adoc │ ├── naive-example.png │ ├── rule-composition.adoc │ ├── tiers.png │ └── to-discuss.adoc ├── deployment │ ├── clustering-ha │ │ ├── index.adoc │ │ ├── managing-cluster-nodes.adoc │ │ └── midpoint-HA-deployment-schema-two-nodes.svg │ ├── concepts │ │ ├── Basic-Deployment.png │ │ ├── Complex-Deployment.png │ │ ├── Connector-Server-Deployment.png │ │ ├── Remote-Connector-Server-Deployment.png │ │ └── index.adoc │ ├── index.adoc │ ├── initial-objects.adoc │ ├── maintaining-midpoint-configuration-as-files.adoc │ ├── maven-overlay-project.adoc │ ├── midpoint-home-directory │ │ ├── index.adoc │ │ └── overriding-config-xml-parameters.adoc │ ├── multitenancy.adoc │ ├── ninja │ │ ├── command │ │ │ ├── count.adoc │ │ │ ├── delete.adoc │ │ │ ├── download-distribution.adoc │ │ │ ├── export-audit.adoc │ │ │ ├── export-configuration.adoc │ │ │ ├── export-focus-statistics.adoc │ │ │ ├── export-mining.adoc │ │ │ ├── export-resource-schema.adoc │ │ │ ├── export-shadow-statistics.adoc │ │ │ ├── export.adoc │ │ │ ├── help.adoc │ │ │ ├── import-audit.adoc │ │ │ ├── import.adoc │ │ │ ├── index.adoc │ │ │ ├── info.adoc │ │ │ ├── initial-objects.adoc │ │ │ ├── keys.adoc │ │ │ ├── pre-upgrade-check.adoc │ │ │ ├── run-sql.adoc │ │ │ ├── trace.adoc │ │ │ ├── upgrade-distribution.adoc │ │ │ ├── upgrade-installation.adoc │ │ │ ├── upgrade-objects.adoc │ │ │ ├── verify-audit.adoc │ │ │ └── verify.adoc │ │ ├── index.adoc │ │ └── use-case │ │ │ ├── administrator-unlock.adoc │ │ │ ├── index.adoc │ │ │ └── upgrade-with-ninja.adoc │ ├── ports-80-and-443.adoc │ ├── post-initial-import.adoc │ ├── removing-obsolete-information.adoc │ ├── service-account-management │ │ ├── index.adoc │ │ └── service-accounts.png │ ├── spring-boot-actuator-endpoints.adoc │ └── stand-alone-deployment.adoc ├── diag │ ├── aggressive-log-report.adoc │ ├── common-problems.adoc │ ├── diagnostics-abbreviations.adoc │ ├── index.adoc │ ├── logging │ │ ├── configuration.adoc │ │ ├── index.adoc │ │ ├── initial-logging.adoc │ │ ├── log-levels.adoc │ │ ├── syslog-logging.adoc │ │ └── useful-loggers.adoc │ ├── performance.adoc │ ├── progress-reporting-and-abort.adoc │ ├── thread-dump │ │ ├── image2019-2-11-11-30-36.png │ │ ├── image2019-2-11-11-31-55.png │ │ ├── image2019-2-11-11-33-6.png │ │ ├── image2019-2-11-11-34-26.png │ │ ├── image2019-2-11-11-35-9.png │ │ └── index.adoc │ └── troubleshooting │ │ ├── authorizations.adoc │ │ ├── connectors.adoc │ │ ├── index.adoc │ │ ├── localization.adoc │ │ ├── mappings │ │ ├── 9-2-lens-provisioning-structure.png │ │ └── index.adoc │ │ ├── troubleshooting-task-performance.adoc │ │ ├── troubleshooting-with-traces │ │ ├── image2019-10-14_15-22-46.png │ │ ├── image2019-10-14_15-24-0.png │ │ ├── image2020-3-27_9-13-50.png │ │ ├── image2020-3-27_9-22-44.png │ │ ├── index.adoc │ │ └── trace-visualization │ │ │ ├── image2020-3-27_10-0-1.png │ │ │ ├── image2020-3-27_9-22-44.png │ │ │ └── index.adoc │ │ └── usual-troubleshooting-steps.adoc ├── docstest │ ├── index.html │ └── params.html ├── expressions │ ├── constants │ │ ├── configuration.adoc │ │ └── index.adoc │ ├── expression-trace.adoc │ ├── expressions │ │ ├── filter │ │ │ └── index.adoc │ │ ├── index.adoc │ │ ├── profiles │ │ │ ├── configuration.adoc │ │ │ ├── coverage.adoc │ │ │ └── index.adoc │ │ ├── script │ │ │ ├── functions │ │ │ │ ├── get-and-search.adoc │ │ │ │ ├── index.adoc │ │ │ │ └── midpoint.adoc │ │ │ ├── groovy.adoc │ │ │ ├── index.adoc │ │ │ ├── javascript.adoc │ │ │ ├── nashorn-downloads │ │ │ │ └── nashorn-mp44.zip │ │ │ └── python.adoc │ │ └── security │ │ │ └── index.adoc │ ├── function-libraries │ │ ├── configuration.adoc │ │ └── index.adoc │ ├── index.adoc │ ├── mappings │ │ ├── condition │ │ │ └── index.adoc │ │ ├── inbound-mapping.adoc │ │ ├── index.adoc │ │ ├── mapping-complete.drawio │ │ ├── mapping-complete.png │ │ ├── mapping-evaluation-examples.adoc │ │ ├── mapping-guide.adoc │ │ ├── mapping-relativity │ │ │ ├── index.adoc │ │ │ ├── mapping-delta-processing-1.png │ │ │ ├── mapping-delta-processing-2.png │ │ │ ├── mapping-delta-processing-3.png │ │ │ ├── mapping-delta-processing-4.png │ │ │ ├── mapping-delta-processing-5.png │ │ │ └── mapping-delta-processing.drawio │ │ ├── outbound-mapping │ │ │ ├── index.adoc │ │ │ └── synchronization-outbound.png │ │ ├── proposed-improvements.adoc │ │ ├── range │ │ │ ├── custom-mapping-range-multiple-1.png │ │ │ ├── custom-mapping-range-multiple-2.png │ │ │ ├── custom-mapping-range-multiple-3.png │ │ │ ├── custom-mapping-range-single-1.png │ │ │ ├── custom-mapping-range-single-2.png │ │ │ ├── custom-mapping-range-single-3.png │ │ │ ├── custom-mapping-range-single-4.png │ │ │ ├── custom.adoc │ │ │ ├── index.adoc │ │ │ ├── mapping-range-multiple-1.png │ │ │ ├── mapping-range-multiple-2.png │ │ │ ├── mapping-range-multiple-3.png │ │ │ ├── mapping-range-multiple-overlap-1.png │ │ │ ├── mapping-range-multiple-overlap-2.png │ │ │ ├── mapping-range-multiple-overlap-3.png │ │ │ ├── mapping-range-multiple-overlap-4.png │ │ │ ├── mapping-range-multiple-overlap.drawio │ │ │ ├── mapping-range-multiple.drawio │ │ │ ├── mapping-range-single-1.png │ │ │ ├── mapping-range-single-2.png │ │ │ ├── mapping-range-single-3.png │ │ │ ├── mapping-range-single-4.png │ │ │ └── mapping-range-single.drawio │ │ ├── synchronization-mapping-fullname.png │ │ └── synchronization-mapping.png │ ├── non-tolerant-induced-focus-mapping.adoc │ ├── object-template.adoc │ ├── practices │ │ ├── gotchas.adoc │ │ ├── index.adoc │ │ └── removing-values.adoc │ ├── sequences │ │ ├── configuration.adoc │ │ └── index.adoc │ ├── synchronization-mapping.png │ └── variables.adoc ├── index.adoc ├── interfaces │ ├── index.adoc │ ├── invoking-midpoint-services │ │ ├── index.adoc │ │ └── midPoint-Interfaces.png │ ├── midpoint-client-java │ │ ├── client-architecture.png │ │ └── index.adoc │ ├── model-java │ │ ├── index.adoc │ │ └── introduction.adoc │ └── rest │ │ ├── concepts │ │ ├── authentication.adoc │ │ ├── index.adoc │ │ ├── media-types-rest.adoc │ │ ├── methods-http-and-outcome.adoc │ │ ├── raw │ │ │ ├── index.adoc │ │ │ └── outcome.adoc │ │ └── using-rest-examples.adoc │ │ ├── endpoints │ │ ├── access-certification-campaign-type.adoc │ │ ├── access-certification-definition-type.adoc │ │ ├── archetypes.adoc │ │ ├── cases.adoc │ │ ├── connector-hosts.adoc │ │ ├── connectors.adoc │ │ ├── dashboards.adoc │ │ ├── forms.adoc │ │ ├── functions.adoc │ │ ├── generic-objects.adoc │ │ ├── index.adoc │ │ ├── lookup-tables.adoc │ │ ├── nodes.adoc │ │ ├── object-collections.adoc │ │ ├── object-templates.adoc │ │ ├── organizational-units.adoc │ │ ├── report-data.adoc │ │ ├── reports.adoc │ │ ├── resources.adoc │ │ ├── roles.adoc │ │ ├── rpc.adoc │ │ ├── security-policies.adoc │ │ ├── sequences.adoc │ │ ├── services.adoc │ │ ├── shadows.adoc │ │ ├── system-configurations.adoc │ │ ├── tasks.adoc │ │ ├── users.adoc │ │ └── value-policies.adoc │ │ ├── index.adoc │ │ ├── operations │ │ ├── create-op-rest.adoc │ │ ├── delete-op-rest.adoc │ │ ├── examples │ │ │ ├── access-request-approval.adoc │ │ │ ├── access-request.adoc │ │ │ ├── create-get-report.adoc │ │ │ ├── create-object.adoc │ │ │ ├── create-user.adoc │ │ │ ├── demonstration-or-workaround │ │ │ │ ├── approvals-via-rest-howto.adoc │ │ │ │ └── index.adoc │ │ │ ├── get-user-self.adoc │ │ │ ├── get-user-unique-id.adoc │ │ │ ├── index.adoc │ │ │ ├── raw │ │ │ │ ├── create-acc.adoc.adoc │ │ │ │ ├── create-ou-projects.adoc │ │ │ │ ├── create-report.adoc │ │ │ │ ├── create-resource.adoc │ │ │ │ ├── create-role-employee.adoc │ │ │ │ ├── create-task-report.adoc │ │ │ │ ├── create-task.adoc │ │ │ │ ├── create-user-jack.adoc │ │ │ │ ├── curl-authenticatoin-intro-note.adoc │ │ │ │ ├── delete-acc.adoc │ │ │ │ ├── delete-case.adoc │ │ │ │ ├── delete-ou.adoc │ │ │ │ ├── delete-reports.adoc │ │ │ │ ├── delete-resource.adoc │ │ │ │ ├── delete-role.adoc │ │ │ │ ├── delete-task.adoc │ │ │ │ ├── delete-user.adoc │ │ │ │ ├── execute-script-rpc.adoc │ │ │ │ ├── generate-value-rpc.adoc │ │ │ │ ├── get-acc.adoc │ │ │ │ ├── get-case-employee.adoc │ │ │ │ ├── get-direct-indirect-assignments.adoc │ │ │ │ ├── get-ou-projects.adoc │ │ │ │ ├── get-reports.adoc │ │ │ │ ├── get-resource.adoc │ │ │ │ ├── get-role-end-user.adoc │ │ │ │ ├── get-shadow-owner.adoc │ │ │ │ ├── get-task.adoc │ │ │ │ ├── get-user-administrator.adoc │ │ │ │ ├── get-user-self-xml.adoc │ │ │ │ ├── import-from-resource.adoc │ │ │ │ ├── import-shadow.adoc │ │ │ │ ├── index.adoc │ │ │ │ ├── modify-attr-acc.adoc │ │ │ │ ├── modify-attr-case-assign-employee.adoc │ │ │ │ ├── modify-attr-empty.adoc │ │ │ │ ├── modify-attr-entitlement.adoc │ │ │ │ ├── modify-attr-ou-projects.adoc │ │ │ │ ├── modify-attr-reports.adoc │ │ │ │ ├── modify-attr-res-cap.adoc │ │ │ │ ├── modify-attr-resource.adoc │ │ │ │ ├── modify-attr-role-employee.adoc │ │ │ │ ├── modify-attr-task.adoc │ │ │ │ ├── modify-attr-user-op-reconcile.adoc │ │ │ │ ├── modify-attr-user.adoc │ │ │ │ ├── modify-attr.adoc │ │ │ │ ├── modify-id-generate.adoc │ │ │ │ ├── modify-user-assign-role.adoc │ │ │ │ ├── notify-change-password.adoc │ │ │ │ ├── notify-change-pwd.adoc │ │ │ │ ├── org-id-generate.adoc │ │ │ │ ├── role-id-generate.adoc │ │ │ │ ├── search-all-acc.adoc │ │ │ │ ├── search-all-cases.adoc │ │ │ │ ├── search-all-ou.adoc │ │ │ │ ├── search-all-reports.adoc │ │ │ │ ├── search-all-resource.adoc │ │ │ │ ├── search-all-roles.adoc │ │ │ │ ├── search-all-tasks.adoc │ │ │ │ ├── search-all-users.adoc │ │ │ │ ├── search-all.adoc │ │ │ │ ├── search-case-open-approval.adoc │ │ │ │ ├── search-case-open-user.adoc │ │ │ │ ├── search-gen-name.adoc │ │ │ │ ├── search-name-cases.adoc │ │ │ │ ├── search-name-ou.adoc │ │ │ │ ├── search-name-reports.adoc │ │ │ │ ├── search-name-resource.adoc │ │ │ │ ├── search-name-roles.adoc │ │ │ │ ├── search-name-tasks.adoc │ │ │ │ ├── search-name-users.adoc │ │ │ │ ├── search-report-data-from-report-def.adoc │ │ │ │ ├── search-requestable-from-role-catalog-cases.adoc │ │ │ │ ├── task-op-resume.adoc │ │ │ │ ├── task-op-run.adoc │ │ │ │ ├── task-op-suspend.adoc │ │ │ │ ├── test-resource.adoc │ │ │ │ ├── user-get-value-policy.adoc │ │ │ │ ├── user-pwd-generate.adoc │ │ │ │ ├── user-pwd-reset.adoc │ │ │ │ └── validate-value-rpc.adoc │ │ │ ├── search-objects-filter.adoc │ │ │ └── user-pwd-reset.adoc │ │ ├── generate-and-validate-concrete-op-rest.adoc │ │ ├── generate-and-validate-op-rest.adoc │ │ ├── get-op-rest.adoc │ │ ├── index.adoc │ │ ├── modify-op-rest.adoc │ │ ├── notify-op-rest.adoc │ │ ├── raw │ │ │ ├── a-auth.adoc │ │ │ ├── index.adoc │ │ │ ├── m-auth.adoc │ │ │ ├── operation-prop-search.adoc │ │ │ ├── options-usage-meo.adoc │ │ │ └── options-usage.adoc │ │ ├── resource-op-rest.adoc │ │ ├── script-execute-op-rest.adoc │ │ ├── search-op-rest.adoc │ │ ├── shadow-op-rest.adoc │ │ ├── task-specific-op-rest.adoc │ │ └── user-specific-op-rest.adoc │ │ └── raw │ │ ├── curl-env-note.adoc │ │ └── index.adoc ├── misc │ ├── bulk │ │ ├── actions │ │ │ ├── generate-value.adoc │ │ │ ├── index.adoc │ │ │ ├── recompute.adoc │ │ │ ├── script-and-expression.adoc │ │ │ └── search.adoc │ │ ├── constant.adoc │ │ ├── filter-content.adoc │ │ ├── index.adoc │ │ ├── password.adoc │ │ ├── pipeline.adoc │ │ ├── raw-mode.adoc │ │ ├── runscript.adoc │ │ ├── scripting-tasks.adoc │ │ ├── select.adoc │ │ ├── sequence.adoc │ │ └── variables.adoc │ ├── deputy.adoc │ ├── index.adoc │ ├── lookup-tables.adoc │ ├── notifications │ │ ├── configuration-4.4-and-before.adoc │ │ ├── configuration.adoc │ │ ├── custom-transport.adoc │ │ ├── general.adoc │ │ ├── images │ │ │ ├── message-templates-class-diagram.png │ │ │ ├── message-templates-gui-edit-content.png │ │ │ └── message-templates-gui-list.png │ │ ├── index.adoc │ │ ├── message-templates.adoc │ │ ├── sending-custom-notifications.adoc │ │ ├── task-notifications.adoc │ │ └── velocity.adoc │ ├── persona │ │ ├── configuration.adoc │ │ ├── index.adoc │ │ └── personas.png │ ├── prism-experimental-features.adoc │ ├── reports │ │ ├── configuration │ │ │ ├── collection-columns.png │ │ │ ├── collection-example.png │ │ │ ├── collection-parameter-example.png │ │ │ ├── collection-parameters.png │ │ │ ├── collection-query.png │ │ │ ├── collection-report.adoc │ │ │ ├── collection-subreport.png │ │ │ ├── dashboard-example-old.png │ │ │ ├── dashboard-example.png │ │ │ ├── dashboard-report.adoc │ │ │ ├── dashboard-view.png │ │ │ ├── import-report.adoc │ │ │ ├── index.adoc │ │ │ ├── legacy │ │ │ │ ├── index.adoc │ │ │ │ └── rewrite-jasper-to-object-collection-report.adoc │ │ │ ├── post-report-script.adoc │ │ │ ├── report-configuration-tips.adoc │ │ │ ├── report-functions.adoc │ │ │ ├── report-parameter.png │ │ │ ├── report-security.adoc │ │ │ ├── report-task-converting.png │ │ │ ├── report-task-definition.adoc │ │ │ └── users.png │ │ ├── create-report-guide │ │ │ ├── advanced │ │ │ │ ├── coll-filter.png │ │ │ │ ├── coll-shadow.png │ │ │ │ ├── custom-column.png │ │ │ │ ├── download-r.png │ │ │ │ ├── index.adoc │ │ │ │ ├── mail-own-exp.png │ │ │ │ ├── prev-column.png │ │ │ │ ├── preview.png │ │ │ │ ├── report-arch.png │ │ │ │ ├── report-collection.png │ │ │ │ ├── report-owner-mail.png │ │ │ │ ├── report-param.png │ │ │ │ ├── report-profile.png │ │ │ │ ├── report-view-init.png │ │ │ │ ├── reports-all.png │ │ │ │ ├── run-o-r.png │ │ │ │ ├── run-r.png │ │ │ │ ├── show-preview.png │ │ │ │ ├── show-t.png │ │ │ │ ├── sub-report-exp.png │ │ │ │ └── sub-report.png │ │ │ ├── conf-b-run-old.png │ │ │ ├── conf-b-run.png │ │ │ ├── download-usrs-in-mp-old.png │ │ │ ├── download-usrs-in-mp.png │ │ │ ├── export-report.png │ │ │ ├── index.adoc │ │ │ ├── intermediate │ │ │ │ ├── all-users-tester.png │ │ │ │ ├── index.adoc │ │ │ │ ├── mptesters-download-report.png │ │ │ │ ├── report-mptesters-ff.png │ │ │ │ ├── report-mptesters-view.png │ │ │ │ ├── report-mptesters.png │ │ │ │ └── users-all-report-exec.png │ │ │ ├── new-collection-report.png │ │ │ ├── reports-all-old.png │ │ │ ├── reports-all.png │ │ │ ├── run-usrs-in-mp-old.png │ │ │ ├── run-usrs-in-mp.png │ │ │ ├── show-tasks.png │ │ │ ├── users-all.png │ │ │ └── users-in-mp.png │ │ ├── examples │ │ │ ├── audit-report-with-changed-attributes.adoc │ │ │ ├── comparing-attributes-of-shadow-and-attributes-of-user-in-mp.adoc │ │ │ ├── example-policysituation │ │ │ │ └── index.adoc │ │ │ ├── example-report-audit-administrativestatus.adoc │ │ │ ├── example-report-number-of-members │ │ │ │ └── index.adoc │ │ │ ├── example-shadows-on-resource │ │ │ │ └── index.adoc │ │ │ ├── index.adoc │ │ │ ├── long-unchanged-accounts.adoc │ │ │ ├── reference-search-based-report.adoc │ │ │ └── users-without-account.adoc │ │ ├── index.adoc │ │ ├── raw │ │ │ ├── file-format.adoc │ │ │ └── index.adoc │ │ └── report-formats.adoc │ ├── self-registration │ │ ├── confirm-message.png │ │ ├── confirmation-mail.png │ │ ├── confirmation-success.png │ │ ├── index.adoc │ │ ├── login-page.png │ │ ├── registration-page.png │ │ └── self-registration.png │ ├── services │ │ ├── index.adoc │ │ ├── serviceDefinition.png │ │ └── userServiceAssignment.png │ └── tips-tricks.adoc ├── org │ ├── index.adoc │ └── organizational-structure │ │ ├── index.adoc │ │ ├── org-1.png │ │ ├── org-2.png │ │ ├── org-3.png │ │ ├── org-4.png │ │ └── org-5.png ├── repository │ ├── configuration.adoc │ ├── images │ │ └── native-tables-audit.png │ ├── index.adoc │ ├── native-audit.adoc │ ├── native-postgresql │ │ ├── db-maintenance.adoc │ │ ├── design-and-implementation.adoc │ │ ├── index.adoc │ │ ├── migration.adoc │ │ ├── postgresql-configuration.adoc │ │ ├── repo-native.drawio │ │ ├── repo-native.png │ │ ├── shadow-partitioning.adoc │ │ ├── splitted-fullobject.adoc │ │ └── usage.adoc │ ├── repository-database-support.adoc │ ├── repository-objects-inspection.adoc │ └── sql-schema-scripts.adoc ├── resources │ ├── asynchronous │ │ ├── inbound │ │ │ └── index.adoc │ │ ├── index.adoc │ │ └── outbound │ │ │ ├── Asynchronous provisioning.drawio │ │ │ ├── Asynchronous-provisioning.png │ │ │ ├── configuration │ │ │ ├── image2020-12-1_17-23-2.png │ │ │ ├── image2020-12-1_17-27-3.png │ │ │ ├── image2020-12-1_17-27-58.png │ │ │ └── index.adoc │ │ │ └── index.adoc │ ├── attribute-caching.adoc │ ├── auxiliary-object-classes.adoc │ ├── connector-setup.adoc │ ├── connid.adoc │ ├── entitlements │ │ ├── index.adoc │ │ ├── schemas-entitlement-1.png │ │ ├── schemas-entitlement-2.png │ │ ├── schemas-entitlement-3.png │ │ └── schemas-entitlement.odg │ ├── index.adoc │ ├── maintenance-state.adoc │ ├── manual │ │ ├── configuration.adoc │ │ ├── index.adoc │ │ └── itsm-plugin.adoc │ ├── multi-connector-resource.adoc │ ├── multiaccounts.adoc │ ├── propagation │ │ ├── configuration.adoc │ │ └── index.adoc │ ├── provisioning-dependencies.adoc │ ├── provisioning-scripts.adoc │ ├── resource-configuration │ │ ├── business.adoc │ │ ├── capabilities.adoc │ │ ├── consistency.adoc │ │ ├── index.adoc │ │ ├── inheritance │ │ │ ├── index.adoc │ │ │ ├── templates-and-object-types-single-resource.drawio.png │ │ │ ├── templates-and-object-types-two-resources.drawio.png │ │ │ ├── templates-and-object-types.drawio │ │ │ ├── templates-and-object-types.drawio.png │ │ │ ├── templates.drawio │ │ │ └── templates.drawio.png │ │ ├── paged-search-on-resources.adoc │ │ ├── protected-accounts.adoc │ │ ├── read-only-resource.adoc │ │ ├── schema-handling │ │ │ ├── activation.adoc │ │ │ ├── attributes │ │ │ │ ├── exclusive-strong.adoc │ │ │ │ ├── fetch-strategy.adoc │ │ │ │ ├── index.adoc │ │ │ │ ├── limitations.adoc │ │ │ │ ├── read-replace-and-modification-priority.adoc │ │ │ │ ├── secondary-identifier.adoc │ │ │ │ └── tolerance.adoc │ │ │ ├── behavior.adoc │ │ │ ├── classification.adoc │ │ │ ├── credentials.adoc │ │ │ ├── defaults.adoc │ │ │ ├── delineation.adoc │ │ │ ├── delineation1.webp │ │ │ ├── focus.adoc │ │ │ ├── index.adoc │ │ │ ├── object-classes.adoc │ │ │ ├── object-types.adoc │ │ │ ├── schemas-schemahandling-overview.png │ │ │ ├── synchronization.adoc │ │ │ └── volatility.adoc │ │ ├── simulated-disable.adoc │ │ └── string-to-protectedstring-connector-configuration.adoc │ ├── resource-schema │ │ ├── explanation │ │ │ ├── index.adoc │ │ │ ├── schemas-def.png │ │ │ └── schemas-ref.png │ │ └── index.adoc │ ├── shadow │ │ ├── dead.adoc │ │ ├── index.adoc │ │ ├── integrity-check.adoc │ │ ├── kind-intent-objectclass.adoc │ │ ├── purpose.adoc │ │ └── schemas-shadow.png │ └── weird.adoc ├── roles-policies │ ├── index.adoc │ ├── policies │ │ ├── applicable-policies │ │ │ ├── applicable_policies.png │ │ │ ├── applicable_policies.webp │ │ │ ├── applicable_policies_assignments.png │ │ │ ├── applicable_policies_assignments.webp │ │ │ ├── assignments-rbac-policy-metarole.drawio │ │ │ ├── assignments-rbac-policy-metarole.png │ │ │ ├── assignments-rbac-policy-metarole.webp │ │ │ ├── configuration.adoc │ │ │ ├── index.adoc │ │ │ ├── policy_groups.png │ │ │ └── policy_groups.webp │ │ ├── certification │ │ │ ├── actions.adoc │ │ │ ├── ad-hoc-certification.adoc │ │ │ ├── authorization.adoc │ │ │ ├── button-configuration.jpg │ │ │ ├── columns-configuration.adoc │ │ │ ├── determining-case-outcome.adoc │ │ │ ├── escalation.adoc │ │ │ ├── index.adoc │ │ │ ├── iteration │ │ │ │ ├── campaign_notifications_user_dashboard.webp │ │ │ │ ├── campaign_overview.webp │ │ │ │ ├── campaign_overview_stats.webp │ │ │ │ ├── image2018-7-4-15-34-48.png │ │ │ │ ├── image2018-7-4-15-34-48.webp │ │ │ │ └── index.adoc │ │ │ ├── notifications.adoc │ │ │ ├── reports │ │ │ │ ├── cert-campaign-report.png │ │ │ │ ├── cert-case-report.png │ │ │ │ ├── cert-definition-report.png │ │ │ │ ├── cert-work-item.png │ │ │ │ ├── image2016-2-3-22-1-51.png │ │ │ │ ├── image2016-2-3-22-2-52.png │ │ │ │ ├── image2016-2-3-22-53-49.png │ │ │ │ ├── image2016-2-3-22-55-31.png │ │ │ │ └── index.adoc │ │ │ ├── scheduling.jpg │ │ │ ├── stages.adoc │ │ │ └── tutorial │ │ │ │ ├── active-campaigns.png │ │ │ │ ├── campaign-details.png │ │ │ │ ├── campaign-responses-panel.png │ │ │ │ ├── campaign-statistics-panel.png │ │ │ │ ├── campaigns-page.png │ │ │ │ ├── cert-items.png │ │ │ │ ├── closed-campaign.png │ │ │ │ ├── index.adoc │ │ │ │ ├── left-menu-cert-items.png │ │ │ │ └── remediation-started.png │ │ ├── classification │ │ │ └── index.adoc │ │ ├── gradual-policy-enforcement │ │ │ ├── compliance-dashboard-sod.png │ │ │ └── index.adoc │ │ ├── identity-governance-rules │ │ │ ├── dashboard-widget-orphaned-applications.png │ │ │ ├── index.adoc │ │ │ ├── policy-rules-marks.drawio │ │ │ └── policy-rules-marks.png │ │ ├── index.adoc │ │ ├── metaroles │ │ │ ├── gensync │ │ │ │ ├── index.adoc │ │ │ │ ├── rbac-meta-1.png │ │ │ │ ├── rbac-meta-2.png │ │ │ │ ├── rbac-meta-3.png │ │ │ │ └── rbac-meta-4.png │ │ │ ├── index.adoc │ │ │ └── policy │ │ │ │ ├── assignments-rbac-policy-metarole.png │ │ │ │ └── index.adoc │ │ ├── object-governance │ │ │ ├── index.adoc │ │ │ └── website-governance-owner.png │ │ ├── policy-rule-constraints-examples.adoc │ │ ├── policy-rule-examples.adoc │ │ ├── policy-rules.adoc │ │ ├── preconfigured-policies │ │ │ └── index.adoc │ │ ├── privileged-access │ │ │ ├── index.adoc │ │ │ ├── privileged-access-classification-assigned-screenshot.png │ │ │ ├── privileged-access-mark-applied-screenshot.png │ │ │ └── privileged-access-widgets-screenshot.png │ │ └── segregation-of-duties.adoc │ ├── roles │ │ ├── assignment │ │ │ ├── assigning-vs-linking │ │ │ │ ├── assignments-link-1.png │ │ │ │ └── index.adoc │ │ │ ├── assignment-path-variables-example │ │ │ │ ├── assignments-variables-c4s.png │ │ │ │ ├── assignments-variables-c5s.png │ │ │ │ ├── assignments-variables-human-s.png │ │ │ │ ├── assignments-variables.png │ │ │ │ └── index.adoc │ │ │ ├── assignment-vs-inducement │ │ │ │ ├── assignments-both-1.png │ │ │ │ ├── assignments-link-2.png │ │ │ │ ├── assignments-role-2.png │ │ │ │ └── index.adoc │ │ │ ├── assignments-construction-1.png │ │ │ ├── assignments-link-1.png │ │ │ ├── assignments-role-1.png │ │ │ ├── configuration │ │ │ │ ├── assignments-construction-1.png │ │ │ │ ├── assignments-construction-entitlement-1.png │ │ │ │ ├── assignments-link-1.png │ │ │ │ ├── assignments-role-1.png │ │ │ │ └── index.adoc │ │ │ ├── index.adoc │ │ │ ├── parentorgref-and-assignments.adoc │ │ │ └── using-assignment-path-in-expressions.adoc │ │ ├── automatic-role-assignment.adoc │ │ ├── index.adoc │ │ ├── mining │ │ │ ├── anonymous-data-export │ │ │ │ ├── images │ │ │ │ │ ├── filter-tutorial.png │ │ │ │ │ ├── nav-tutorial-part-1.png │ │ │ │ │ ├── nav-tutorial-part-2.png │ │ │ │ │ ├── nav-tutorial-part-3.png │ │ │ │ │ └── nav-tutorial-part-4.png │ │ │ │ └── index.adoc │ │ │ └── index.adoc │ │ ├── outlier-detection │ │ │ └── index.adoc │ │ ├── pdrbac │ │ │ ├── index.adoc │ │ │ ├── pdrbac-midpoint-overview.png │ │ │ ├── pdrbac-overview.drawio │ │ │ ├── pdrbac-overview.png │ │ │ └── rbac-overview.png │ │ ├── rbac │ │ │ ├── best-practice.adoc │ │ │ ├── index.adoc │ │ │ ├── radio-button-roles.adoc │ │ │ ├── rbac-1.png │ │ │ └── rbac-6.png │ │ ├── role-autoassignment │ │ │ ├── configuration.adoc │ │ │ └── index.adoc │ │ ├── role-lifecycle.adoc │ │ ├── roles-and-policies-configuration │ │ │ ├── Implied-Account-Entitlements.png │ │ │ ├── index.adoc │ │ │ ├── rbac-1.png │ │ │ ├── rbac-2.png │ │ │ ├── rbac-4.png │ │ │ ├── rbac-5.png │ │ │ └── rbac-6.png │ │ └── roles-services-and-orgs.adoc │ └── roles_policies.webp ├── samples │ ├── configurable-transform-sample │ │ ├── custom-transform-crop.png │ │ ├── index.adoc │ │ └── user-jrandom-transform.png │ ├── distribution-samples.adoc │ ├── evolveum-demo-sample.adoc │ ├── index.adoc │ ├── iot-cloud │ │ ├── index.adoc │ │ ├── key-distribution-description │ │ │ ├── image2016-8-17-17-21-23.png │ │ │ ├── image2016-8-17-17-32-38.png │ │ │ ├── index.adoc │ │ │ └── schema-1.png │ │ ├── midpoint-object-attributes.adoc │ │ ├── schema-0.png │ │ └── thingspeak-resource.adoc │ ├── ldap-posixaccount-and-posixgroup-management.adoc │ ├── multitenant-saas.adoc │ ├── next-generation-directory-based-user-management-for-cloud-infrastructure │ │ ├── Screen-Shot-2016-09-16-at-10.11.57.png │ │ ├── Screen-Shot-2016-09-16-at-16.38.05.png │ │ ├── Screen-Shot-2016-09-16-at-16.38.15.png │ │ ├── Screen-Shot-2016-09-16-at-16.38.25.png │ │ ├── Screen-Shot-2016-09-16-at-16.38.35.png │ │ ├── Screen-Shot-2016-09-16-at-16.38.55.png │ │ ├── Screen-Shot-2016-09-16-at-16.39.03.png │ │ ├── big-picture.png │ │ └── index.adoc │ ├── object-counts.adoc │ └── story-tests │ │ ├── index.adoc │ │ ├── ldap-hierarchy.adoc │ │ ├── orgsync.adoc │ │ └── unix.adoc ├── schema │ ├── archetypes │ │ ├── configuration-gui │ │ │ ├── archetype-gui-basic-01.webp │ │ │ ├── archetypes-in-object-type-wizard.adoc │ │ │ ├── index.adoc │ │ │ └── object-type-midpoint-data-archetype-selection.webp │ │ ├── configuration.adoc │ │ ├── index.adoc │ │ ├── person-example.png │ │ └── person.adoc │ ├── common-data-model │ │ ├── index.adoc │ │ ├── synchronization-overview.png │ │ ├── synchronization-user-account.png │ │ └── synchronization-user.png │ ├── custom-schema-extension │ │ ├── changing-schema-extension-via-GUI │ │ │ ├── change.png │ │ │ ├── index.adoc │ │ │ ├── wizard-1.png │ │ │ ├── wizard-2.png │ │ │ ├── wizard-3.png │ │ │ ├── wizard-4-edit.png │ │ │ └── wizard-4.png │ │ ├── convert-schema-file-to-schema-object.adoc │ │ └── index.adoc │ ├── data-model-essentials │ │ ├── index.adoc │ │ ├── schemas-datamodel-1.png │ │ ├── schemas-datamodel-2.png │ │ ├── schemas-datamodel-3.png │ │ ├── schemas-datamodel-account-shadow.png │ │ ├── schemas-datamodel-connector.png │ │ ├── schemas-datamodel-resource.png │ │ └── schemas2-datamodel-user.png │ ├── focus-and-projections │ │ ├── focus-projection-1.png │ │ ├── focus-projection-2.png │ │ ├── focus-projection-3.png │ │ ├── focus-projection-4.png │ │ └── index.adoc │ ├── generic-objects.adoc │ ├── index.adoc │ ├── notes.adoc │ ├── object-references │ │ ├── index.adoc │ │ ├── object-references-composite.png │ │ ├── object-references-ref-cascade.png │ │ ├── object-references-ref.png │ │ └── object-references-smart-ref.png │ ├── policy.adoc │ ├── polystring-normalization.adoc │ ├── schemadoc.adoc │ └── subtype.adoc ├── security │ ├── audit │ │ └── index.adoc │ ├── authentication │ │ ├── administrator-initial-password.adoc │ │ ├── flexible-authentication │ │ │ ├── concept.adoc │ │ │ ├── configuration.adoc │ │ │ ├── index.adoc │ │ │ ├── modules │ │ │ │ ├── archetypeSelection.adoc │ │ │ │ ├── attributeVerification.adoc │ │ │ │ ├── correlation.adoc │ │ │ │ ├── duo.adoc │ │ │ │ ├── focusIdentification.adoc │ │ │ │ ├── hint.adoc │ │ │ │ ├── httpBasic.adoc │ │ │ │ ├── httpHeader.adoc │ │ │ │ ├── httpSecQ.adoc │ │ │ │ ├── ldap.adoc │ │ │ │ ├── loginForm.adoc │ │ │ │ ├── mailNonce.adoc │ │ │ │ ├── oidc.adoc │ │ │ │ ├── saml2.adoc │ │ │ │ └── securityQuestionsForm.adoc │ │ │ └── sequence.adoc │ │ ├── index.adoc │ │ └── post-authentication-configuration.adoc │ ├── authorization │ │ ├── actuators.adoc │ │ ├── admin-gui.adoc │ │ ├── bulk-actions.adoc │ │ ├── configuration │ │ │ ├── index.adoc │ │ │ ├── security-autz-model.png │ │ │ ├── security-role-org.png │ │ │ ├── security-subject-action-object-target.png │ │ │ ├── security-subject-action-object.png │ │ │ └── selectors │ │ │ │ ├── archetypeRef.adoc │ │ │ │ ├── assignee.adoc │ │ │ │ ├── delegator.adoc │ │ │ │ ├── filter.adoc │ │ │ │ ├── orgRef.adoc │ │ │ │ ├── orgRelation.adoc │ │ │ │ ├── owner.adoc │ │ │ │ ├── relatedObject.adoc │ │ │ │ ├── requester.adoc │ │ │ │ ├── self.adoc │ │ │ │ ├── tenant.adoc │ │ │ │ └── type-and-parent.adoc │ │ ├── index.adoc │ │ ├── model.adoc │ │ ├── roles.adoc │ │ └── service.adoc │ ├── credentials │ │ ├── identity-recovery │ │ │ ├── archetype-selection-module.png │ │ │ ├── confirm-my-identity.png │ │ │ ├── correlation-module-1.png │ │ │ ├── correlation-module-2.png │ │ │ ├── found-identities.png │ │ │ ├── index.adoc │ │ │ ├── login-panel.png │ │ │ └── restart-flow-button.png │ │ ├── index.adoc │ │ ├── initial-password-management-discussion.adoc │ │ ├── password-policy.adoc │ │ ├── password-related-configuration.adoc │ │ ├── password-reset │ │ │ ├── attribute-verification-module.png │ │ │ ├── change-password-panel.png │ │ │ ├── focus-identification-module.png │ │ │ ├── hint-module.png │ │ │ ├── index.adoc │ │ │ ├── mail-nonce-module.png │ │ │ ├── password-reset-link.png │ │ │ ├── process-overview.adoc │ │ │ └── security-questions-module.png │ │ ├── password-storage-configuration.adoc │ │ └── secrets-provider-configuration.adoc │ ├── crypto │ │ ├── index.adoc │ │ ├── keystore-configuration.adoc │ │ ├── migrating-encryption-keys.adoc │ │ ├── openssl-tips-tricks.adoc │ │ └── ssl-connections-client-side-.adoc │ ├── csrf-protection.adoc │ ├── error-reporting.adoc │ ├── index.adoc │ ├── power-of-attorney.adoc │ ├── privilege-elevation.adoc │ ├── security-policy │ │ └── index.adoc │ ├── session-cookie.adoc │ └── trusted-actions │ │ └── index.adoc ├── simulation │ ├── index.adoc │ ├── lifecycle-states.drawio │ ├── lifecycle-states.drawio.png │ ├── mode-config-matrix.drawio │ ├── mode-config-matrix.drawio.png │ ├── production-development-mode.png │ ├── reports │ │ ├── example-items-changed.png │ │ ├── example-objects-with-metrics.png │ │ ├── example-objects.png │ │ ├── example-results.png │ │ ├── example-values-changed.png │ │ ├── index.adoc │ │ ├── items-changed.adoc │ │ ├── objects-with-metrics.adoc │ │ ├── objects.adoc │ │ ├── results.adoc │ │ └── values-changed.adoc │ ├── results │ │ ├── definition.adoc │ │ ├── deleting-processed-objects.png │ │ ├── index.adoc │ │ └── metrics.adoc │ └── tutorial │ │ ├── accounts-intent-default-ldap.png │ │ ├── accounts-intent-default.png │ │ ├── accounts-intent-person.png │ │ ├── four-unmodified-objects.png │ │ ├── index.adoc │ │ ├── marked-shadows.png │ │ ├── reclassification-using-gui.png │ │ ├── renamed-users-object-details.png │ │ ├── renamed-users-objects.png │ │ ├── renamed-users-report.png │ │ ├── renamed-users-result.png │ │ ├── result-after-first-correlation-object-details.png │ │ ├── result-after-first-correlation-objects.png │ │ ├── result-after-first-correlation-report-1.png │ │ ├── result-after-first-correlation-report-2.png │ │ ├── result-after-first-correlation.png │ │ ├── result-after-reclassification-details-2.png │ │ ├── result-after-reclassification-details.png │ │ ├── result-after-reclassification-report.png │ │ ├── result-after-reclassification.png │ │ ├── result-after-second-correlation-object-details.png │ │ ├── result-after-second-correlation-objects.png │ │ ├── result-after-second-correlation-report.png │ │ ├── result-after-second-correlation.png │ │ ├── shadows-after-first-correlation.png │ │ ├── shadows-after-first-import.png │ │ ├── shadows-after-second-import.png │ │ ├── simulated-import-1.png │ │ ├── simulated-import-2.png │ │ ├── simulated-import-3.png │ │ ├── simulated-import-4.png │ │ ├── switching-mapping-into-production.png │ │ ├── switching-resource-into-production.png │ │ ├── telephone-number-delta.png │ │ ├── temporary-usernames.png │ │ ├── unclassified-accounts-ldap.png │ │ ├── unclassified-accounts.png │ │ └── user-after-first-import.png ├── synchronization │ ├── consistency │ │ ├── index.adoc │ │ └── theory.adoc │ ├── correlation-and-confirmation-expressions │ │ ├── index.adoc │ │ ├── synchronization-confirmation.png │ │ └── synchronization-correlation.png │ ├── examples │ │ ├── index.adoc │ │ ├── synchronization-creation.png │ │ └── synchronization-modification.png │ ├── flavors.adoc │ ├── generic-synchronization │ │ ├── gensync-1-user-account.png │ │ ├── gensync-2-user-account-org-group.png │ │ └── index.adoc │ ├── index.adoc │ ├── introduction │ │ ├── index.adoc │ │ ├── synchronization-overview.png │ │ └── synchronization-user.png │ ├── linked-objects │ │ ├── index.adoc │ │ ├── named-object-links.adoc │ │ ├── scenario-1-hardware-tokens │ │ │ ├── image2020-6-2_11-10-57.png │ │ │ └── index.adoc │ │ ├── scenario-2-devices-owned-by-users │ │ │ ├── image2020-6-2_11-18-44.png │ │ │ └── index.adoc │ │ ├── scenario-3-projects │ │ │ ├── image2020-6-2_11-25-11.png │ │ │ └── index.adoc │ │ ├── scenario-4-clubs │ │ │ ├── image2020-6-2_12-8-41.png │ │ │ └── index.adoc │ │ └── scenario-5-deletion-safe-organizations │ │ │ └── index.adoc │ ├── policies │ │ ├── index.adoc │ │ ├── synchronization-phase-inbound.png │ │ ├── synchronization-phase-outbound.png │ │ ├── synchronization-phase-user.png │ │ ├── synchronization-phases-detail.png │ │ └── synchronization-user-phases.png │ ├── projection-policy.adoc │ ├── situations.adoc │ └── synchronization-sorter.adoc ├── tasks │ ├── activities │ │ ├── activities.drawio │ │ ├── activity-categorization.png │ │ ├── activity-non-iterative-bulk-action.png │ │ ├── activity-reconciliation.png │ │ ├── activity-user-recomputation-with-custom-bulk-action.png │ │ ├── activity-user-recomputation.png │ │ ├── control-flow.adoc │ │ ├── distribution.adoc │ │ ├── error-handling.adoc │ │ ├── execution-mode.adoc │ │ ├── index.adoc │ │ ├── migration.adoc │ │ ├── new-in-4.4.adoc │ │ ├── object-set-specification.adoc │ │ ├── reporting │ │ │ ├── bucket-analysis.adoc │ │ │ ├── execution-reports.adoc │ │ │ ├── index.adoc │ │ │ ├── item-counting.adoc │ │ │ ├── logging.adoc │ │ │ ├── profiling.adoc │ │ │ ├── simulation-result.adoc │ │ │ ├── state-overview.adoc │ │ │ └── tracing.adoc │ │ ├── resource-object-set-specification.adoc │ │ ├── tailoring.adoc │ │ └── work.adoc │ ├── activity-policies.adoc │ ├── activity-policies │ │ ├── 00-policy-simple.xml │ │ ├── 01-policy-simple-restart-suspend.xml │ │ ├── 02-policy-network-error-restart.xml │ │ └── activity-policies-gui.png │ ├── auto-scaling.adoc │ ├── custom-task-java.adoc │ ├── index.adoc │ ├── new-in-4-3.adoc │ ├── node-sticky-tasks │ │ ├── image2017-8-23-13-25-18.png │ │ ├── image2017-8-23-14-10-40.png │ │ └── index.adoc │ ├── orphaned-tasks.adoc │ ├── parallelized-background-tasks.adoc │ ├── recompute-task.adoc │ ├── redundant-objects-processing │ │ ├── image2018-4-4-19-20-54.png │ │ ├── image2018-4-4-19-29-54.png │ │ └── index.adoc │ ├── shadow-reclassification-task │ │ ├── gui-shadow-reclassify-task-resource-objects-overview.webp │ │ ├── gui-shadow-reclassify-task-wizard-resource-objects.webp │ │ ├── gui-shadow-reclassify-task-wizard-start.webp │ │ ├── gui.adoc │ │ └── index.adoc │ ├── shadow-refresh-task.adoc │ ├── specific │ │ ├── focus-validity-scan.adoc │ │ └── index.adoc │ ├── starting-midpoint-with-task-scheduler-stopped.adoc │ ├── synchronization-tasks │ │ ├── asynchronous-update.adoc │ │ ├── create-task-from-resource-account-list.webp │ │ ├── import-and-reconciliation │ │ │ ├── gui-import-preview-single-account-from-account-list.webp │ │ │ ├── gui-import-preview-single-account-processed-objects.webp │ │ │ ├── gui-import-preview-single-account-simulation-result-details.webp │ │ │ ├── gui-task-simulation-results-overview.webp │ │ │ ├── gui-task-type-selection-modal.webp │ │ │ ├── gui-view-task-simulation-results-button.webp │ │ │ ├── gui.adoc │ │ │ └── index.adoc │ │ ├── index.adoc │ │ ├── live-synchronization.adoc │ │ └── task-status-top-bar.webp │ ├── task-chaining.adoc │ ├── task-errors-gui.png │ ├── task-errors.adoc │ ├── task-manager │ │ ├── configuration.adoc │ │ └── index.adoc │ ├── task-template.adoc │ └── thresholds.adoc └── upgrade │ ├── connectors │ ├── csvfile-connector-migration.adoc │ ├── index.adoc │ └── ldap-connector-migration.adoc │ ├── database-schema-upgrade.adoc │ ├── faq-issues.adoc │ ├── index.adoc │ ├── migration-from-sun-idm.adoc │ ├── upgrade-guide.adoc │ └── upgradeability.adoc ├── gui ├── admin-gui │ ├── .npmrc │ ├── package-lock.json │ ├── package.json │ ├── patches │ │ ├── .gitattributes │ │ ├── admin-lte#3.2.0.patch │ │ └── bootstrap-multiselect#1.1.0.patch │ ├── pom.xml │ ├── src │ │ ├── frontend │ │ │ ├── img │ │ │ │ ├── midpoint_logo_white_180.png │ │ │ │ ├── midpoint_logo_white_250x.png │ │ │ │ └── midpoint_logo_white_56x.png │ │ │ ├── js │ │ │ │ ├── ace-editor.js │ │ │ │ ├── bootstrap-strength-meter │ │ │ │ │ ├── _patched_by_evolveum_ │ │ │ │ │ ├── bootstrap-strength-meter-options.js │ │ │ │ │ └── bootstrap-strength-meter.js │ │ │ │ ├── honeypot.js │ │ │ │ ├── midpoint-theme.js │ │ │ │ ├── midpoint.js │ │ │ │ ├── password-score │ │ │ │ │ ├── password-score-options.js │ │ │ │ │ └── password-score.js │ │ │ │ ├── vendors-passwords.js │ │ │ │ └── vendors.js │ │ │ └── scss │ │ │ │ ├── _admin-lte-overrides.scss │ │ │ │ ├── _admin-lte-variables.scss │ │ │ │ ├── _bootstrap-variables.scss │ │ │ │ ├── _color.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _list-group-menu.scss │ │ │ │ ├── _midpoint-variables.scss │ │ │ │ ├── _rounded-icon.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _tiles.scss │ │ │ │ ├── autocomplete.scss │ │ │ │ ├── bs-stepper-custom.scss │ │ │ │ ├── form-validation.scss │ │ │ │ ├── icon-style.scss │ │ │ │ ├── menu.scss │ │ │ │ ├── midpoint-utils.scss │ │ │ │ ├── midpoint.scss │ │ │ │ ├── prism-forms.scss │ │ │ │ ├── role-mining.scss │ │ │ │ ├── smart-int.scss │ │ │ │ ├── vendors-fonts.scss │ │ │ │ ├── vendors.scss │ │ │ │ └── wicket.scss │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── evolveum │ │ │ │ │ └── midpoint │ │ │ │ │ ├── gui │ │ │ │ │ ├── api │ │ │ │ │ │ ├── AdminLTESkin.java │ │ │ │ │ │ ├── ComponentConstants.java │ │ │ │ │ │ ├── DefaultGuiConfigurationCompiler.java │ │ │ │ │ │ ├── GuiConstants.java │ │ │ │ │ │ ├── GuiFeature.java │ │ │ │ │ │ ├── GuiStyleConstants.java │ │ │ │ │ │ ├── PredefinedDashboardWidgetId.java │ │ │ │ │ │ ├── Validatable.java │ │ │ │ │ │ ├── component │ │ │ │ │ │ │ ├── AbstractAssignmentPopupTabPanel.java │ │ │ │ │ │ │ ├── AbstractPopupTabPanel.html │ │ │ │ │ │ │ ├── AbstractPopupTabPanel.java │ │ │ │ │ │ │ ├── AssignmentPopup.html │ │ │ │ │ │ │ ├── AssignmentPopup.java │ │ │ │ │ │ │ ├── AssignmentPopupDto.java │ │ │ │ │ │ │ ├── Badge.java │ │ │ │ │ │ │ ├── BadgeListPanel.html │ │ │ │ │ │ │ ├── BadgeListPanel.java │ │ │ │ │ │ │ ├── BadgePanel.html │ │ │ │ │ │ │ ├── BadgePanel.java │ │ │ │ │ │ │ ├── BasePanel.java │ │ │ │ │ │ │ ├── ChooseArchetypeMemberPopup.java │ │ │ │ │ │ │ ├── ChooseMemberPopup.html │ │ │ │ │ │ │ ├── ChooseMemberPopup.java │ │ │ │ │ │ │ ├── ChooseOrgMemberPopup.java │ │ │ │ │ │ │ ├── DisplayNamePanel.html │ │ │ │ │ │ │ ├── DisplayNamePanel.java │ │ │ │ │ │ │ ├── FocusTypeAssignmentPopupTabPanel.html │ │ │ │ │ │ │ ├── FocusTypeAssignmentPopupTabPanel.java │ │ │ │ │ │ │ ├── IconComponent.java │ │ │ │ │ │ │ ├── LabelWithBadgePanel.html │ │ │ │ │ │ │ ├── LabelWithBadgePanel.java │ │ │ │ │ │ │ ├── LabelWithHelpPanel.html │ │ │ │ │ │ │ ├── LabelWithHelpPanel.java │ │ │ │ │ │ │ ├── MainObjectListPanel.java │ │ │ │ │ │ │ ├── MemberPopupTabPanel.html │ │ │ │ │ │ │ ├── MemberPopupTabPanel.java │ │ │ │ │ │ │ ├── MultiTypesMemberPopupTabPanel.html │ │ │ │ │ │ │ ├── MultiTypesMemberPopupTabPanel.java │ │ │ │ │ │ │ ├── NewObjectCreationPopup.html │ │ │ │ │ │ │ ├── NewObjectCreationPopup.java │ │ │ │ │ │ │ ├── ObjectBrowserPanel.html │ │ │ │ │ │ │ ├── ObjectBrowserPanel.java │ │ │ │ │ │ │ ├── ObjectListPanel.java │ │ │ │ │ │ │ ├── OrgTreeAssignmentPopupTabPanel.html │ │ │ │ │ │ │ ├── OrgTreeAssignmentPopupTabPanel.java │ │ │ │ │ │ │ ├── OrgTreeMemberPopupTabPanel.html │ │ │ │ │ │ │ ├── OrgTreeMemberPopupTabPanel.java │ │ │ │ │ │ │ ├── PendingOperationPanel.html │ │ │ │ │ │ │ ├── PendingOperationPanel.java │ │ │ │ │ │ │ ├── PopupObjectListPanel.java │ │ │ │ │ │ │ ├── ResourceTypeAssignmentPopupTabPanel.html │ │ │ │ │ │ │ ├── ResourceTypeAssignmentPopupTabPanel.java │ │ │ │ │ │ │ ├── StyledPanel.java │ │ │ │ │ │ │ ├── Toggle.java │ │ │ │ │ │ │ ├── TogglePanel.html │ │ │ │ │ │ │ ├── TogglePanel.java │ │ │ │ │ │ │ ├── TypedAssignablePanel.html │ │ │ │ │ │ │ ├── TypedAssignablePanel.java │ │ │ │ │ │ │ ├── autocomplete │ │ │ │ │ │ │ │ ├── AbstractAutoCompletePanel.html │ │ │ │ │ │ │ │ ├── AbstractAutoCompletePanel.java │ │ │ │ │ │ │ │ ├── AppenderAutocompletePanel.java │ │ │ │ │ │ │ │ ├── AutoCompleteItemDefinitionPanel.java │ │ │ │ │ │ │ │ ├── AutoCompleteItemDefinitionRenderer.java │ │ │ │ │ │ │ │ ├── AutoCompleteQNamePanel.java │ │ │ │ │ │ │ │ ├── AutoCompleteReferenceRenderer.java │ │ │ │ │ │ │ │ ├── AutoCompleteTextPanel.java │ │ │ │ │ │ │ │ ├── AutocompleteConfigurationMixin.java │ │ │ │ │ │ │ │ ├── ItemDefinitionConverter.java │ │ │ │ │ │ │ │ ├── LoggingPackageAutocompletePanel.java │ │ │ │ │ │ │ │ ├── LookupAutocompletePanel.java │ │ │ │ │ │ │ │ ├── LookupTableConverter.java │ │ │ │ │ │ │ │ ├── LookupTableLabelPanel.java │ │ │ │ │ │ │ │ └── ReferenceConverter.java │ │ │ │ │ │ │ ├── button │ │ │ │ │ │ │ │ ├── CsvDownloadButtonPanel.html │ │ │ │ │ │ │ │ ├── CsvDownloadButtonPanel.java │ │ │ │ │ │ │ │ ├── DropdownButtonDto.java │ │ │ │ │ │ │ │ ├── DropdownButtonPanel.html │ │ │ │ │ │ │ │ └── DropdownButtonPanel.java │ │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ │ └── provider │ │ │ │ │ │ │ │ │ └── ISelectableDataProvider.java │ │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ │ ├── CheckBoxPanel.html │ │ │ │ │ │ │ │ ├── CheckBoxPanel.java │ │ │ │ │ │ │ │ ├── DateRange.java │ │ │ │ │ │ │ │ ├── DateRangePicker.html │ │ │ │ │ │ │ │ ├── DateRangePicker.java │ │ │ │ │ │ │ │ ├── DateRangePickerOptions.java │ │ │ │ │ │ │ │ ├── TextArea.java │ │ │ │ │ │ │ │ ├── ToggleCheckBoxPanel.html │ │ │ │ │ │ │ │ └── ToggleCheckBoxPanel.java │ │ │ │ │ │ │ ├── objecttypeselect │ │ │ │ │ │ │ │ ├── ObjectTypeSelectPanel.html │ │ │ │ │ │ │ │ └── ObjectTypeSelectPanel.java │ │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ │ ├── password │ │ │ │ │ │ │ │ ├── PasswordHintPanel.html │ │ │ │ │ │ │ │ ├── PasswordHintPanel.java │ │ │ │ │ │ │ │ ├── PasswordLimitationsPanel.html │ │ │ │ │ │ │ │ ├── PasswordLimitationsPanel.java │ │ │ │ │ │ │ │ ├── PasswordPanel.html │ │ │ │ │ │ │ │ ├── PasswordPanel.java │ │ │ │ │ │ │ │ ├── PasswordPropertyPanel.html │ │ │ │ │ │ │ │ ├── PasswordPropertyPanel.java │ │ │ │ │ │ │ │ ├── ProtectedStringClearPasswordModel.java │ │ │ │ │ │ │ │ ├── ProtectedStringPanel.html │ │ │ │ │ │ │ │ ├── ProtectedStringPanel.java │ │ │ │ │ │ │ │ ├── ProtectedStringPropertyPanel.java │ │ │ │ │ │ │ │ ├── SecretProviderPanel.html │ │ │ │ │ │ │ │ ├── SecretProviderPanel.java │ │ │ │ │ │ │ │ ├── SecureModelPasswordTextField.java │ │ │ │ │ │ │ │ ├── StringLimitationPanel.html │ │ │ │ │ │ │ │ └── StringLimitationPanel.java │ │ │ │ │ │ │ ├── path │ │ │ │ │ │ │ │ ├── ItemPathDto.java │ │ │ │ │ │ │ │ ├── ItemPathPanel.html │ │ │ │ │ │ │ │ ├── ItemPathPanel.java │ │ │ │ │ │ │ │ ├── ItemPathSegmentPanel.html │ │ │ │ │ │ │ │ └── ItemPathSegmentPanel.java │ │ │ │ │ │ │ ├── progressbar │ │ │ │ │ │ │ │ ├── ProgressBar.java │ │ │ │ │ │ │ │ ├── ProgressBarPanel.html │ │ │ │ │ │ │ │ └── ProgressBarPanel.java │ │ │ │ │ │ │ ├── result │ │ │ │ │ │ │ │ ├── Context.java │ │ │ │ │ │ │ │ ├── DetailsPanel.html │ │ │ │ │ │ │ │ ├── DetailsPanel.java │ │ │ │ │ │ │ │ ├── MessagePanel.html │ │ │ │ │ │ │ │ ├── MessagePanel.java │ │ │ │ │ │ │ │ ├── OpResult.java │ │ │ │ │ │ │ │ ├── OperationResultPanel.html │ │ │ │ │ │ │ │ ├── OperationResultPanel.java │ │ │ │ │ │ │ │ ├── OperationResultPopupPanel.html │ │ │ │ │ │ │ │ ├── OperationResultPopupPanel.java │ │ │ │ │ │ │ │ ├── Param.java │ │ │ │ │ │ │ │ └── Toast.java │ │ │ │ │ │ │ ├── tabs │ │ │ │ │ │ │ │ ├── CountablePanelTab.java │ │ │ │ │ │ │ │ ├── IconPanelTab.java │ │ │ │ │ │ │ │ └── PanelTab.java │ │ │ │ │ │ │ ├── togglebutton │ │ │ │ │ │ │ │ ├── ToggleBackgroundButton.java │ │ │ │ │ │ │ │ └── ToggleIconButton.java │ │ │ │ │ │ │ └── wizard │ │ │ │ │ │ │ │ ├── BasicWizardStepPanel.html │ │ │ │ │ │ │ │ ├── BasicWizardStepPanel.java │ │ │ │ │ │ │ │ ├── BehaviourDelegator.java │ │ │ │ │ │ │ │ ├── NavigationPanel.html │ │ │ │ │ │ │ │ ├── NavigationPanel.java │ │ │ │ │ │ │ │ ├── TileEnum.java │ │ │ │ │ │ │ │ ├── WizardHeader.java │ │ │ │ │ │ │ │ ├── WizardHeaderStepHelper.java │ │ │ │ │ │ │ │ ├── WizardHeaderStepPanel.html │ │ │ │ │ │ │ │ ├── WizardHeaderStepPanel.java │ │ │ │ │ │ │ │ ├── WizardListener.java │ │ │ │ │ │ │ │ ├── WizardModel.java │ │ │ │ │ │ │ │ ├── WizardModelBasic.java │ │ │ │ │ │ │ │ ├── WizardPanel.html │ │ │ │ │ │ │ │ ├── WizardPanel.java │ │ │ │ │ │ │ │ ├── WizardStep.java │ │ │ │ │ │ │ │ └── WizardStepPanel.java │ │ │ │ │ │ ├── factory │ │ │ │ │ │ │ ├── AbstractGuiComponentFactory.java │ │ │ │ │ │ │ ├── ContainerValueDataProviderFactory.java │ │ │ │ │ │ │ ├── GuiComponentFactory.java │ │ │ │ │ │ │ ├── RealValuable.java │ │ │ │ │ │ │ └── wrapper │ │ │ │ │ │ │ │ ├── ItemWrapperFactory.java │ │ │ │ │ │ │ │ ├── PrismContainerWrapperFactory.java │ │ │ │ │ │ │ │ ├── PrismObjectWrapperFactory.java │ │ │ │ │ │ │ │ ├── WrapperContext.java │ │ │ │ │ │ │ │ └── WrapperFactory.java │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ ├── CountModelProvider.java │ │ │ │ │ │ │ ├── CountableLoadableModel.java │ │ │ │ │ │ │ ├── CssIconModelProvider.java │ │ │ │ │ │ │ ├── DisplayNameModel.java │ │ │ │ │ │ │ ├── LoadableModel.java │ │ │ │ │ │ │ ├── NonEmptyLoadableModel.java │ │ │ │ │ │ │ ├── NonEmptyModel.java │ │ │ │ │ │ │ ├── NonEmptyPropertyModel.java │ │ │ │ │ │ │ ├── NonEmptyWrapperModel.java │ │ │ │ │ │ │ ├── ReadOnlyModel.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ ├── page │ │ │ │ │ │ │ ├── PageAdminLTE.html │ │ │ │ │ │ │ ├── PageAdminLTE.java │ │ │ │ │ │ │ ├── PageBase.html │ │ │ │ │ │ │ ├── PageBase.java │ │ │ │ │ │ │ ├── PageStructureDump.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── prism │ │ │ │ │ │ │ ├── ItemStatus.java │ │ │ │ │ │ │ └── wrapper │ │ │ │ │ │ │ │ ├── AssignmentValueWrapper.java │ │ │ │ │ │ │ │ ├── ItemEditabilityHandler.java │ │ │ │ │ │ │ │ ├── ItemMandatoryHandler.java │ │ │ │ │ │ │ │ ├── ItemVisibilityHandler.java │ │ │ │ │ │ │ │ ├── ItemWrapper.java │ │ │ │ │ │ │ │ ├── PrismContainerValueWrapper.java │ │ │ │ │ │ │ │ ├── PrismContainerWrapper.java │ │ │ │ │ │ │ │ ├── PrismObjectValueWrapper.java │ │ │ │ │ │ │ │ ├── PrismObjectWrapper.java │ │ │ │ │ │ │ │ ├── PrismPropertyWrapper.java │ │ │ │ │ │ │ │ ├── PrismReferenceWrapper.java │ │ │ │ │ │ │ │ ├── PrismValueWrapper.java │ │ │ │ │ │ │ │ ├── ResourceAttributeWrapper.java │ │ │ │ │ │ │ │ └── ShadowWrapper.java │ │ │ │ │ │ ├── registry │ │ │ │ │ │ │ ├── DataProviderRegistry.java │ │ │ │ │ │ │ └── GuiComponentRegistry.java │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── DisplayForLifecycleState.java │ │ │ │ │ │ │ ├── DisplayableChoiceRenderer.java │ │ │ │ │ │ │ ├── FeatureVisibleEnableBehaviour.java │ │ │ │ │ │ │ ├── GuiDisplayTypeUtil.java │ │ │ │ │ │ │ ├── LocalizationUtil.java │ │ │ │ │ │ │ ├── MappingDirection.java │ │ │ │ │ │ │ ├── MidPointApplicationConfiguration.java │ │ │ │ │ │ │ ├── ModelServiceLocator.java │ │ │ │ │ │ │ ├── ObjectTypeListUtil.java │ │ │ │ │ │ │ ├── WebComponentUtil.java │ │ │ │ │ │ │ ├── WebModelServiceUtils.java │ │ │ │ │ │ │ ├── WebPrismUtil.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── impl │ │ │ │ │ │ ├── GuiChannel.java │ │ │ │ │ │ ├── component │ │ │ │ │ │ ├── AbstractObjectListPanel.java │ │ │ │ │ │ ├── AjaxCompositedIconButton.java │ │ │ │ │ │ ├── AssignmentConstructionPanel.html │ │ │ │ │ │ ├── AssignmentConstructionPanel.java │ │ │ │ │ │ ├── AssignmentsDetailsPanel.java │ │ │ │ │ │ ├── BasicMultivalueContainerListPanel.java │ │ │ │ │ │ ├── ButtonBar.java │ │ │ │ │ │ ├── ColumnTypeConfigContext.java │ │ │ │ │ │ ├── ContainerableListPanel.html │ │ │ │ │ │ ├── ContainerableListPanel.java │ │ │ │ │ │ ├── MappingColumnPanel.html │ │ │ │ │ │ ├── MappingColumnPanel.java │ │ │ │ │ │ ├── MultivalueContainerDetailsPanel.html │ │ │ │ │ │ ├── MultivalueContainerDetailsPanel.java │ │ │ │ │ │ ├── MultivalueContainerDetailsWithSummaryPanel.html │ │ │ │ │ │ ├── MultivalueContainerListPanel.java │ │ │ │ │ │ ├── MultivalueContainerListPanelWithDetailsPanel.html │ │ │ │ │ │ ├── MultivalueContainerListPanelWithDetailsPanel.java │ │ │ │ │ │ ├── ProjectionDisplayNamePanel.html │ │ │ │ │ │ ├── ProjectionDisplayNamePanel.java │ │ │ │ │ │ ├── StatusAwareContainerListPanel.java │ │ │ │ │ │ ├── VariableBindingDefinitionTypePanel.html │ │ │ │ │ │ ├── VariableBindingDefinitionTypePanel.java │ │ │ │ │ │ ├── action │ │ │ │ │ │ │ ├── AbstractCertItemDecisionAction.java │ │ │ │ │ │ │ ├── AbstractGuiAction.java │ │ │ │ │ │ │ ├── ActionDropdownButtonPanel.html │ │ │ │ │ │ │ ├── ActionDropdownButtonPanel.java │ │ │ │ │ │ │ ├── ActionItemLinkPanel.html │ │ │ │ │ │ │ ├── ActionItemLinkPanel.java │ │ │ │ │ │ │ ├── ActionsPanel.html │ │ │ │ │ │ │ ├── ActionsPanel.java │ │ │ │ │ │ │ ├── CertItemAcceptAction.java │ │ │ │ │ │ │ ├── CertItemChangeDecisionAction.java │ │ │ │ │ │ │ ├── CertItemCheckResponsesAction.java │ │ │ │ │ │ │ ├── CertItemNoResponseAction.java │ │ │ │ │ │ │ ├── CertItemNotDecidedAction.java │ │ │ │ │ │ │ ├── CertItemReduceAction.java │ │ │ │ │ │ │ ├── CertItemResolveAction.java │ │ │ │ │ │ │ ├── CertItemRevokeAction.java │ │ │ │ │ │ │ └── GuiActionDto.java │ │ │ │ │ │ ├── box │ │ │ │ │ │ │ ├── InfoBox.html │ │ │ │ │ │ │ ├── InfoBox.java │ │ │ │ │ │ │ ├── InfoBoxData.java │ │ │ │ │ │ │ ├── SmallBox.html │ │ │ │ │ │ │ ├── SmallBox.java │ │ │ │ │ │ │ └── SmallBoxData.java │ │ │ │ │ │ ├── button │ │ │ │ │ │ │ ├── ActiveButtonWithDropDownPanel.html │ │ │ │ │ │ │ ├── ActiveButtonWithDropDownPanel.java │ │ │ │ │ │ │ ├── ReloadableButton.java │ │ │ │ │ │ │ ├── SelectableItemListPopoverPanel.html │ │ │ │ │ │ │ └── SelectableItemListPopoverPanel.java │ │ │ │ │ │ ├── custom │ │ │ │ │ │ │ └── CustomContainerPanel.java │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── column │ │ │ │ │ │ │ │ ├── AbstractItemWrapperColumn.java │ │ │ │ │ │ │ │ ├── AbstractItemWrapperColumnPanel.html │ │ │ │ │ │ │ │ ├── AbstractItemWrapperColumnPanel.java │ │ │ │ │ │ │ │ ├── ConfigurableExpressionColumn.java │ │ │ │ │ │ │ │ ├── EditableColumn.java │ │ │ │ │ │ │ │ ├── LifecycleStateBadgeColumn.java │ │ │ │ │ │ │ │ ├── LifecycleStateColumn.java │ │ │ │ │ │ │ │ ├── LinkPrismPropertyColumn.java │ │ │ │ │ │ │ │ ├── PrismContainerWrapperColumn.java │ │ │ │ │ │ │ │ ├── PrismContainerWrapperColumnPanel.java │ │ │ │ │ │ │ │ ├── PrismPropertyWrapperColumn.java │ │ │ │ │ │ │ │ ├── PrismPropertyWrapperColumnPanel.java │ │ │ │ │ │ │ │ ├── PrismReferenceWrapperColumn.java │ │ │ │ │ │ │ │ ├── PrismReferenceWrapperColumnPanel.java │ │ │ │ │ │ │ │ ├── ReportExpressionColumn.java │ │ │ │ │ │ │ │ └── icon │ │ │ │ │ │ │ │ │ ├── AbstractIconColumn.java │ │ │ │ │ │ │ │ │ ├── CompositedIconColumn.java │ │ │ │ │ │ │ │ │ ├── CompositedIconPanel.html │ │ │ │ │ │ │ │ │ ├── CompositedIconPanel.java │ │ │ │ │ │ │ │ │ ├── CompositedIconTextPanel.html │ │ │ │ │ │ │ │ │ ├── CompositedIconTextPanel.java │ │ │ │ │ │ │ │ │ ├── CompositedIconWithLabelColumn.java │ │ │ │ │ │ │ │ │ ├── CompositedIconWithLabelPanel.html │ │ │ │ │ │ │ │ │ ├── CompositedIconWithLabelPanel.java │ │ │ │ │ │ │ │ │ ├── RoundedIconColumn.java │ │ │ │ │ │ │ │ │ ├── RoundedImageObjectColumn.java │ │ │ │ │ │ │ │ │ ├── RoundedImagePanel.html │ │ │ │ │ │ │ │ │ └── RoundedImagePanel.java │ │ │ │ │ │ │ └── provider │ │ │ │ │ │ │ │ ├── AssignmentListProvider.java │ │ │ │ │ │ │ │ ├── BaseSearchDataProvider.java │ │ │ │ │ │ │ │ ├── BaseSortableDataProvider.java │ │ │ │ │ │ │ │ ├── ContainerListDataProvider.java │ │ │ │ │ │ │ │ ├── ListDataProvider.java │ │ │ │ │ │ │ │ ├── LoggedInUsersProvider.java │ │ │ │ │ │ │ │ ├── MultivalueContainerListDataProvider.java │ │ │ │ │ │ │ │ ├── ObjectClassDataProvider.java │ │ │ │ │ │ │ │ ├── ObjectDataProvider.java │ │ │ │ │ │ │ │ ├── ObjectTileProvider.java │ │ │ │ │ │ │ │ ├── OrgTreeProvider.java │ │ │ │ │ │ │ │ ├── ProjectionsListProvider.java │ │ │ │ │ │ │ │ ├── RepoAssignmentListProvider.java │ │ │ │ │ │ │ │ ├── RepositoryObjectDataProvider.java │ │ │ │ │ │ │ │ ├── RepositoryShadowBeanObjectDataProvider.java │ │ │ │ │ │ │ │ ├── ResourceTemplateProvider.java │ │ │ │ │ │ │ │ ├── SelectableBeanContainerDataProvider.java │ │ │ │ │ │ │ │ ├── SelectableBeanDataProvider.java │ │ │ │ │ │ │ │ ├── SelectableBeanObjectDataProvider.java │ │ │ │ │ │ │ │ ├── SelectableBeanReferenceDataProvider.java │ │ │ │ │ │ │ │ ├── SelectableListDataProvider.java │ │ │ │ │ │ │ │ ├── TemplateTileProvider.java │ │ │ │ │ │ │ │ └── suggestion │ │ │ │ │ │ │ │ ├── StatusAwareDataFactory.java │ │ │ │ │ │ │ │ └── StatusAwareDataProvider.java │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ ├── OnePanelPopupPanel.html │ │ │ │ │ │ │ └── OnePanelPopupPanel.java │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── CreateObjectForReferencePanel.html │ │ │ │ │ │ │ ├── CreateObjectForReferencePanel.java │ │ │ │ │ │ │ ├── HoneypotBehaviour.java │ │ │ │ │ │ │ ├── HoneypotFormAjaxListener.java │ │ │ │ │ │ │ ├── ReferenceAutocompletePanel.html │ │ │ │ │ │ │ ├── ReferenceAutocompletePanel.java │ │ │ │ │ │ │ ├── TriStateFormGroup.html │ │ │ │ │ │ │ └── TriStateFormGroup.java │ │ │ │ │ │ ├── icon │ │ │ │ │ │ │ ├── BottomLeftForColumnIconCssStyle.java │ │ │ │ │ │ │ ├── BottomLeftIconCssStyle.java │ │ │ │ │ │ │ ├── BottomRightForColumnIconCssStyle.java │ │ │ │ │ │ │ ├── BottomRightIconCssStyle.java │ │ │ │ │ │ │ ├── BottomRightMaxIconCssStyle.java │ │ │ │ │ │ │ ├── CenterForColumnIconCssStyle.java │ │ │ │ │ │ │ ├── CenterIconCssStyle.java │ │ │ │ │ │ │ ├── CenterIconMetricCssStyle.java │ │ │ │ │ │ │ ├── CenterWithRightShiftCssStyle.java │ │ │ │ │ │ │ ├── CompositedIcon.java │ │ │ │ │ │ │ ├── CompositedIconBuilder.java │ │ │ │ │ │ │ ├── CompositedIconCssStyle.java │ │ │ │ │ │ │ ├── IconCssStyle.java │ │ │ │ │ │ │ ├── InRowIconCssStyle.java │ │ │ │ │ │ │ ├── LayerIcon.java │ │ │ │ │ │ │ ├── LayeredIconCssStyle.java │ │ │ │ │ │ │ ├── TopLeftIconCssStyle.java │ │ │ │ │ │ │ ├── TopRightForColumnIconCssStyle.java │ │ │ │ │ │ │ ├── TopRightIconCssStyle.java │ │ │ │ │ │ │ └── TopRightMaxIconCssStyle.java │ │ │ │ │ │ ├── input │ │ │ │ │ │ │ ├── ContainersDropDownPanel.html │ │ │ │ │ │ │ ├── ContainersDropDownPanel.java │ │ │ │ │ │ │ ├── DateTimePickerOptions.java │ │ │ │ │ │ │ ├── DateTimePickerPanel.html │ │ │ │ │ │ │ ├── DateTimePickerPanel.java │ │ │ │ │ │ │ ├── FocusDefinitionsMappingProvider.java │ │ │ │ │ │ │ ├── IconColorInputPanel.java │ │ │ │ │ │ │ ├── IconInputPanel.html │ │ │ │ │ │ │ ├── IconInputPanel.java │ │ │ │ │ │ │ ├── LifecycleStateFormPanel.java │ │ │ │ │ │ │ ├── LifecycleStatePanel.html │ │ │ │ │ │ │ ├── LifecycleStatePanel.java │ │ │ │ │ │ │ ├── QNameIChoiceRenderer.java │ │ │ │ │ │ │ ├── Select2MultiChoiceColumnPanel.java │ │ │ │ │ │ │ ├── Select2MultiChoicePanel.html │ │ │ │ │ │ │ ├── Select2MultiChoicePanel.java │ │ │ │ │ │ │ ├── SourceOfFocusMappingProvider.java │ │ │ │ │ │ │ ├── converter │ │ │ │ │ │ │ │ ├── AutoCompleteDisplayableValueConverter.java │ │ │ │ │ │ │ │ └── DateConverter.java │ │ │ │ │ │ │ └── expression │ │ │ │ │ │ │ │ ├── AssociationFromLinkPanel.java │ │ │ │ │ │ │ │ ├── EvaluatorExpressionPanel.html │ │ │ │ │ │ │ │ ├── EvaluatorExpressionPanel.java │ │ │ │ │ │ │ │ ├── ExpressionPanel.html │ │ │ │ │ │ │ │ ├── ExpressionPanel.java │ │ │ │ │ │ │ │ ├── ExpressionValidationBehavior.java │ │ │ │ │ │ │ │ ├── GenerateExpressionPanel.html │ │ │ │ │ │ │ │ ├── GenerateExpressionPanel.java │ │ │ │ │ │ │ │ ├── PathExpressionPanel.html │ │ │ │ │ │ │ │ ├── PathExpressionPanel.java │ │ │ │ │ │ │ │ ├── ScriptExpressionPanel.html │ │ │ │ │ │ │ │ ├── ScriptExpressionPanel.java │ │ │ │ │ │ │ │ ├── ShadowOwnerReferenceSearchExpressionPanel.html │ │ │ │ │ │ │ │ ├── ShadowOwnerReferenceSearchExpressionPanel.java │ │ │ │ │ │ │ │ ├── SimpleValueExpressionPanel.html │ │ │ │ │ │ │ │ └── SimpleValueExpressionPanel.java │ │ │ │ │ │ ├── menu │ │ │ │ │ │ │ ├── ContainerPanelDto.java │ │ │ │ │ │ │ ├── DetailsNavigationPanel.html │ │ │ │ │ │ │ ├── DetailsNavigationPanel.java │ │ │ │ │ │ │ ├── LeftMenuAuthzUtil.java │ │ │ │ │ │ │ ├── LeftMenuPanel.html │ │ │ │ │ │ │ ├── LeftMenuPanel.java │ │ │ │ │ │ │ ├── MultivalueDetailsPanel.java │ │ │ │ │ │ │ ├── PageTypes.java │ │ │ │ │ │ │ └── listGroup │ │ │ │ │ │ │ │ ├── CustomListGroupMenuItem.java │ │ │ │ │ │ │ │ ├── ListGroupMenu.java │ │ │ │ │ │ │ │ ├── ListGroupMenuItem.java │ │ │ │ │ │ │ │ ├── ListGroupMenuItemPanel.html │ │ │ │ │ │ │ │ ├── ListGroupMenuItemPanel.java │ │ │ │ │ │ │ │ ├── ListGroupMenuPanel.html │ │ │ │ │ │ │ │ ├── ListGroupMenuPanel.java │ │ │ │ │ │ │ │ ├── MenuItemLinkPanel.html │ │ │ │ │ │ │ │ └── MenuItemLinkPanel.java │ │ │ │ │ │ ├── message │ │ │ │ │ │ │ ├── Callout.html │ │ │ │ │ │ │ ├── Callout.java │ │ │ │ │ │ │ ├── FeedbackLabels.html │ │ │ │ │ │ │ └── FeedbackLabels.java │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ ├── CollectionPanelType.java │ │ │ │ │ │ │ ├── Search.java │ │ │ │ │ │ │ ├── SearchBoxConfigurationBuilder.java │ │ │ │ │ │ │ ├── SearchBuilder.java │ │ │ │ │ │ │ ├── SearchConfigurationMerger.java │ │ │ │ │ │ │ ├── SearchConfigurationWrapperFactory.java │ │ │ │ │ │ │ ├── SearchContext.java │ │ │ │ │ │ │ ├── SearchValue.java │ │ │ │ │ │ │ ├── SearchableItemsDefinitions.java │ │ │ │ │ │ │ ├── factory │ │ │ │ │ │ │ │ ├── AbstractSearchItemWrapperFactory.java │ │ │ │ │ │ │ │ ├── AutocompleteSearchItemWrapperFactory.java │ │ │ │ │ │ │ │ ├── AvailableMarkItemWrapperFactory.java │ │ │ │ │ │ │ │ ├── CertItemOutcomeSearchItemWrapperFactory.java │ │ │ │ │ │ │ │ ├── ChoicesSearchItemWrapperFactory.java │ │ │ │ │ │ │ │ ├── DateSearchItemWrapperFactory.java │ │ │ │ │ │ │ │ ├── DeadShadowSearchItemWrapperFactory.java │ │ │ │ │ │ │ │ ├── ItemPathSearchItemWrapperFactory.java │ │ │ │ │ │ │ │ ├── ObjectClassSearchItemWrapperFactory.java │ │ │ │ │ │ │ │ ├── ProcessedObjectTypeItemWrapperFactory.java │ │ │ │ │ │ │ │ ├── QNameWithoutNamespaceItemWrapperFactory.java │ │ │ │ │ │ │ │ ├── ReferenceSearchItemWrapperFactory.java │ │ │ │ │ │ │ │ ├── SearchItemContext.java │ │ │ │ │ │ │ │ ├── TextSearchItemWrapperFactory.java │ │ │ │ │ │ │ │ └── VariableBindingDefSearchItemWrapperFactory.java │ │ │ │ │ │ │ ├── panel │ │ │ │ │ │ │ │ ├── AbstractSearchItemPanel.java │ │ │ │ │ │ │ │ ├── AutoCompleteSearchItemPanel.java │ │ │ │ │ │ │ │ ├── AxiomSearchPanel.html │ │ │ │ │ │ │ │ ├── AxiomSearchPanel.java │ │ │ │ │ │ │ │ ├── BasicSearchPanel.html │ │ │ │ │ │ │ │ ├── BasicSearchPanel.java │ │ │ │ │ │ │ │ ├── ChoicesSearchItemPanel.java │ │ │ │ │ │ │ │ ├── DateIntervalSearchPanel.java │ │ │ │ │ │ │ │ ├── DateIntervalSearchPopupPanel.html │ │ │ │ │ │ │ │ ├── DateIntervalSearchPopupPanel.java │ │ │ │ │ │ │ │ ├── DateSearchItemPanel.java │ │ │ │ │ │ │ │ ├── FulltextSearchPanel.html │ │ │ │ │ │ │ │ ├── FulltextSearchPanel.java │ │ │ │ │ │ │ │ ├── IndirectSearchItemPanel.java │ │ │ │ │ │ │ │ ├── ItemPathSearchItemPanel.java │ │ │ │ │ │ │ │ ├── ItemPathSearchPanel.java │ │ │ │ │ │ │ │ ├── ItemPathSearchPopupPanel.html │ │ │ │ │ │ │ │ ├── ItemPathSearchPopupPanel.java │ │ │ │ │ │ │ │ ├── MemberSearchPanel.html │ │ │ │ │ │ │ │ ├── MemberSearchPanel.java │ │ │ │ │ │ │ │ ├── NamedIntervalPreset.java │ │ │ │ │ │ │ │ ├── ObjectClassSearchItemPanel.java │ │ │ │ │ │ │ │ ├── ObjectCollectionListSearchItemPanel.java │ │ │ │ │ │ │ │ ├── ObjectCollectionSearchItemPanel.html │ │ │ │ │ │ │ │ ├── ObjectCollectionSearchItemPanel.java │ │ │ │ │ │ │ │ ├── ObjectTypeSearchItemPanel.java │ │ │ │ │ │ │ │ ├── OidSearchItemPanel.java │ │ │ │ │ │ │ │ ├── Popover.html │ │ │ │ │ │ │ │ ├── Popover.java │ │ │ │ │ │ │ │ ├── PopoverSearchPanel.html │ │ │ │ │ │ │ │ ├── PopoverSearchPanel.java │ │ │ │ │ │ │ │ ├── PopoverSearchPopupPanel.html │ │ │ │ │ │ │ │ ├── PopoverSearchPopupPanel.java │ │ │ │ │ │ │ │ ├── ProjectSearchItemPanel.java │ │ │ │ │ │ │ │ ├── PropertySearchItemPanel.html │ │ │ │ │ │ │ │ ├── PropertySearchItemPanel.java │ │ │ │ │ │ │ │ ├── ReferenceSearchItemPanel.java │ │ │ │ │ │ │ │ ├── ReferenceValueSearchPanel.java │ │ │ │ │ │ │ │ ├── ReferenceValueSearchPopupPanel.html │ │ │ │ │ │ │ │ ├── ReferenceValueSearchPopupPanel.java │ │ │ │ │ │ │ │ ├── RelationSearchItemPanel.java │ │ │ │ │ │ │ │ ├── SaveSearchPanel.html │ │ │ │ │ │ │ │ ├── SaveSearchPanel.java │ │ │ │ │ │ │ │ ├── ScopeSearchItemPanel.java │ │ │ │ │ │ │ │ ├── SearchButtonWithDropdownMenu.html │ │ │ │ │ │ │ │ ├── SearchButtonWithDropdownMenu.java │ │ │ │ │ │ │ │ ├── SearchPanel.html │ │ │ │ │ │ │ │ ├── SearchPanel.java │ │ │ │ │ │ │ │ ├── SimpleCustomSearchPanel.html │ │ │ │ │ │ │ │ ├── SimpleCustomSearchPanel.java │ │ │ │ │ │ │ │ ├── SingleSearchItemPanel.html │ │ │ │ │ │ │ │ ├── SingleSearchItemPanel.java │ │ │ │ │ │ │ │ ├── TenantSearchItemPanel.java │ │ │ │ │ │ │ │ ├── TextSearchItemPanel.java │ │ │ │ │ │ │ │ ├── VariableBingingDefSearchItemPanel.java │ │ │ │ │ │ │ │ ├── XmlSearchPanel.html │ │ │ │ │ │ │ │ └── XmlSearchPanel.java │ │ │ │ │ │ │ └── wrapper │ │ │ │ │ │ │ │ ├── AbstractQueryWrapper.java │ │ │ │ │ │ │ │ ├── AbstractRoleSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── AbstractSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── AdvancedQueryWrapper.java │ │ │ │ │ │ │ │ ├── AssignmentFulltextQueryWrapper.java │ │ │ │ │ │ │ │ ├── AssociationSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── AutoCompleteSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── AvailableMarkSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── AxiomQueryWrapper.java │ │ │ │ │ │ │ │ ├── BasicQueryWrapper.java │ │ │ │ │ │ │ │ ├── BasicSearchWrapper.java │ │ │ │ │ │ │ │ ├── CertItemOutcomeSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── ChoicesSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── DateSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── DeadShadowSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── FilterableSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── FulltextQueryWrapper.java │ │ │ │ │ │ │ │ ├── IndirectSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── ItemPathSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── ObjectClassSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── ObjectCollectionListSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── ObjectCollectionSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── ObjectTypeSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── OidSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── ProcessedObjectTypeSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── ProjectSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── PropertySearchItemWrapper.java │ │ │ │ │ │ │ │ ├── QNameWithoutNamespaceItemWrapper.java │ │ │ │ │ │ │ │ ├── QueryWrapper.java │ │ │ │ │ │ │ │ ├── ReferenceSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── RelationSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── ScopeSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── TenantSearchItemWrapper.java │ │ │ │ │ │ │ │ ├── TextSearchItemWrapper.java │ │ │ │ │ │ │ │ └── VariableBindingDefSearchItemWrapper.java │ │ │ │ │ │ ├── table │ │ │ │ │ │ │ ├── ChartedHeaderDto.java │ │ │ │ │ │ │ ├── ListItemWithPanelForItemPanel.html │ │ │ │ │ │ │ ├── ListItemWithPanelForItemPanel.java │ │ │ │ │ │ │ ├── WidgetTableChartedHeader.html │ │ │ │ │ │ │ ├── WidgetTableChartedHeader.java │ │ │ │ │ │ │ ├── WidgetTableHeader.html │ │ │ │ │ │ │ └── WidgetTableHeader.java │ │ │ │ │ │ ├── tile │ │ │ │ │ │ │ ├── AssociationTilePanel.html │ │ │ │ │ │ │ ├── AssociationTilePanel.java │ │ │ │ │ │ │ ├── CatalogTile.java │ │ │ │ │ │ │ ├── CatalogTilePanel.html │ │ │ │ │ │ │ ├── CatalogTilePanel.java │ │ │ │ │ │ │ ├── EnumTileChoicePanel.html │ │ │ │ │ │ │ ├── EnumTileChoicePanel.java │ │ │ │ │ │ │ ├── HorizontalSTilePanel.html │ │ │ │ │ │ │ ├── HorizontalSTilePanel.java │ │ │ │ │ │ │ ├── MemberTilePanel.html │ │ │ │ │ │ │ ├── MemberTilePanel.java │ │ │ │ │ │ │ ├── MultiSelectContainerActionTileTablePanel.html │ │ │ │ │ │ │ ├── MultiSelectContainerActionTileTablePanel.java │ │ │ │ │ │ │ ├── MultiSelectContainerTileTablePanel.java │ │ │ │ │ │ │ ├── MultiSelectObjectTileTablePanel.java │ │ │ │ │ │ │ ├── MultiSelectTileTablePanel.html │ │ │ │ │ │ │ ├── MultiSelectTileTablePanel.java │ │ │ │ │ │ │ ├── ObjectTilePanel.html │ │ │ │ │ │ │ ├── ObjectTilePanel.java │ │ │ │ │ │ │ ├── RoundedIconPanel.html │ │ │ │ │ │ │ ├── RoundedIconPanel.java │ │ │ │ │ │ │ ├── SelectTileTablePanel.java │ │ │ │ │ │ │ ├── SelectableObjectTilePanel.java │ │ │ │ │ │ │ ├── SingleSelectContainerTileTablePanel.java │ │ │ │ │ │ │ ├── SingleSelectObjectTileTablePanel.java │ │ │ │ │ │ │ ├── SingleSelectTileTablePanel.html │ │ │ │ │ │ │ ├── SingleSelectTileTablePanel.java │ │ │ │ │ │ │ ├── TemplateTile.java │ │ │ │ │ │ │ ├── TemplateTilePanel.html │ │ │ │ │ │ │ ├── TemplateTilePanel.java │ │ │ │ │ │ │ ├── Tile.java │ │ │ │ │ │ │ ├── TilePanel.html │ │ │ │ │ │ │ ├── TilePanel.java │ │ │ │ │ │ │ ├── TileTablePanel.html │ │ │ │ │ │ │ ├── TileTablePanel.java │ │ │ │ │ │ │ ├── ViewToggle.java │ │ │ │ │ │ │ ├── column │ │ │ │ │ │ │ │ ├── ColumnTile.java │ │ │ │ │ │ │ │ ├── ColumnTileHeaderPanel.html │ │ │ │ │ │ │ │ ├── ColumnTileHeaderPanel.java │ │ │ │ │ │ │ │ ├── ColumnTilePanel.html │ │ │ │ │ │ │ │ ├── ColumnTilePanel.java │ │ │ │ │ │ │ │ ├── ColumnTileTable.html │ │ │ │ │ │ │ │ └── ColumnTileTable.java │ │ │ │ │ │ │ └── mining │ │ │ │ │ │ │ │ ├── candidate │ │ │ │ │ │ │ │ ├── RoleAnalysisCandidateTileModel.java │ │ │ │ │ │ │ │ ├── RoleAnalysisCandidateTilePanel.html │ │ │ │ │ │ │ │ └── RoleAnalysisCandidateTilePanel.java │ │ │ │ │ │ │ │ ├── migration │ │ │ │ │ │ │ │ ├── RoleAnalysisMigratedRoleTileModel.java │ │ │ │ │ │ │ │ ├── RoleAnalysisMigrationRoleTilePanel.html │ │ │ │ │ │ │ │ └── RoleAnalysisMigrationRoleTilePanel.java │ │ │ │ │ │ │ │ ├── outlier │ │ │ │ │ │ │ │ ├── RoleAnalysisOutlierPartitionTileModel.java │ │ │ │ │ │ │ │ ├── RoleAnalysisOutlierPartitionTilePanel.html │ │ │ │ │ │ │ │ └── RoleAnalysisOutlierPartitionTilePanel.java │ │ │ │ │ │ │ │ ├── pattern │ │ │ │ │ │ │ │ ├── RoleAnalysisPatternTileModel.java │ │ │ │ │ │ │ │ ├── RoleAnalysisPatternTilePanel.html │ │ │ │ │ │ │ │ └── RoleAnalysisPatternTilePanel.java │ │ │ │ │ │ │ │ └── session │ │ │ │ │ │ │ │ ├── RoleAnalysisSessionTileModel.java │ │ │ │ │ │ │ │ ├── RoleAnalysisSessionTilePanel.html │ │ │ │ │ │ │ │ └── RoleAnalysisSessionTilePanel.java │ │ │ │ │ │ └── wizard │ │ │ │ │ │ │ ├── AbstractFormWizardStepPanel.html │ │ │ │ │ │ │ ├── AbstractFormWizardStepPanel.java │ │ │ │ │ │ │ ├── AbstractVerifiableWizardBasicPanel.java │ │ │ │ │ │ │ ├── AbstractWizardBasicInitializer.java │ │ │ │ │ │ │ ├── AbstractWizardBasicPanel.html │ │ │ │ │ │ │ ├── AbstractWizardBasicPanel.java │ │ │ │ │ │ │ ├── AbstractWizardChoicePanelWithSeparatedCreatePanel.java │ │ │ │ │ │ │ ├── AbstractWizardItemVariableStepPanel.java │ │ │ │ │ │ │ ├── AbstractWizardNavigationBasicPanel.html │ │ │ │ │ │ │ ├── AbstractWizardNavigationBasicPanel.java │ │ │ │ │ │ │ ├── AbstractWizardPanel.html │ │ │ │ │ │ │ ├── AbstractWizardPanel.java │ │ │ │ │ │ │ ├── AbstractWizardStepPanel.java │ │ │ │ │ │ │ ├── AbstractWizardTable.java │ │ │ │ │ │ │ ├── AbstractWizardWithChoicePanel.java │ │ │ │ │ │ │ ├── EnumWizardChoicePanel.java │ │ │ │ │ │ │ ├── MultiSelectContainerTileWizardStepPanel.java │ │ │ │ │ │ │ ├── MultiSelectObjectTypeTileWizardStepPanel.java │ │ │ │ │ │ │ ├── NotFoundWizardVariableStepPanel.html │ │ │ │ │ │ │ ├── NotFoundWizardVariableStepPanel.java │ │ │ │ │ │ │ ├── SelectTileWizardStepPanel.html │ │ │ │ │ │ │ ├── SelectTileWizardStepPanel.java │ │ │ │ │ │ │ ├── SingleTileWizardStepPanel.java │ │ │ │ │ │ │ ├── WizardChoicePanel.html │ │ │ │ │ │ │ ├── WizardChoicePanel.java │ │ │ │ │ │ │ ├── WizardPanelHelper.java │ │ │ │ │ │ │ ├── WizardVariableStepPanel.html │ │ │ │ │ │ │ ├── WizardVariableStepPanel.java │ │ │ │ │ │ │ ├── collapse │ │ │ │ │ │ │ ├── CollapsedInfoPanel.html │ │ │ │ │ │ │ ├── CollapsedInfoPanel.java │ │ │ │ │ │ │ ├── CollapsedItem.java │ │ │ │ │ │ │ ├── OperationResultCollapsedItem.java │ │ │ │ │ │ │ ├── OperationResultCollapsedItemPanel.html │ │ │ │ │ │ │ ├── OperationResultCollapsedItemPanel.java │ │ │ │ │ │ │ └── OperationResultWrapper.java │ │ │ │ │ │ │ └── withnavigation │ │ │ │ │ │ │ ├── AbstractWizardBasicWithNavigationPanel.html │ │ │ │ │ │ │ ├── AbstractWizardBasicWithNavigationPanel.java │ │ │ │ │ │ │ ├── AbstractWizardController.java │ │ │ │ │ │ │ ├── AbstractWizardPartItem.java │ │ │ │ │ │ │ ├── WizardModelWithParentSteps.java │ │ │ │ │ │ │ ├── WizardParentStep.java │ │ │ │ │ │ │ ├── WizardWithNavigationPanel.html │ │ │ │ │ │ │ └── WizardWithNavigationPanel.java │ │ │ │ │ │ ├── converter │ │ │ │ │ │ ├── CleanupPoliciesTypeConverter.java │ │ │ │ │ │ ├── DurationConverter.java │ │ │ │ │ │ ├── PolyStringConverter.java │ │ │ │ │ │ ├── QNameConverter.java │ │ │ │ │ │ └── QueryTypeConverter.java │ │ │ │ │ │ ├── duplication │ │ │ │ │ │ ├── ContainerableDuplicateResolver.java │ │ │ │ │ │ └── DuplicationProcessHelper.java │ │ │ │ │ │ ├── error │ │ │ │ │ │ ├── ErrorPanel.html │ │ │ │ │ │ └── ErrorPanel.java │ │ │ │ │ │ ├── factory │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── InMemoryAssignmentDataProviderFactory.java │ │ │ │ │ │ │ └── RepositoryAssignmentDataProviderFactory.java │ │ │ │ │ │ ├── duplicateresolver │ │ │ │ │ │ │ ├── AssociationDuplicateResolver.java │ │ │ │ │ │ │ ├── ContainerDuplicateResolver.java │ │ │ │ │ │ │ └── MappingDuplicateResolver.java │ │ │ │ │ │ ├── panel │ │ │ │ │ │ │ ├── AbstractInputGuiComponentFactory.java │ │ │ │ │ │ │ ├── AbstractIntentFactory.java │ │ │ │ │ │ │ ├── AnyTypePanelFactory.java │ │ │ │ │ │ │ ├── AssociationTypeMappingNamePanelFactory.java │ │ │ │ │ │ │ ├── AutoCompleteReferencePanelFactory.java │ │ │ │ │ │ │ ├── CreateObjectForReferencePanelFactory.java │ │ │ │ │ │ │ ├── DatePanelFactory.java │ │ │ │ │ │ │ ├── DefaultContainerablePanelFactory.java │ │ │ │ │ │ │ ├── DurationPanelFactory.java │ │ │ │ │ │ │ ├── DurationWithOneElementPanelFactory.java │ │ │ │ │ │ │ ├── ExecuteScriptModel.java │ │ │ │ │ │ │ ├── ExecuteScriptPanelFactory.java │ │ │ │ │ │ │ ├── FormPanelType.java │ │ │ │ │ │ │ ├── IconColorPanelFactory.java │ │ │ │ │ │ │ ├── IconCssClassPanelFactory.java │ │ │ │ │ │ │ ├── ItemPanelContext.java │ │ │ │ │ │ │ ├── ItemRealValueModel.java │ │ │ │ │ │ │ ├── LabelPanelFactory.java │ │ │ │ │ │ │ ├── LifecycleStatePanelFactory.java │ │ │ │ │ │ │ ├── LinkedReferencePanelFactory.java │ │ │ │ │ │ │ ├── LockoutStatusPanelFactory.java │ │ │ │ │ │ │ ├── LoggingAppenderPanelFactory.java │ │ │ │ │ │ │ ├── LoggingPackagePanelFactory.java │ │ │ │ │ │ │ ├── MailServerPanelFactory.java │ │ │ │ │ │ │ ├── MappingNamePanelFactory.java │ │ │ │ │ │ │ ├── MetadataPanelFactory.java │ │ │ │ │ │ │ ├── ModificationsPanelFactory.java │ │ │ │ │ │ │ ├── ObjectDeltaModel.java │ │ │ │ │ │ │ ├── ObjectDeltaPanelFactory.java │ │ │ │ │ │ │ ├── ObjectTypeIntentPanelFactory.java │ │ │ │ │ │ │ ├── ParameterTypePanelFactory.java │ │ │ │ │ │ │ ├── PasswordHintPanelFactory.java │ │ │ │ │ │ │ ├── PolyStringEditorPanelFactory.java │ │ │ │ │ │ │ ├── PrismContainerPanelContext.java │ │ │ │ │ │ │ ├── PrismPropertyPanelContext.java │ │ │ │ │ │ │ ├── PrismReferencePanelContext.java │ │ │ │ │ │ │ ├── ProfilingLoggerLevelPanelFactory.java │ │ │ │ │ │ │ ├── ProtectedStringInConnectorConfigurationPanelFactory.java │ │ │ │ │ │ │ ├── ProtectedStringPanelFactory.java │ │ │ │ │ │ │ ├── QueryTextAreaPanelFactory.java │ │ │ │ │ │ │ ├── ResourceAttributeRefPanelFactory.java │ │ │ │ │ │ │ ├── ResourceIntentFactory.java │ │ │ │ │ │ │ ├── ResourceObjectClassFactory.java │ │ │ │ │ │ │ ├── ResourceObjectTypeMappingNamePanelFactory.java │ │ │ │ │ │ │ ├── SchemaDefaultPrefixFactory.java │ │ │ │ │ │ │ ├── SchemaEnumerationConstantNamePanelFactory.java │ │ │ │ │ │ │ ├── SchemaEnumerationValuePanelFactory.java │ │ │ │ │ │ │ ├── TaskIntentFactory.java │ │ │ │ │ │ │ ├── TaskObjectClassFactory.java │ │ │ │ │ │ │ ├── TextAreaPanelFactory.java │ │ │ │ │ │ │ ├── TextPanelFactory.java │ │ │ │ │ │ │ ├── ThreeStateComboPanelFactory.java │ │ │ │ │ │ │ ├── UploadDownloadPanelFactory.java │ │ │ │ │ │ │ ├── WorkItemDetailsPanelFactory.java │ │ │ │ │ │ │ ├── enump │ │ │ │ │ │ │ │ ├── EnumPanelFactory.java │ │ │ │ │ │ │ │ ├── ShadowKindPanelFactory.java │ │ │ │ │ │ │ │ └── ShadowKindTypeListModel.java │ │ │ │ │ │ │ ├── expression │ │ │ │ │ │ │ │ ├── AssociationAndExpressionPanelFactory.java │ │ │ │ │ │ │ │ ├── AssociationConstructionExpressionPanelFactory.java │ │ │ │ │ │ │ │ ├── AssociationReferenceAttributeExpressionPanelFactory.java │ │ │ │ │ │ │ │ ├── AssociationSynchronizationExpressionPanelFactory.java │ │ │ │ │ │ │ │ ├── ConditionPanelFactory.java │ │ │ │ │ │ │ │ ├── ExpressionModel.java │ │ │ │ │ │ │ │ └── ExpressionPanelFactory.java │ │ │ │ │ │ │ ├── itempath │ │ │ │ │ │ │ │ ├── AssociationAttributeMappingItemPathPanelFactory.java │ │ │ │ │ │ │ │ ├── AssociationRefPanelFactory.java │ │ │ │ │ │ │ │ ├── AssociationReferenceMappingItemPathPanelFactory.java │ │ │ │ │ │ │ │ ├── AttributeMappingItemPathPanelFactory.java │ │ │ │ │ │ │ │ ├── CorrelatorItemRefPanelFactory.java │ │ │ │ │ │ │ │ └── ItemPathPanelFactory.java │ │ │ │ │ │ │ ├── mining │ │ │ │ │ │ │ │ ├── AnalysisAttributeFactory.java │ │ │ │ │ │ │ │ ├── ClusteringAttributeFactory.java │ │ │ │ │ │ │ │ ├── RangePanelFactory.java │ │ │ │ │ │ │ │ └── ValueSelectorSliderPanelFactory.java │ │ │ │ │ │ │ ├── qname │ │ │ │ │ │ │ │ ├── AbstractObjectClassFactory.java │ │ │ │ │ │ │ │ ├── AbstractQNameWithChoicesPanelFactory.java │ │ │ │ │ │ │ │ ├── AssociationNamePanelFactory.java │ │ │ │ │ │ │ │ ├── AttributeMatchingRulePanelFactory.java │ │ │ │ │ │ │ │ ├── ComplexTypeExtensionTypePanelFactory.java │ │ │ │ │ │ │ │ ├── DropDownChoicePanelFactory.java │ │ │ │ │ │ │ │ ├── QNameAttributePanelFactory.java │ │ │ │ │ │ │ │ ├── QNameTextPanelFactory.java │ │ │ │ │ │ │ │ ├── RelationPanelFactory.java │ │ │ │ │ │ │ │ ├── ResourceObjectFocusTypePanelFactory.java │ │ │ │ │ │ │ │ ├── SchemaDefinitionNamePanelFactory.java │ │ │ │ │ │ │ │ ├── SchemaEnumBaseTypePanelFactory.java │ │ │ │ │ │ │ │ └── SchemaItemTypePanelFactory.java │ │ │ │ │ │ │ ├── searchfilter │ │ │ │ │ │ │ │ ├── ResourceAttributeSearchFilterTypeForQueryModel.java │ │ │ │ │ │ │ │ ├── ResourceAttributesSearchFilterPanelFactory.java │ │ │ │ │ │ │ │ ├── SearchFilterPanelFactory.java │ │ │ │ │ │ │ │ ├── SearchFilterTypeForQueryModel.java │ │ │ │ │ │ │ │ ├── SearchFilterTypeForXmlModel.java │ │ │ │ │ │ │ │ └── SearchFilterTypeModel.java │ │ │ │ │ │ │ └── variablebindingdefinition │ │ │ │ │ │ │ │ ├── SourceOfFocusMappingPanelFactory.java │ │ │ │ │ │ │ │ ├── SourceOfInboundForAssociationMappingPanelFactory.java │ │ │ │ │ │ │ │ ├── SourceOfInboundMappingPanelFactory.java │ │ │ │ │ │ │ │ ├── SourceOrTargetOfAssociationMappingPanelFactory.java │ │ │ │ │ │ │ │ ├── SourceOrTargetOfMappingPanelFactory.java │ │ │ │ │ │ │ │ ├── TargetOfFocusMappingPanelFactory.java │ │ │ │ │ │ │ │ └── VariableBindingDefinitionTypePanelFactory.java │ │ │ │ │ │ └── wrapper │ │ │ │ │ │ │ ├── AdminGuiContainerWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── AppendersWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── AssignmentDetailsWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── AssignmentHolderWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── AssignmentWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── AuthenticationAttemptWrapperFactory.java │ │ │ │ │ │ │ ├── AuthenticationBehaviorWrapperFactory.java │ │ │ │ │ │ │ ├── BooleanWrapperFactory.java │ │ │ │ │ │ │ ├── CaseWorkItemWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── ChildOfReportParamWrapperFactory.java │ │ │ │ │ │ │ ├── ClassLoggerWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── ConnectorConfigurationWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── ConnectorDevelopmentTypeResourceWrapperFactory.java │ │ │ │ │ │ │ ├── ConstructionWrapperFactory.java │ │ │ │ │ │ │ ├── EffectiveMarkWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── ExpressionWrapperFactory.java │ │ │ │ │ │ │ ├── HeterogenousContainerWrapperFactory.java │ │ │ │ │ │ │ ├── ItemWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── LoggingConfigurationWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── MappingNameWrapperFactory.java │ │ │ │ │ │ │ ├── MarkingPatternWrapperFactory.java │ │ │ │ │ │ │ ├── MetadataWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── NoEmptyValueContainerWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── OperationalContainerWrapperFactory.java │ │ │ │ │ │ │ ├── OutboundAttributeMappingWrapperFactory.java │ │ │ │ │ │ │ ├── PolicyStatementMarkRefWrapperFactory.java │ │ │ │ │ │ │ ├── PrismContainerWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── PrismObjectWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── PrismPropertyWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── PrismReferenceWrapperFactory.java │ │ │ │ │ │ │ ├── ProfilingClassLoggerWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── ProtectedStringWrapperFactory.java │ │ │ │ │ │ │ ├── ProvenanceMetadataWrapperFactory.java │ │ │ │ │ │ │ ├── ReportParamWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── ResourceAttributeMappingWrapperFactory.java │ │ │ │ │ │ │ ├── ResourceAttributeWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── ResourceObjectTypeArchetypeWrapperFactory.java │ │ │ │ │ │ │ ├── ResourceObjectTypeDefaultOptionalPolicyWrapperFactory.java │ │ │ │ │ │ │ ├── ResourceObjectTypeWrapperFactory.java │ │ │ │ │ │ │ ├── ResourceReferenceAttributeWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── ResourceWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── RoleAnalysisAttributeSettingPropertyFactory.java │ │ │ │ │ │ │ ├── ShadowAssociationValueWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── ShadowAssociationsContainerWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── ShadowAttributesWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── ShadowWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── TaskHandlerWrapperFactory.java │ │ │ │ │ │ │ ├── TaskWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── TenantRefWrapperFactory.java │ │ │ │ │ │ │ ├── ValueMetadataWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── VolatilityDependencyOperationWrapperFactoryImpl.java │ │ │ │ │ │ │ ├── resourceAssociation │ │ │ │ │ │ │ ├── AssociationInboundExpressionWrapperFactory.java │ │ │ │ │ │ │ ├── AssociationMappingExpressionWrapperFactory.java │ │ │ │ │ │ │ ├── AssociationMappingWrapperFactory.java │ │ │ │ │ │ │ ├── AssociationNameWrapperFactory.java │ │ │ │ │ │ │ ├── AssociationOutboundExpressionWrapperFactory.java │ │ │ │ │ │ │ └── AssociationSynchronizationActionFactory.java │ │ │ │ │ │ │ └── schema │ │ │ │ │ │ │ ├── ObjectReferenceTargetTypeWrapperFactory.java │ │ │ │ │ │ │ ├── PrismSchemaItemWrapperFactory.java │ │ │ │ │ │ │ ├── ResourceSchemaWrapperFactory.java │ │ │ │ │ │ │ ├── SchemaDefinitionWrapperFactory.java │ │ │ │ │ │ │ ├── SchemaWrapperFactory.java │ │ │ │ │ │ │ ├── UnmodifiableSchemaItemIndexWrapperFactory.java │ │ │ │ │ │ │ ├── UnmodifiableSchemaPropertiesWrapperFactory.java │ │ │ │ │ │ │ └── UnmodifiableSchemaReferencesWrapperFactory.java │ │ │ │ │ │ ├── model │ │ │ │ │ │ ├── FlexibleLabelModel.java │ │ │ │ │ │ ├── RelationModel.java │ │ │ │ │ │ ├── SelectableObjectModel.java │ │ │ │ │ │ └── SelectableRowModel.java │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ ├── page │ │ │ │ │ │ ├── admin │ │ │ │ │ │ │ ├── AbstractObjectMainPanel.java │ │ │ │ │ │ │ ├── AbstractPageObjectDetails.html │ │ │ │ │ │ │ ├── AbstractPageObjectDetails.java │ │ │ │ │ │ │ ├── AbstractTemplateChoicePanel.java │ │ │ │ │ │ │ ├── CreateTemplatePanel.html │ │ │ │ │ │ │ ├── CreateTemplatePanel.java │ │ │ │ │ │ │ ├── DetailsFragment.java │ │ │ │ │ │ │ ├── EnumChoicePanel.java │ │ │ │ │ │ │ ├── FormWrapperValidator.java │ │ │ │ │ │ │ ├── ObjectChangeExecutor.java │ │ │ │ │ │ │ ├── ObjectChangesExecutorImpl.java │ │ │ │ │ │ │ ├── ObjectDetailsModels.java │ │ │ │ │ │ │ ├── PageObjectModel.java │ │ │ │ │ │ │ ├── ProgressAwareChangesExecutorImpl.java │ │ │ │ │ │ │ ├── TemplateChoicePanel.java │ │ │ │ │ │ │ ├── abstractrole │ │ │ │ │ │ │ │ ├── AbstractRoleDetailsModel.java │ │ │ │ │ │ │ │ ├── PageAbstractRole.html │ │ │ │ │ │ │ │ ├── PageAbstractRole.java │ │ │ │ │ │ │ │ └── component │ │ │ │ │ │ │ │ │ ├── AbstractRoleInducementPanel.html │ │ │ │ │ │ │ │ │ ├── AbstractRoleInducementPanel.java │ │ │ │ │ │ │ │ │ ├── AbstractRoleMemberPanel.html │ │ │ │ │ │ │ │ │ ├── AbstractRoleMemberPanel.java │ │ │ │ │ │ │ │ │ ├── ChooseRelationPopup.html │ │ │ │ │ │ │ │ │ ├── ChooseRelationPopup.java │ │ │ │ │ │ │ │ │ ├── FocusApplicablePoliciesPanel.html │ │ │ │ │ │ │ │ │ ├── FocusApplicablePoliciesPanel.java │ │ │ │ │ │ │ │ │ ├── GovernanceCardsPanel.html │ │ │ │ │ │ │ │ │ ├── GovernanceCardsPanel.java │ │ │ │ │ │ │ │ │ ├── InducedByPanel.java │ │ │ │ │ │ │ │ │ ├── InlineButtonPanel.html │ │ │ │ │ │ │ │ │ ├── InlineButtonPanel.java │ │ │ │ │ │ │ │ │ ├── MemberOperationsGuiHelper.java │ │ │ │ │ │ │ │ │ ├── MemberOperationsQueryUtil.java │ │ │ │ │ │ │ │ │ ├── MemberOperationsTaskCreator.java │ │ │ │ │ │ │ │ │ ├── ModificationTargetPanel.html │ │ │ │ │ │ │ │ │ ├── ModificationTargetPreviewPanel.html │ │ │ │ │ │ │ │ │ ├── ModificationTargetPreviewPanel.java │ │ │ │ │ │ │ │ │ ├── RelationTilePanel.html │ │ │ │ │ │ │ │ │ ├── RelationTilePanel.java │ │ │ │ │ │ │ │ │ └── TaskAwareExecutor.java │ │ │ │ │ │ │ ├── application │ │ │ │ │ │ │ │ ├── PageApplication.html │ │ │ │ │ │ │ │ ├── PageApplication.java │ │ │ │ │ │ │ │ ├── PageApplications.html │ │ │ │ │ │ │ │ ├── PageApplications.java │ │ │ │ │ │ │ │ └── component │ │ │ │ │ │ │ │ │ ├── ApplicationSummaryPanel.java │ │ │ │ │ │ │ │ │ └── wizard │ │ │ │ │ │ │ │ │ ├── ApplicationWizardPanel.java │ │ │ │ │ │ │ │ │ └── basic │ │ │ │ │ │ │ │ │ ├── BasicApplicationWizardPanel.java │ │ │ │ │ │ │ │ │ └── BasicInformationApplicationStepPanel.java │ │ │ │ │ │ │ ├── archetype │ │ │ │ │ │ │ │ ├── PageArchetype.java │ │ │ │ │ │ │ │ └── component │ │ │ │ │ │ │ │ │ ├── ArchetypeMembersPanel.java │ │ │ │ │ │ │ │ │ ├── ArchetypePolicyPanel.html │ │ │ │ │ │ │ │ │ └── ArchetypePolicyPanel.java │ │ │ │ │ │ │ ├── assignmentholder │ │ │ │ │ │ │ │ ├── AssignmentHolderDetailsModel.java │ │ │ │ │ │ │ │ ├── PageAssignmentHolderDetails.html │ │ │ │ │ │ │ │ ├── PageAssignmentHolderDetails.java │ │ │ │ │ │ │ │ └── component │ │ │ │ │ │ │ │ │ ├── AssignmentHolderAssignmentPanel.html │ │ │ │ │ │ │ │ │ ├── AssignmentHolderAssignmentPanel.java │ │ │ │ │ │ │ │ │ ├── AssignmentHolderBasicPanel.html │ │ │ │ │ │ │ │ │ ├── AssignmentHolderBasicPanel.java │ │ │ │ │ │ │ │ │ ├── RoleMembershipPanel.java │ │ │ │ │ │ │ │ │ └── assignmentType │ │ │ │ │ │ │ │ │ ├── AbstractAssignmentTypePanel.java │ │ │ │ │ │ │ │ │ ├── assignment │ │ │ │ │ │ │ │ │ ├── AbstractAssignmentPanel.java │ │ │ │ │ │ │ │ │ ├── AbstractRoleAssignmentPanel.java │ │ │ │ │ │ │ │ │ ├── AllAssignmentsPanel.java │ │ │ │ │ │ │ │ │ ├── ConstructionAssignmentsPanel.java │ │ │ │ │ │ │ │ │ ├── DirectAndIndirectAssignmentPanel.java │ │ │ │ │ │ │ │ │ ├── FocusMappingsAssignmentsPanel.java │ │ │ │ │ │ │ │ │ ├── GdprAssignmentPanel.java │ │ │ │ │ │ │ │ │ ├── GenericAbstractRoleAssignmentPanel.java │ │ │ │ │ │ │ │ │ ├── OrgAssignmentsPanel.java │ │ │ │ │ │ │ │ │ ├── PolicyAssignmentsPanel.java │ │ │ │ │ │ │ │ │ ├── PolicyRuleAssignmentsPanel.java │ │ │ │ │ │ │ │ │ ├── RoleAssignmentsPanel.java │ │ │ │ │ │ │ │ │ └── ServiceAssignmentsPanel.java │ │ │ │ │ │ │ │ │ └── inducement │ │ │ │ │ │ │ │ │ ├── AbstractInducementPanel.java │ │ │ │ │ │ │ │ │ ├── AllInducementsPanel.java │ │ │ │ │ │ │ │ │ ├── ConstructionInducementsPanel.java │ │ │ │ │ │ │ │ │ ├── FocusMappingsInducementsPanel.java │ │ │ │ │ │ │ │ │ ├── InducedEntitlementsPanel.java │ │ │ │ │ │ │ │ │ ├── InducedEntitlementsValidator.java │ │ │ │ │ │ │ │ │ ├── OrgInducementsPanel.java │ │ │ │ │ │ │ │ │ ├── PolicyRuleInducementsPanel.java │ │ │ │ │ │ │ │ │ ├── RoleInducementsPanel.java │ │ │ │ │ │ │ │ │ └── ServiceInducementsPanel.java │ │ │ │ │ │ │ ├── cases │ │ │ │ │ │ │ │ ├── CaseDetailsModels.java │ │ │ │ │ │ │ │ ├── PageCase.java │ │ │ │ │ │ │ │ └── component │ │ │ │ │ │ │ │ │ ├── ApprovalCasePanel.html │ │ │ │ │ │ │ │ │ ├── ApprovalCasePanel.java │ │ │ │ │ │ │ │ │ ├── CaseOperationalButtonsPanel.html │ │ │ │ │ │ │ │ │ ├── CaseOperationalButtonsPanel.java │ │ │ │ │ │ │ │ │ ├── CaseWorkitemsPanel.html │ │ │ │ │ │ │ │ │ ├── CaseWorkitemsPanel.java │ │ │ │ │ │ │ │ │ ├── ChildCasesPanel.html │ │ │ │ │ │ │ │ │ ├── ChildCasesPanel.java │ │ │ │ │ │ │ │ │ ├── CorrelationContextDto.java │ │ │ │ │ │ │ │ │ ├── CorrelationContextPanel.html │ │ │ │ │ │ │ │ │ ├── CorrelationContextPanel.java │ │ │ │ │ │ │ │ │ ├── CorrelationOptionDto.java │ │ │ │ │ │ │ │ │ ├── CorrelationPropertyValues.java │ │ │ │ │ │ │ │ │ ├── ManualCasePanel.html │ │ │ │ │ │ │ │ │ ├── ManualCasePanel.java │ │ │ │ │ │ │ │ │ ├── MatchVisualizationStyle.java │ │ │ │ │ │ │ │ │ ├── OperationRequestCasePanel.html │ │ │ │ │ │ │ │ │ └── OperationRequestCasePanel.java │ │ │ │ │ │ │ ├── certification │ │ │ │ │ │ │ │ ├── CertificationDetailsModel.java │ │ │ │ │ │ │ │ ├── PageActiveCampaigns.html │ │ │ │ │ │ │ │ ├── PageActiveCampaigns.java │ │ │ │ │ │ │ │ ├── PageAdminCertification.java │ │ │ │ │ │ │ │ ├── PageCertCampaign.java │ │ │ │ │ │ │ │ ├── PageCertCampaigns.html │ │ │ │ │ │ │ │ ├── PageCertCampaigns.java │ │ │ │ │ │ │ │ ├── PageCertDefinition.html │ │ │ │ │ │ │ │ ├── PageCertDefinition.java │ │ │ │ │ │ │ │ ├── PageCertDefinitions.html │ │ │ │ │ │ │ │ ├── PageCertDefinitions.java │ │ │ │ │ │ │ │ ├── PageCertItems.html │ │ │ │ │ │ │ │ ├── PageCertItems.java │ │ │ │ │ │ │ │ ├── PageMyActiveCampaigns.java │ │ │ │ │ │ │ │ ├── PageMyCertItems.java │ │ │ │ │ │ │ │ ├── column │ │ │ │ │ │ │ │ │ ├── AbstractCertificationItemColumn.java │ │ │ │ │ │ │ │ │ ├── AbstractGuiColumn.java │ │ │ │ │ │ │ │ │ ├── CertItemCommentIconColumn.java │ │ │ │ │ │ │ │ │ ├── CertItemDetailsLinkColumn.java │ │ │ │ │ │ │ │ │ ├── CertItemEditableCommentColumn.java │ │ │ │ │ │ │ │ │ ├── CertItemObjectColumn.java │ │ │ │ │ │ │ │ │ ├── CertItemObjectDisplayNameColumn.java │ │ │ │ │ │ │ │ │ ├── CertItemResponseColumn.java │ │ │ │ │ │ │ │ │ ├── CertItemReviewersColumn.java │ │ │ │ │ │ │ │ │ ├── CertItemTargetColumn.java │ │ │ │ │ │ │ │ │ └── CertItemTargetDisplayNameColumn.java │ │ │ │ │ │ │ │ ├── component │ │ │ │ │ │ │ │ │ ├── ActionConfigurationPanel.html │ │ │ │ │ │ │ │ │ ├── ActionConfigurationPanel.java │ │ │ │ │ │ │ │ │ ├── ActiveCampaignsPanel.java │ │ │ │ │ │ │ │ │ ├── CampaignActionButton.java │ │ │ │ │ │ │ │ │ ├── CampaignStatisticsPanel.html │ │ │ │ │ │ │ │ │ ├── CampaignStatisticsPanel.java │ │ │ │ │ │ │ │ │ ├── CampaignTilePanel.html │ │ │ │ │ │ │ │ │ ├── CampaignTilePanel.java │ │ │ │ │ │ │ │ │ ├── CampaignsPanel.html │ │ │ │ │ │ │ │ │ ├── CampaignsPanel.java │ │ │ │ │ │ │ │ │ ├── CertCampaignSummaryPanel.java │ │ │ │ │ │ │ │ │ ├── CertResponseDetailsPanel.html │ │ │ │ │ │ │ │ │ ├── CertResponseDetailsPanel.java │ │ │ │ │ │ │ │ │ ├── CertificationCasesPanel.java │ │ │ │ │ │ │ │ │ ├── CertificationItemsPanel.html │ │ │ │ │ │ │ │ │ ├── CertificationItemsPanel.java │ │ │ │ │ │ │ │ │ ├── CertificationItemsTabbedPanel.html │ │ │ │ │ │ │ │ │ ├── CertificationItemsTabbedPanel.java │ │ │ │ │ │ │ │ │ ├── CertificationWorkItemTable.java │ │ │ │ │ │ │ │ │ ├── ChatMessageItem.java │ │ │ │ │ │ │ │ │ ├── ChatPanel.html │ │ │ │ │ │ │ │ │ ├── ChatPanel.java │ │ │ │ │ │ │ │ │ ├── CommentPanel.html │ │ │ │ │ │ │ │ │ ├── CommentPanel.java │ │ │ │ │ │ │ │ │ ├── DashboardCertCampaignsPanel.java │ │ │ │ │ │ │ │ │ ├── DeadlinePanel.html │ │ │ │ │ │ │ │ │ ├── DeadlinePanel.java │ │ │ │ │ │ │ │ │ ├── HorizontalCampaignDetailsPanel.html │ │ │ │ │ │ │ │ │ ├── HorizontalCampaignDetailsPanel.java │ │ │ │ │ │ │ │ │ ├── RelatedTasksPanel.html │ │ │ │ │ │ │ │ │ ├── RelatedTasksPanel.java │ │ │ │ │ │ │ │ │ ├── ResolveItemPanel.html │ │ │ │ │ │ │ │ │ ├── ResolveItemPanel.java │ │ │ │ │ │ │ │ │ ├── ResponsesOverviewPanel.html │ │ │ │ │ │ │ │ │ ├── ResponsesOverviewPanel.java │ │ │ │ │ │ │ │ │ ├── ReviewerStatisticDto.java │ │ │ │ │ │ │ │ │ ├── ReviewerTilePanel.html │ │ │ │ │ │ │ │ │ ├── ReviewerTilePanel.java │ │ │ │ │ │ │ │ │ ├── ReviewersStatisticsPanel.html │ │ │ │ │ │ │ │ │ ├── ReviewersStatisticsPanel.java │ │ │ │ │ │ │ │ │ ├── ReviewersTileTablePanel.java │ │ │ │ │ │ │ │ │ ├── SelectReportTemplatePanel.html │ │ │ │ │ │ │ │ │ ├── SelectReportTemplatePanel.java │ │ │ │ │ │ │ │ │ ├── SelectableInfoBoxPanel.html │ │ │ │ │ │ │ │ │ ├── SelectableInfoBoxPanel.java │ │ │ │ │ │ │ │ │ ├── StatisticBoxDto.java │ │ │ │ │ │ │ │ │ ├── StatisticBoxPanel.html │ │ │ │ │ │ │ │ │ ├── StatisticBoxPanel.java │ │ │ │ │ │ │ │ │ ├── StatisticListBoxPanel.html │ │ │ │ │ │ │ │ │ └── StatisticListBoxPanel.java │ │ │ │ │ │ │ │ └── helpers │ │ │ │ │ │ │ │ │ ├── AvailableResponses.java │ │ │ │ │ │ │ │ │ ├── CampaignProcessingHelper.java │ │ │ │ │ │ │ │ │ ├── CampaignStateHelper.java │ │ │ │ │ │ │ │ │ ├── CertMiscUtil.java │ │ │ │ │ │ │ │ │ ├── CertificationColumnTypeConfigContext.java │ │ │ │ │ │ │ │ │ └── CertificationItemResponseHelper.java │ │ │ │ │ │ │ ├── component │ │ │ │ │ │ │ │ ├── AssignmentHolderOperationalButtonsPanel.java │ │ │ │ │ │ │ │ ├── ExecuteChangeOptionsPanel.html │ │ │ │ │ │ │ │ ├── ExecuteChangeOptionsPanel.java │ │ │ │ │ │ │ │ ├── FocusOperationalButtonsPanel.html │ │ │ │ │ │ │ │ ├── FocusOperationalButtonsPanel.java │ │ │ │ │ │ │ │ ├── GenericMultivalueContainerPanel.html │ │ │ │ │ │ │ │ ├── GenericMultivalueContainerPanel.java │ │ │ │ │ │ │ │ ├── GenericSingleContainerPanel.html │ │ │ │ │ │ │ │ ├── GenericSingleContainerPanel.java │ │ │ │ │ │ │ │ ├── InlineOperationalButtonsPanel.html │ │ │ │ │ │ │ │ ├── InlineOperationalButtonsPanel.java │ │ │ │ │ │ │ │ ├── OperationPanelPart.html │ │ │ │ │ │ │ │ ├── OperationPanelPart.java │ │ │ │ │ │ │ │ ├── OperationalButtonsPanel.html │ │ │ │ │ │ │ │ ├── OperationalButtonsPanel.java │ │ │ │ │ │ │ │ ├── OperationsPanel.html │ │ │ │ │ │ │ │ ├── OperationsPanel.java │ │ │ │ │ │ │ │ ├── ProgressPanel.html │ │ │ │ │ │ │ │ ├── ProgressPanel.java │ │ │ │ │ │ │ │ ├── ProgressReportingAwarePage.java │ │ │ │ │ │ │ │ ├── ResourceOperationalButtonsPanel.html │ │ │ │ │ │ │ │ ├── ResourceOperationalButtonsPanel.java │ │ │ │ │ │ │ │ ├── SingleTileChoicePanel.html │ │ │ │ │ │ │ │ ├── SingleTileChoicePanel.java │ │ │ │ │ │ │ │ ├── TaskOperationalButtonsPanel.html │ │ │ │ │ │ │ │ ├── TaskOperationalButtonsPanel.java │ │ │ │ │ │ │ │ ├── UserOperationalButtonsPanel.java │ │ │ │ │ │ │ │ └── preview │ │ │ │ │ │ │ │ │ ├── PreviewChangesTabPanel.html │ │ │ │ │ │ │ │ │ └── PreviewChangesTabPanel.java │ │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ │ │ └── component │ │ │ │ │ │ │ │ │ ├── ComponentLoggerType.java │ │ │ │ │ │ │ │ │ ├── NotificationConfigTabPanel.html │ │ │ │ │ │ │ │ │ ├── NotificationConfigTabPanel.java │ │ │ │ │ │ │ │ │ ├── ProfilingLevel.java │ │ │ │ │ │ │ │ │ └── StandardLoggerType.java │ │ │ │ │ │ │ ├── connector │ │ │ │ │ │ │ │ └── development │ │ │ │ │ │ │ │ │ ├── ConnectorDevelopmentDetailsModel.java │ │ │ │ │ │ │ │ │ ├── PageConnectorDevelopment.java │ │ │ │ │ │ │ │ │ ├── PageConnectorDevelopments.html │ │ │ │ │ │ │ │ │ ├── PageConnectorDevelopments.java │ │ │ │ │ │ │ │ │ └── component │ │ │ │ │ │ │ │ │ └── wizard │ │ │ │ │ │ │ │ │ ├── BasicConnectorDevPartItem.java │ │ │ │ │ │ │ │ │ ├── ConnectorDevelopmentController.java │ │ │ │ │ │ │ │ │ ├── ConnectorDevelopmentWizardUtil.java │ │ │ │ │ │ │ │ │ ├── CreateConnectorDevPartItem.java │ │ │ │ │ │ │ │ │ ├── DeleteConnectorDevPartItem.java │ │ │ │ │ │ │ │ │ ├── InitConnectorDevPartItem.java │ │ │ │ │ │ │ │ │ ├── InitObjectClassConnectorDevPartItem.java │ │ │ │ │ │ │ │ │ ├── InitRelationshipConnectorDevPartItem.java │ │ │ │ │ │ │ │ │ ├── NextConnectorDevPartItem.java │ │ │ │ │ │ │ │ │ ├── ObjectClassesConnectorDevPartItem.java │ │ │ │ │ │ │ │ │ ├── OperationConnectorDevPartItem.java │ │ │ │ │ │ │ │ │ ├── RelationshipsConnectorDevPartItem.java │ │ │ │ │ │ │ │ │ ├── SchemaConnectorDevPartItem.java │ │ │ │ │ │ │ │ │ ├── SearchAllConnectorDevPartItem.java │ │ │ │ │ │ │ │ │ ├── UpdateConnectorDevPartItem.java │ │ │ │ │ │ │ │ │ ├── scimrest │ │ │ │ │ │ │ │ │ ├── NextStepsActionsPanel.html │ │ │ │ │ │ │ │ │ ├── NextStepsActionsPanel.java │ │ │ │ │ │ │ │ │ ├── NextStepsConnectorStepPanel.html │ │ │ │ │ │ │ │ │ ├── NextStepsConnectorStepPanel.java │ │ │ │ │ │ │ │ │ ├── ResourceCreationPopup.html │ │ │ │ │ │ │ │ │ ├── ResourceCreationPopup.java │ │ │ │ │ │ │ │ │ ├── ScriptConfirmationPanel.java │ │ │ │ │ │ │ │ │ ├── ScriptConnectorStepPanel.html │ │ │ │ │ │ │ │ │ ├── ScriptConnectorStepPanel.java │ │ │ │ │ │ │ │ │ ├── ScriptsConnectorStepPanel.html │ │ │ │ │ │ │ │ │ ├── ScriptsConnectorStepPanel.java │ │ │ │ │ │ │ │ │ ├── WaitingConnectorStepPanel.html │ │ │ │ │ │ │ │ │ ├── WaitingConnectorStepPanel.java │ │ │ │ │ │ │ │ │ ├── WaitingObjectClassScriptConnectorStepPanel.java │ │ │ │ │ │ │ │ │ ├── WaitingScriptConnectorStepPanel.java │ │ │ │ │ │ │ │ │ ├── basic │ │ │ │ │ │ │ │ │ │ ├── ApplicationIdentificationConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── BasicInformationConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── ConnectorIdentificationConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── DocumentationConnectorStepPanel.html │ │ │ │ │ │ │ │ │ │ ├── DocumentationConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── DocumentationTile.java │ │ │ │ │ │ │ │ │ │ ├── DocumentationTilePanel.html │ │ │ │ │ │ │ │ │ │ ├── DocumentationTilePanel.java │ │ │ │ │ │ │ │ │ │ ├── WaitingConnectorCreatingConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ └── WaitingForDocumentationConnectorStepPanel.java │ │ │ │ │ │ │ │ │ ├── connection │ │ │ │ │ │ │ │ │ │ ├── AuthScriptsConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── BaseUrlConnectorStepPanel.html │ │ │ │ │ │ │ │ │ │ ├── BaseUrlConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── ConnectionConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── CredentialsConnectorStepPanel.html │ │ │ │ │ │ │ │ │ │ ├── CredentialsConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── EndpointConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── ResourceTestConnectorStepPanel.html │ │ │ │ │ │ │ │ │ │ ├── ResourceTestConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── ResourceTestPanel.html │ │ │ │ │ │ │ │ │ │ ├── ResourceTestPanel.java │ │ │ │ │ │ │ │ │ │ ├── SupportedAuthMethodConnectorStepPanel.html │ │ │ │ │ │ │ │ │ │ ├── SupportedAuthMethodConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── WaitingAuthScriptsConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ └── WaitingBasicInfoConnectorStepPanel.java │ │ │ │ │ │ │ │ │ ├── objectclass │ │ │ │ │ │ │ │ │ │ ├── AbstractObjectClassConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── ConnectorObjectClassTilePanel.html │ │ │ │ │ │ │ │ │ │ ├── ConnectorObjectClassTilePanel.java │ │ │ │ │ │ │ │ │ │ ├── EndpointsConnectorStepPanel.html │ │ │ │ │ │ │ │ │ │ ├── EndpointsConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── InitObjectClassConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── ObjectClassBasicConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── ObjectClassSelectConnectorStepPanel.html │ │ │ │ │ │ │ │ │ │ ├── ObjectClassSelectConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── ObjectClassesConnectorStepPanel.html │ │ │ │ │ │ │ │ │ │ ├── ObjectClassesConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── WaitingObjectClassInformationStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ │ │ │ │ ├── CreateEndpointsConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── CreateObjectClassConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── CreateScriptConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ │ └── WaitingCreateConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── delete │ │ │ │ │ │ │ │ │ │ │ ├── DeleteEndpointsConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── DeleteObjectClassConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── DeleteScriptConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ │ └── WaitingDeleteConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── schema │ │ │ │ │ │ │ │ │ │ │ ├── SchemaObjectClassConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── SchemaScriptConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── ShowSchemaConnectorStepPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── ShowSchemaConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── WaitingConnIdSchemaConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── WaitingNativeSchemaConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ │ └── WaitingObjectClassDetailsConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ │ │ │ │ ├── SearchAllEndpointsConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── SearchAllObjectClassConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── SearchAllObjectsConnectorStepPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── SearchAllObjectsConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── SearchAllScriptConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ │ └── WaitingSearchAllConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ └── update │ │ │ │ │ │ │ │ │ │ │ ├── UpdateEndpointsConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── UpdateObjectClassConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── UpdateScriptConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ │ └── WaitingUpdateConnectorStepPanel.java │ │ │ │ │ │ │ │ │ └── relation │ │ │ │ │ │ │ │ │ │ ├── ApplicationBasicConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── ConnectorRelationshipTile.java │ │ │ │ │ │ │ │ │ │ ├── ConnectorRelationshipTilePanel.html │ │ │ │ │ │ │ │ │ │ ├── ConnectorRelationshipTilePanel.java │ │ │ │ │ │ │ │ │ │ ├── RelationshipConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── RelationshipScriptConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── RelationshipSelectConnectorStepPanel.html │ │ │ │ │ │ │ │ │ │ ├── RelationshipSelectConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── RelationshipsConnectorStepPanel.html │ │ │ │ │ │ │ │ │ │ ├── RelationshipsConnectorStepPanel.java │ │ │ │ │ │ │ │ │ │ └── WaitingRelationshipScriptConnectorStepPanel.java │ │ │ │ │ │ │ │ │ └── summary │ │ │ │ │ │ │ │ │ ├── ConnectorDevelopmentWizardSummaryPanel.html │ │ │ │ │ │ │ │ │ ├── ConnectorDevelopmentWizardSummaryPanel.java │ │ │ │ │ │ │ │ │ ├── ContainerWithStatusWidgetDetails.java │ │ │ │ │ │ │ │ │ ├── ContainerWithStatusWidgetDto.java │ │ │ │ │ │ │ │ │ ├── ContainerWithStatusWidgetPanel.html │ │ │ │ │ │ │ │ │ ├── ContainerWithStatusWidgetPanel.java │ │ │ │ │ │ │ │ │ ├── NumberOfObjectsWidgetDto.java │ │ │ │ │ │ │ │ │ ├── NumberOfObjectsWidgetPanel.html │ │ │ │ │ │ │ │ │ ├── NumberOfObjectsWidgetPanel.java │ │ │ │ │ │ │ │ │ ├── NumericWidgetDetailsDto.java │ │ │ │ │ │ │ │ │ ├── NumericWidgetDetailsPanel.html │ │ │ │ │ │ │ │ │ ├── NumericWidgetDetailsPanel.java │ │ │ │ │ │ │ │ │ ├── StringValuesWidgetDetailsDto.java │ │ │ │ │ │ │ │ │ ├── StringValuesWidgetDetailsPanel.html │ │ │ │ │ │ │ │ │ └── StringValuesWidgetDetailsPanel.java │ │ │ │ │ │ │ ├── focus │ │ │ │ │ │ │ │ ├── FocusDetailsModels.java │ │ │ │ │ │ │ │ ├── FocusMarkPanel.html │ │ │ │ │ │ │ │ ├── FocusMarkPanel.java │ │ │ │ │ │ │ │ ├── PageFocusDetails.html │ │ │ │ │ │ │ │ ├── PageFocusDetails.java │ │ │ │ │ │ │ │ ├── PageFocusPreviewChanges.html │ │ │ │ │ │ │ │ ├── PageFocusPreviewChanges.java │ │ │ │ │ │ │ │ ├── PageMergeObjects.html │ │ │ │ │ │ │ │ ├── PageMergeObjects.java │ │ │ │ │ │ │ │ └── component │ │ │ │ │ │ │ │ │ ├── FocusActivationPanel.html │ │ │ │ │ │ │ │ │ ├── FocusActivationPanel.java │ │ │ │ │ │ │ │ │ ├── FocusCasesPanel.html │ │ │ │ │ │ │ │ │ ├── FocusCasesPanel.java │ │ │ │ │ │ │ │ │ ├── FocusHistoryPanel.html │ │ │ │ │ │ │ │ │ ├── FocusHistoryPanel.java │ │ │ │ │ │ │ │ │ ├── FocusPasswordPanel.html │ │ │ │ │ │ │ │ │ ├── FocusPasswordPanel.java │ │ │ │ │ │ │ │ │ ├── FocusProjectionsPanel.html │ │ │ │ │ │ │ │ │ ├── FocusProjectionsPanel.java │ │ │ │ │ │ │ │ │ ├── FocusTriggersPanel.html │ │ │ │ │ │ │ │ │ └── FocusTriggersPanel.java │ │ │ │ │ │ │ ├── mark │ │ │ │ │ │ │ │ ├── MarkObjectListPanel.java │ │ │ │ │ │ │ │ ├── MarkSummaryPanel.java │ │ │ │ │ │ │ │ ├── PageMark.java │ │ │ │ │ │ │ │ ├── PageMarks.html │ │ │ │ │ │ │ │ ├── PageMarks.java │ │ │ │ │ │ │ │ └── component │ │ │ │ │ │ │ │ │ ├── EffectiveMarkDto.java │ │ │ │ │ │ │ │ │ ├── MarksOfObjectListPanel.java │ │ │ │ │ │ │ │ │ ├── MarksOfObjectListPopupPanel.html │ │ │ │ │ │ │ │ │ ├── MarksOfObjectListPopupPanel.java │ │ │ │ │ │ │ │ │ ├── ShadowMarkPanel.html │ │ │ │ │ │ │ │ │ └── ShadowMarkPanel.java │ │ │ │ │ │ │ ├── messagetemplate │ │ │ │ │ │ │ │ ├── LocalizedContentCounter.java │ │ │ │ │ │ │ │ ├── MessageTemplateContentPanel.html │ │ │ │ │ │ │ │ ├── MessageTemplateContentPanel.java │ │ │ │ │ │ │ │ ├── MessageTemplateLocalizedContentPanel.java │ │ │ │ │ │ │ │ ├── MessageTemplateModel.java │ │ │ │ │ │ │ │ ├── MessageTemplateSummaryPanel.java │ │ │ │ │ │ │ │ ├── PageMessageTemplate.java │ │ │ │ │ │ │ │ ├── PageMessageTemplates.html │ │ │ │ │ │ │ │ ├── PageMessageTemplates.java │ │ │ │ │ │ │ │ └── TemplateContentDetailsPanel.java │ │ │ │ │ │ │ ├── objectcollection │ │ │ │ │ │ │ │ ├── PageObjectCollection.java │ │ │ │ │ │ │ │ └── component │ │ │ │ │ │ │ │ │ ├── BaseCollectionPanel.html │ │ │ │ │ │ │ │ │ ├── BaseCollectionPanel.java │ │ │ │ │ │ │ │ │ ├── ObjectCollectionDefaultViewPanel.html │ │ │ │ │ │ │ │ │ ├── ObjectCollectionDefaultViewPanel.java │ │ │ │ │ │ │ │ │ ├── ObjectCollectionDomainPanel.html │ │ │ │ │ │ │ │ │ ├── ObjectCollectionDomainPanel.java │ │ │ │ │ │ │ │ │ ├── ObjectCollectionOptionPanel.html │ │ │ │ │ │ │ │ │ └── ObjectCollectionOptionPanel.java │ │ │ │ │ │ │ ├── objecttemplate │ │ │ │ │ │ │ │ ├── PageObjectTemplate.java │ │ │ │ │ │ │ │ └── component │ │ │ │ │ │ │ │ │ ├── ListMappingPanel.java │ │ │ │ │ │ │ │ │ ├── ObjectTemplateItemsPanel.html │ │ │ │ │ │ │ │ │ ├── ObjectTemplateItemsPanel.java │ │ │ │ │ │ │ │ │ ├── ObjectTemplateIterationSpecificationPanel.html │ │ │ │ │ │ │ │ │ ├── ObjectTemplateIterationSpecificationPanel.java │ │ │ │ │ │ │ │ │ ├── ObjectTemplateMappingPanel.html │ │ │ │ │ │ │ │ │ └── ObjectTemplateMappingPanel.java │ │ │ │ │ │ │ ├── org │ │ │ │ │ │ │ │ ├── PageOrg.html │ │ │ │ │ │ │ │ ├── PageOrg.java │ │ │ │ │ │ │ │ ├── PageOrgHistory.html │ │ │ │ │ │ │ │ ├── PageOrgHistory.java │ │ │ │ │ │ │ │ └── component │ │ │ │ │ │ │ │ │ ├── AbstractTreeTablePanel.java │ │ │ │ │ │ │ │ │ ├── OrgMemberPanel.java │ │ │ │ │ │ │ │ │ ├── OrgSummaryPanel.java │ │ │ │ │ │ │ │ │ ├── SelectableFolderContent.java │ │ │ │ │ │ │ │ │ ├── TreeTablePanel.html │ │ │ │ │ │ │ │ │ └── TreeTablePanel.java │ │ │ │ │ │ │ ├── policy │ │ │ │ │ │ │ │ ├── PagePolicies.html │ │ │ │ │ │ │ │ ├── PagePolicies.java │ │ │ │ │ │ │ │ ├── PagePolicy.html │ │ │ │ │ │ │ │ ├── PagePolicy.java │ │ │ │ │ │ │ │ ├── PagePolicyHistory.html │ │ │ │ │ │ │ │ ├── PagePolicyHistory.java │ │ │ │ │ │ │ │ └── component │ │ │ │ │ │ │ │ │ └── PolicySummaryPanel.java │ │ │ │ │ │ │ ├── report │ │ │ │ │ │ │ │ ├── PageReport.html │ │ │ │ │ │ │ │ ├── PageReport.java │ │ │ │ │ │ │ │ └── component │ │ │ │ │ │ │ │ │ ├── ReportCollectionParameterPanel.html │ │ │ │ │ │ │ │ │ ├── ReportCollectionParameterPanel.java │ │ │ │ │ │ │ │ │ ├── ReportCollectionSubreportPanel.html │ │ │ │ │ │ │ │ │ ├── ReportCollectionSubreportPanel.java │ │ │ │ │ │ │ │ │ ├── ReportCollectionViewPanel.html │ │ │ │ │ │ │ │ │ ├── ReportCollectionViewPanel.java │ │ │ │ │ │ │ │ │ ├── ReportOperationalButtonsPanel.html │ │ │ │ │ │ │ │ │ └── ReportOperationalButtonsPanel.java │ │ │ │ │ │ │ ├── resource │ │ │ │ │ │ │ │ ├── PageResource.html │ │ │ │ │ │ │ │ ├── PageResource.java │ │ │ │ │ │ │ │ ├── PageShadow.html │ │ │ │ │ │ │ │ ├── PageShadow.java │ │ │ │ │ │ │ │ ├── ResourceDetailsModel.java │ │ │ │ │ │ │ │ ├── ShadowDetailsModel.java │ │ │ │ │ │ │ │ └── component │ │ │ │ │ │ │ │ │ ├── AbstractResourceObjectPanel.java │ │ │ │ │ │ │ │ │ ├── AssociationDetailsPanel.html │ │ │ │ │ │ │ │ │ ├── AssociationDetailsPanel.java │ │ │ │ │ │ │ │ │ ├── AssociationTablePanel.java │ │ │ │ │ │ │ │ │ ├── AssociationTypesPanel.java │ │ │ │ │ │ │ │ │ ├── AssociationsListView.java │ │ │ │ │ │ │ │ │ ├── CapabilitiesPanel.html │ │ │ │ │ │ │ │ │ ├── CapabilitiesPanel.java │ │ │ │ │ │ │ │ │ ├── ChoiceAssociationPopupPanel.html │ │ │ │ │ │ │ │ │ ├── ChoiceAssociationPopupPanel.java │ │ │ │ │ │ │ │ │ ├── ContainerWithLifecyclePanel.html │ │ │ │ │ │ │ │ │ ├── ContainerWithLifecyclePanel.java │ │ │ │ │ │ │ │ │ ├── NoValuePanel.html │ │ │ │ │ │ │ │ │ ├── NoValuePanel.java │ │ │ │ │ │ │ │ │ ├── NoValuePanelDto.java │ │ │ │ │ │ │ │ │ ├── ResourceAccountsPanel.java │ │ │ │ │ │ │ │ │ ├── ResourceAttributeDetailsPanel.java │ │ │ │ │ │ │ │ │ ├── ResourceConfigurationPanel.html │ │ │ │ │ │ │ │ │ ├── ResourceConfigurationPanel.java │ │ │ │ │ │ │ │ │ ├── ResourceConnectorPanel.html │ │ │ │ │ │ │ │ │ ├── ResourceConnectorPanel.java │ │ │ │ │ │ │ │ │ ├── ResourceContentPanel.html │ │ │ │ │ │ │ │ │ ├── ResourceContentPanel.java │ │ │ │ │ │ │ │ │ ├── ResourceDetailsTabPanel.html │ │ │ │ │ │ │ │ │ ├── ResourceDetailsTabPanel.java │ │ │ │ │ │ │ │ │ ├── ResourceEntitlementsPanel.java │ │ │ │ │ │ │ │ │ ├── ResourceGenericsPanel.java │ │ │ │ │ │ │ │ │ ├── ResourceObjectTypeDetailsPanel.java │ │ │ │ │ │ │ │ │ ├── ResourceObjectTypesPanel.java │ │ │ │ │ │ │ │ │ ├── ResourceObjectsPanel.html │ │ │ │ │ │ │ │ │ ├── ResourceObjectsPanel.java │ │ │ │ │ │ │ │ │ ├── ResourceSchemaPanel.html │ │ │ │ │ │ │ │ │ ├── ResourceSchemaPanel.java │ │ │ │ │ │ │ │ │ ├── ResourceTaskCreator.java │ │ │ │ │ │ │ │ │ ├── ResourceTasksPanel.html │ │ │ │ │ │ │ │ │ ├── ResourceTasksPanel.java │ │ │ │ │ │ │ │ │ ├── ResourceUncategorizedPanel.html │ │ │ │ │ │ │ │ │ ├── ResourceUncategorizedPanel.java │ │ │ │ │ │ │ │ │ ├── SchemaHandlingObjectsPanel.html │ │ │ │ │ │ │ │ │ ├── SchemaHandlingObjectsPanel.java │ │ │ │ │ │ │ │ │ ├── SchemaHandlingPanel.html │ │ │ │ │ │ │ │ │ ├── SchemaHandlingPanel.java │ │ │ │ │ │ │ │ │ ├── ShadowStatisticsDto.java │ │ │ │ │ │ │ │ │ ├── ShadowStatisticsModel.java │ │ │ │ │ │ │ │ │ ├── SmartAssociationTileModel.java │ │ │ │ │ │ │ │ │ ├── SmartAssociationTilePanel.html │ │ │ │ │ │ │ │ │ ├── SmartAssociationTilePanel.java │ │ │ │ │ │ │ │ │ ├── TaskCreationFoCategorizedObjectsPopup.java │ │ │ │ │ │ │ │ │ ├── TaskCreationForUncategorizedObjectsPopup.java │ │ │ │ │ │ │ │ │ ├── TaskCreationPopup.html │ │ │ │ │ │ │ │ │ ├── TaskCreationPopup.java │ │ │ │ │ │ │ │ │ ├── TileChoicePopup.html │ │ │ │ │ │ │ │ │ ├── TileChoicePopup.java │ │ │ │ │ │ │ │ │ └── wizard │ │ │ │ │ │ │ │ │ ├── AbstractResourceNavigationWizardBasicPanel.html │ │ │ │ │ │ │ │ │ ├── AbstractResourceNavigationWizardBasicPanel.java │ │ │ │ │ │ │ │ │ ├── AbstractResourceWizardBasicPanel.java │ │ │ │ │ │ │ │ │ ├── AbstractValueFormResourceWizardStepPanel.html │ │ │ │ │ │ │ │ │ ├── AbstractValueFormResourceWizardStepPanel.java │ │ │ │ │ │ │ │ │ ├── PreviewResourceDataWizardPanel.html │ │ │ │ │ │ │ │ │ ├── PreviewResourceDataWizardPanel.java │ │ │ │ │ │ │ │ │ ├── ResourceWizardChoicePanel.java │ │ │ │ │ │ │ │ │ ├── ResourceWizardPanel.java │ │ │ │ │ │ │ │ │ ├── SchemaHandlingWizardChoicePanel.java │ │ │ │ │ │ │ │ │ ├── basic │ │ │ │ │ │ │ │ │ ├── AbstractConfigurationStepPanel.java │ │ │ │ │ │ │ │ │ ├── BasicInformationResourceStepPanel.java │ │ │ │ │ │ │ │ │ ├── BasicResourceWizardPanel.java │ │ │ │ │ │ │ │ │ ├── ConfigurationStepPanel.java │ │ │ │ │ │ │ │ │ ├── CreateResourceChoiceTemplatePanel.java │ │ │ │ │ │ │ │ │ ├── CreateResourceTemplatePanel.html │ │ │ │ │ │ │ │ │ ├── CreateResourceTemplatePanel.java │ │ │ │ │ │ │ │ │ ├── DiscoveryStepPanel.java │ │ │ │ │ │ │ │ │ ├── ObjectClassWrapper.java │ │ │ │ │ │ │ │ │ ├── PartialConfigurationStepPanel.java │ │ │ │ │ │ │ │ │ ├── ResourceTemplate.java │ │ │ │ │ │ │ │ │ ├── SelectObjectClassesStepPanel.html │ │ │ │ │ │ │ │ │ └── SelectObjectClassesStepPanel.java │ │ │ │ │ │ │ │ │ ├── schema │ │ │ │ │ │ │ │ │ └── ResourceSchemaWizardPanel.java │ │ │ │ │ │ │ │ │ ├── schemaHandling │ │ │ │ │ │ │ │ │ ├── MappingTile.java │ │ │ │ │ │ │ │ │ ├── MappingTilePanel.html │ │ │ │ │ │ │ │ │ ├── MappingTilePanel.java │ │ │ │ │ │ │ │ │ ├── MappingUsedFor.java │ │ │ │ │ │ │ │ │ ├── MappingUtils.java │ │ │ │ │ │ │ │ │ ├── SchemaHandlingTypesTableWizardPanel.html │ │ │ │ │ │ │ │ │ ├── SchemaHandlingTypesTableWizardPanel.java │ │ │ │ │ │ │ │ │ ├── associationType │ │ │ │ │ │ │ │ │ │ ├── AssociationTypeTableWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── ResourceAssociationTypeWizardChoicePanel.java │ │ │ │ │ │ │ │ │ │ ├── ResourceAssociationTypeWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── basic │ │ │ │ │ │ │ │ │ │ │ ├── AssociationChoicePanel.html │ │ │ │ │ │ │ │ │ │ │ ├── AssociationChoicePanel.java │ │ │ │ │ │ │ │ │ │ │ ├── AssociationDataAssociationTypeStepPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── AssociationDefinitionWrapper.java │ │ │ │ │ │ │ │ │ │ │ ├── BasicSettingResourceAssociationTypeStepPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── ObjectAssociationStepPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── ParticipantAssociationStepPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── ParticipantAssociationStepPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── ParticipantObjectTypeWrapper.java │ │ │ │ │ │ │ │ │ │ │ ├── ResourceAssociationTypeBasicWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ └── SubjectAssociationStepPanel.java │ │ │ │ │ │ │ │ │ │ └── subject │ │ │ │ │ │ │ │ │ │ │ ├── AssociationSubjectWizardChoicePanel.java │ │ │ │ │ │ │ │ │ │ │ ├── ResourceAssociationTypeSubjectWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ └── mappingContainer │ │ │ │ │ │ │ │ │ │ │ ├── AbstractAssociationMappingContainerTableWizardPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── AbstractAssociationMappingContainerTableWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── MappingContainerTablePanel.html │ │ │ │ │ │ │ │ │ │ │ ├── MappingContainerTablePanel.java │ │ │ │ │ │ │ │ │ │ │ ├── inbound │ │ │ │ │ │ │ │ │ │ │ ├── AssociationInboundBasicWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── AssociationInboundEvaluatorWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── AssociationInboundMappingContainerTableWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── AssociationInboundMappingContainerWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── AssociationInboundWizardChoicePanel.java │ │ │ │ │ │ │ │ │ │ │ ├── BasicAssociationInboundStepPanel.java │ │ │ │ │ │ │ │ │ │ │ └── mapping │ │ │ │ │ │ │ │ │ │ │ │ ├── AssociationInboundAttributeMappingsTable.java │ │ │ │ │ │ │ │ │ │ │ │ ├── AssociationInboundMappingWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ │ ├── InboundMappingsTableWizardPanel.html │ │ │ │ │ │ │ │ │ │ │ │ └── InboundMappingsTableWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ └── outbound │ │ │ │ │ │ │ │ │ │ │ ├── AssociationOutboundBasicWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── AssociationOutboundEvaluatorWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── AssociationOutboundMappingContainerTableWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── AssociationOutboundMappingContainerWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── AssociationOutboundWizardChoicePanel.java │ │ │ │ │ │ │ │ │ │ │ ├── BasicAssociationOutboundStepPanel.java │ │ │ │ │ │ │ │ │ │ │ └── mapping │ │ │ │ │ │ │ │ │ │ │ ├── AssociationOutboundAttributeMappingsTable.java │ │ │ │ │ │ │ │ │ │ │ ├── AssociationOutboundMappingWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── OutboundMappingsTableWizardPanel.html │ │ │ │ │ │ │ │ │ │ │ └── OutboundMappingsTableWizardPanel.java │ │ │ │ │ │ │ │ │ └── objectType │ │ │ │ │ │ │ │ │ │ ├── AbstractSpecificMappingTileTable.html │ │ │ │ │ │ │ │ │ │ ├── AbstractSpecificMappingTileTable.java │ │ │ │ │ │ │ │ │ │ ├── AbstractSpecificMappingWizardPanel.html │ │ │ │ │ │ │ │ │ │ ├── AbstractSpecificMappingWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── PreviewResourceObjectTypeDataWizardPanel.html │ │ │ │ │ │ │ │ │ │ ├── PreviewResourceObjectTypeDataWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── ResourceObjectTypeTableWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── ResourceObjectTypeWizardChoicePanel.java │ │ │ │ │ │ │ │ │ │ ├── ResourceObjectTypeWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── activation │ │ │ │ │ │ │ │ │ │ ├── ActivationContainerProvider.java │ │ │ │ │ │ │ │ │ │ ├── ActivationMappingTileTable.java │ │ │ │ │ │ │ │ │ │ ├── ActivationMappingWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── ActivationsWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── CreateActivationMappingPopup.html │ │ │ │ │ │ │ │ │ │ ├── CreateActivationMappingPopup.java │ │ │ │ │ │ │ │ │ │ ├── CreateActivationMappingTile.java │ │ │ │ │ │ │ │ │ │ ├── CreateActivationMappingTilePanel.html │ │ │ │ │ │ │ │ │ │ ├── CreateActivationMappingTilePanel.java │ │ │ │ │ │ │ │ │ │ ├── InboundActivationMappingMainConfigurationStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── InboundActivationMappingOptionalConfigurationStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── OutboundActivationMappingMainConfigurationStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── OutboundActivationMappingOptionalConfigurationStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── PredefinedMappingStepPanel.java │ │ │ │ │ │ │ │ │ │ └── SpecificMappingProvider.java │ │ │ │ │ │ │ │ │ │ ├── associations │ │ │ │ │ │ │ │ │ │ ├── AssociationStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── AssociationsTable.java │ │ │ │ │ │ │ │ │ │ ├── AssociationsTableWizardPanel.html │ │ │ │ │ │ │ │ │ │ ├── AssociationsTableWizardPanel.java │ │ │ │ │ │ │ │ │ │ └── AssociationsWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── attribute │ │ │ │ │ │ │ │ │ │ ├── LimitationsStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── MainConfigurationStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── MappingOverrideTable.java │ │ │ │ │ │ │ │ │ │ ├── MappingOverridesTableWizardPanel.html │ │ │ │ │ │ │ │ │ │ ├── MappingOverridesTableWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── mapping │ │ │ │ │ │ │ │ │ │ │ ├── AbstractMappingsTable.java │ │ │ │ │ │ │ │ │ │ │ ├── AttributeMappingWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── AttributeMappingsTable.java │ │ │ │ │ │ │ │ │ │ │ ├── AttributeMappingsTableWizardPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── AttributeMappingsTableWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── ChangeLifecycleSelectedMappingsPopup.html │ │ │ │ │ │ │ │ │ │ │ ├── ChangeLifecycleSelectedMappingsPopup.java │ │ │ │ │ │ │ │ │ │ │ ├── ChangeMappingNamePopup.html │ │ │ │ │ │ │ │ │ │ │ ├── ChangeMappingNamePopup.java │ │ │ │ │ │ │ │ │ │ │ ├── InboundAttributeMappingsTable.java │ │ │ │ │ │ │ │ │ │ │ ├── InboundMappingMainConfigurationStepPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── InboundMappingOptionalConfigurationStepPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── OutboundAttributeMappingsTable.java │ │ │ │ │ │ │ │ │ │ │ ├── OutboundMappingMainConfigurationStepPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── OutboundMappingOptionalConfigurationStepPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── SmartMappingTable.html │ │ │ │ │ │ │ │ │ │ │ ├── SmartMappingTable.java │ │ │ │ │ │ │ │ │ │ │ ├── SmartMappingTileModel.java │ │ │ │ │ │ │ │ │ │ │ ├── SmartMappingTilePanel.html │ │ │ │ │ │ │ │ │ │ │ └── SmartMappingTilePanel.java │ │ │ │ │ │ │ │ │ │ └── volatilityMultivalue │ │ │ │ │ │ │ │ │ │ │ ├── AttributeBasicWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── AttributeLimitationWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── AttributeTypeWizardChoicePanel.java │ │ │ │ │ │ │ │ │ │ │ ├── AttributeTypeWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── AttributeVolatilityTable.java │ │ │ │ │ │ │ │ │ │ │ ├── AttributeVolatilityTableWizardPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── AttributeVolatilityTableWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── VolatilityCreationPopup.html │ │ │ │ │ │ │ │ │ │ │ └── VolatilityCreationPopup.java │ │ │ │ │ │ │ │ │ │ ├── basic │ │ │ │ │ │ │ │ │ │ ├── BasicSettingResourceObjectTypeStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── DelineationResourceObjectTypeStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── FocusResourceObjectTypeStepPanel.java │ │ │ │ │ │ │ │ │ │ └── ResourceObjectTypeBasicWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── capabilities │ │ │ │ │ │ │ │ │ │ ├── CapabilitiesWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── CapabilitiesWizardStepPanel.html │ │ │ │ │ │ │ │ │ │ └── CapabilitiesWizardStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── correlation │ │ │ │ │ │ │ │ │ │ ├── CorrelationAddMappingConfirmationPanel.html │ │ │ │ │ │ │ │ │ │ ├── CorrelationAddMappingConfirmationPanel.java │ │ │ │ │ │ │ │ │ │ ├── CorrelationExistingMappingTable.html │ │ │ │ │ │ │ │ │ │ ├── CorrelationExistingMappingTable.java │ │ │ │ │ │ │ │ │ │ ├── CorrelationItemRefsTable.java │ │ │ │ │ │ │ │ │ │ ├── CorrelationItemRulePanel.html │ │ │ │ │ │ │ │ │ │ ├── CorrelationItemRulePanel.java │ │ │ │ │ │ │ │ │ │ ├── CorrelationItemRuleWizardPanel.html │ │ │ │ │ │ │ │ │ │ ├── CorrelationItemRuleWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── CorrelationItemTypePanel.html │ │ │ │ │ │ │ │ │ │ ├── CorrelationItemTypePanel.java │ │ │ │ │ │ │ │ │ │ ├── CorrelationItemsTableWizardPanel.html │ │ │ │ │ │ │ │ │ │ ├── CorrelationItemsTableWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── CorrelationMappingFormPanel.html │ │ │ │ │ │ │ │ │ │ ├── CorrelationMappingFormPanel.java │ │ │ │ │ │ │ │ │ │ ├── CorrelationWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── SmartCorrelationTable.java │ │ │ │ │ │ │ │ │ │ ├── SmartCorrelationTileModel.java │ │ │ │ │ │ │ │ │ │ ├── SmartCorrelationTilePanel.html │ │ │ │ │ │ │ │ │ │ └── SmartCorrelationTilePanel.java │ │ │ │ │ │ │ │ │ │ ├── credentials │ │ │ │ │ │ │ │ │ │ ├── CredentialsMappingTileTable.java │ │ │ │ │ │ │ │ │ │ ├── CredentialsMappingWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── CredentialsWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── InboundCredentialsMappingMainConfigurationStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── InboundCredentialsMappingOptionalConfigurationStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── OutboundCredentialsMappingMainConfigurationStepPanel.java │ │ │ │ │ │ │ │ │ │ └── OutboundCredentialsMappingOptionalConfigurationStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── policies │ │ │ │ │ │ │ │ │ │ ├── PoliciesObjectTypeWizardChoicePanel.java │ │ │ │ │ │ │ │ │ │ ├── PoliciesObjectTypeWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── defaultOperationPolicies │ │ │ │ │ │ │ │ │ │ │ ├── DefaultOperationPoliciesTable.java │ │ │ │ │ │ │ │ │ │ │ ├── DefaultOperationPoliciesTableWizardPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── DefaultOperationPoliciesTableWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── DefaultOperationPoliciesWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── DefaultOperationPolicyStepPanel.java │ │ │ │ │ │ │ │ │ │ │ └── DefaultOperationPolicyWizardPanel.java │ │ │ │ │ │ │ │ │ │ └── marking │ │ │ │ │ │ │ │ │ │ │ ├── MarkingTable.java │ │ │ │ │ │ │ │ │ │ │ ├── MarkingTableWizardPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── MarkingTableWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── MarkingWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── PatternStepPanel.java │ │ │ │ │ │ │ │ │ │ │ └── PatternWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── smart │ │ │ │ │ │ │ │ │ │ ├── SmartIntegrationStatusInfoUtils.java │ │ │ │ │ │ │ │ │ │ ├── SmartIntegrationUtils.java │ │ │ │ │ │ │ │ │ │ ├── SmartIntegrationWrapperUtils.java │ │ │ │ │ │ │ │ │ │ ├── component │ │ │ │ │ │ │ │ │ │ │ ├── CardWithTablePanel.html │ │ │ │ │ │ │ │ │ │ │ ├── CardWithTablePanel.java │ │ │ │ │ │ │ │ │ │ │ ├── CompareContainerPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── CompareContainerPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── CompareObjectDto.java │ │ │ │ │ │ │ │ │ │ │ ├── SmartAlertGeneratingPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── SmartAlertGeneratingPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── SmartGeneratingPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── SmartGeneratingPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── SmartGeneratingVerticalPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── SmartGeneratingVerticalPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── SmartStatisticsPanel.html │ │ │ │ │ │ │ │ │ │ │ └── SmartStatisticsPanel.java │ │ │ │ │ │ │ │ │ │ ├── dto │ │ │ │ │ │ │ │ │ │ │ ├── SmartGeneratingAlertDto.java │ │ │ │ │ │ │ │ │ │ │ ├── SmartGeneratingDto.java │ │ │ │ │ │ │ │ │ │ │ └── StatusRowRecord.java │ │ │ │ │ │ │ │ │ │ ├── page │ │ │ │ │ │ │ │ │ │ │ ├── ResourceGeneratingSuggestionObjectClassWizardPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── ResourceGeneratingSuggestionObjectClassWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── ResourceObjectClassTableWizardPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── ResourceObjectClassTableWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── ResourceSuggestedObjectTypeTableWizardPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── ResourceSuggestedObjectTypeTableWizardPanel.java │ │ │ │ │ │ │ │ │ │ │ └── SmartObjectTypeSuggestionWizardPanel.java │ │ │ │ │ │ │ │ │ │ └── table │ │ │ │ │ │ │ │ │ │ │ ├── SmartObjectClassPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── SmartObjectClassPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── SmartObjectClassTable.html │ │ │ │ │ │ │ │ │ │ │ ├── SmartObjectClassTable.java │ │ │ │ │ │ │ │ │ │ │ ├── SmartObjectClassTileModel.java │ │ │ │ │ │ │ │ │ │ │ ├── SmartObjectTypeSuggestionPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── SmartObjectTypeSuggestionPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── SmartObjectTypeSuggestionTable.html │ │ │ │ │ │ │ │ │ │ │ ├── SmartObjectTypeSuggestionTable.java │ │ │ │ │ │ │ │ │ │ │ └── SmartObjectTypeSuggestionTileModel.java │ │ │ │ │ │ │ │ │ │ └── synchronization │ │ │ │ │ │ │ │ │ │ ├── ActionStepPanel.html │ │ │ │ │ │ │ │ │ │ ├── ActionStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── ReactionMainSettingStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── ReactionOptionalSettingStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── SynchronizationReactionTable.java │ │ │ │ │ │ │ │ │ │ ├── SynchronizationReactionTableWizardPanel.html │ │ │ │ │ │ │ │ │ │ ├── SynchronizationReactionTableWizardPanel.java │ │ │ │ │ │ │ │ │ │ └── SynchronizationWizardPanel.java │ │ │ │ │ │ │ │ │ └── smart │ │ │ │ │ │ │ │ │ ├── DefinedResource.java │ │ │ │ │ │ │ │ │ ├── PageSmartIntegrationDefiningType.html │ │ │ │ │ │ │ │ │ ├── PageSmartIntegrationDefiningType.java │ │ │ │ │ │ │ │ │ ├── PageSmartIntegrationDefiningTypes.html │ │ │ │ │ │ │ │ │ ├── PageSmartIntegrationDefiningTypes.java │ │ │ │ │ │ │ │ │ ├── PageSmartIntegrationStart.html │ │ │ │ │ │ │ │ │ ├── PageSmartIntegrationStart.java │ │ │ │ │ │ │ │ │ ├── PageSmartIntegrationTypesSuggestion.html │ │ │ │ │ │ │ │ │ ├── PageSmartIntegrationTypesSuggestion.java │ │ │ │ │ │ │ │ │ ├── RealResourceStatus.java │ │ │ │ │ │ │ │ │ ├── ResourceStatus.java │ │ │ │ │ │ │ │ │ └── Util.java │ │ │ │ │ │ │ ├── role │ │ │ │ │ │ │ │ ├── PageRole.html │ │ │ │ │ │ │ │ ├── PageRole.java │ │ │ │ │ │ │ │ ├── PageRoleHistory.html │ │ │ │ │ │ │ │ ├── PageRoleHistory.java │ │ │ │ │ │ │ │ ├── component │ │ │ │ │ │ │ │ │ └── wizard │ │ │ │ │ │ │ │ │ │ ├── AccessApplicationRoleStepPanel.html │ │ │ │ │ │ │ │ │ │ ├── AccessApplicationRoleStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── AccessApplicationStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── ApplicationRoleWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── BasicInformationStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── BusinessRoleWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── CandidateMembersPanel.html │ │ │ │ │ │ │ │ │ │ ├── ExsitingAccessApplicationRoleStepPanel.html │ │ │ │ │ │ │ │ │ │ ├── ExsitingAccessApplicationRoleStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── GovernanceMembersWizardPanel.html │ │ │ │ │ │ │ │ │ │ ├── GovernanceMembersWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── MembersWizardPanel.html │ │ │ │ │ │ │ │ │ │ ├── MembersWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── RoleWizardChoicePanel.java │ │ │ │ │ │ │ │ │ │ ├── construction │ │ │ │ │ │ │ │ │ │ ├── ConstructionGroupStepPanel.html │ │ │ │ │ │ │ │ │ │ ├── ConstructionGroupStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── ConstructionOutboundMainStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── ConstructionOutboundMappingsStepPanel.html │ │ │ │ │ │ │ │ │ │ ├── ConstructionOutboundMappingsStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── ConstructionOutboundOptionalStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── ConstructionResourceObjectTypeMembershipStepPanel.html │ │ │ │ │ │ │ │ │ │ ├── ConstructionResourceObjectTypeMembershipStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── ConstructionResourceObjectTypeStepPanel.html │ │ │ │ │ │ │ │ │ │ ├── ConstructionResourceObjectTypeStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── ConstructionResourceStepPanel.java │ │ │ │ │ │ │ │ │ │ └── ConstructionWizardPanel.java │ │ │ │ │ │ │ │ │ │ └── focusMapping │ │ │ │ │ │ │ │ │ │ ├── BasicFocusMappingStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── FocusMappingMappingMainStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── FocusMappingMappingOptionalStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── FocusMappingMappingsStepPanel.html │ │ │ │ │ │ │ │ │ │ ├── FocusMappingMappingsStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── FocusMappingMappingsTable.java │ │ │ │ │ │ │ │ │ │ └── FocusMappingWizardPanel.java │ │ │ │ │ │ │ │ └── mining │ │ │ │ │ │ │ │ │ ├── RoleAnalysisWebUtils.java │ │ │ │ │ │ │ │ │ ├── chart │ │ │ │ │ │ │ │ │ ├── ChartType.java │ │ │ │ │ │ │ │ │ ├── RoleAnalysisAggregateChartModel.java │ │ │ │ │ │ │ │ │ ├── RoleAnalysisAttributeChartModel.java │ │ │ │ │ │ │ │ │ ├── RoleAnalysisAttributeResultChartModel.java │ │ │ │ │ │ │ │ │ ├── RoleAnalysisStackedAttributeChartModel.java │ │ │ │ │ │ │ │ │ └── options │ │ │ │ │ │ │ │ │ │ ├── ChartDataRm.java │ │ │ │ │ │ │ │ │ │ ├── ChartTicks.java │ │ │ │ │ │ │ │ │ │ └── UniqueChartScaleAxisOption.java │ │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ ├── LegendPanel.html │ │ │ │ │ │ │ │ │ ├── LegendPanel.java │ │ │ │ │ │ │ │ │ ├── ProgressBarForm.html │ │ │ │ │ │ │ │ │ ├── ProgressBarForm.java │ │ │ │ │ │ │ │ │ ├── RangeSimplePanel.html │ │ │ │ │ │ │ │ │ ├── RangeSimplePanel.java │ │ │ │ │ │ │ │ │ ├── RangeSliderPanel.html │ │ │ │ │ │ │ │ │ ├── RangeSliderPanel.java │ │ │ │ │ │ │ │ │ ├── RangeSliderPanelSimpleModel.html │ │ │ │ │ │ │ │ │ ├── RangeSliderPanelSimpleModel.java │ │ │ │ │ │ │ │ │ ├── RepeatingAttributeForm.html │ │ │ │ │ │ │ │ │ ├── RepeatingAttributeForm.java │ │ │ │ │ │ │ │ │ ├── RepeatingAttributeProgressForm.html │ │ │ │ │ │ │ │ │ ├── RepeatingAttributeProgressForm.java │ │ │ │ │ │ │ │ │ └── bar │ │ │ │ │ │ │ │ │ │ ├── AbstractRoleAnalysisProgressBar.java │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisAttributeProgressBar.html │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisAttributeProgressBar.java │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisBasicProgressBar.html │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisBasicProgressBar.java │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisInlineProgressBar.html │ │ │ │ │ │ │ │ │ │ └── RoleAnalysisInlineProgressBar.java │ │ │ │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ │ │ ├── BusinessRoleApplicationDto.java │ │ │ │ │ │ │ │ │ ├── RangeDto.java │ │ │ │ │ │ │ │ │ ├── RoleAnalysisAttributeProgressBarDto.java │ │ │ │ │ │ │ │ │ ├── RoleAnalysisModel.java │ │ │ │ │ │ │ │ │ ├── RoleAnalysisProgressBarDto.java │ │ │ │ │ │ │ │ │ └── RoleAnalysisSimpleModel.java │ │ │ │ │ │ │ │ │ ├── page │ │ │ │ │ │ │ │ │ ├── component │ │ │ │ │ │ │ │ │ │ ├── ModalFooterPanel.html │ │ │ │ │ │ │ │ │ │ ├── ModalFooterPanel.java │ │ │ │ │ │ │ │ │ │ ├── NumberFormatSelectorPanel.html │ │ │ │ │ │ │ │ │ │ └── NumberFormatSelectorPanel.java │ │ │ │ │ │ │ │ │ ├── page │ │ │ │ │ │ │ │ │ │ ├── AnalysisInfoWidgetDto.java │ │ │ │ │ │ │ │ │ │ ├── FormSessionOptionPanel.html │ │ │ │ │ │ │ │ │ │ ├── FormSessionOptionPanel.java │ │ │ │ │ │ │ │ │ │ ├── PageRoleAnalysis.html │ │ │ │ │ │ │ │ │ │ ├── PageRoleAnalysis.java │ │ │ │ │ │ │ │ │ │ ├── PageRoleAnalysisCluster.java │ │ │ │ │ │ │ │ │ │ ├── PageRoleAnalysisOutlier.java │ │ │ │ │ │ │ │ │ │ ├── PageRoleAnalysisSession.html │ │ │ │ │ │ │ │ │ │ ├── PageRoleAnalysisSession.java │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisContainerPanel.html │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisContainerPanel.java │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisReconfigureClusterPopupPanel.html │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisReconfigureClusterPopupPanel.java │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisReconfigureSessionPopupPanel.html │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisReconfigureSessionPopupPanel.java │ │ │ │ │ │ │ │ │ │ ├── mining │ │ │ │ │ │ │ │ │ │ │ ├── PageRoleSuggestions.html │ │ │ │ │ │ │ │ │ │ │ └── PageRoleSuggestions.java │ │ │ │ │ │ │ │ │ │ └── outlier │ │ │ │ │ │ │ │ │ │ │ ├── OutlierPartitionPage.html │ │ │ │ │ │ │ │ │ │ │ ├── OutlierPartitionPage.java │ │ │ │ │ │ │ │ │ │ │ ├── PageOutliers.html │ │ │ │ │ │ │ │ │ │ │ ├── PageOutliers.java │ │ │ │ │ │ │ │ │ │ │ └── panel │ │ │ │ │ │ │ │ │ │ │ ├── OutlierAccessItemPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── OutlierAnomaliesItemPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── OutlierAnomaliesItemPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── OutlierAttributeItemPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── OutlierAttributeItemPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── OutlierClusterItemPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── OutlierClusterItemPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── OutlierPatternItemPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── OutlierPatternItemPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── PartitionOverviewItemPanel.html │ │ │ │ │ │ │ │ │ │ │ └── PartitionOverviewItemPanel.java │ │ │ │ │ │ │ │ │ ├── panel │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisAspectsWebUtils.java │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisBasicPanel.html │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisBasicPanel.java │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisClusterContainerPanel.html │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisClusterContainerPanel.java │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisSessionContainerPanel.html │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisSessionContainerPanel.java │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisSessionSettingPanel.html │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisSessionSettingPanel.java │ │ │ │ │ │ │ │ │ │ ├── chart │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisAttributeResultChartPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisAttributeResultChartPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisChartPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisChartPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisChartSettingPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisInfoAccessPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisInfoAccessPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisInfoPanel.html │ │ │ │ │ │ │ │ │ │ │ └── RoleAnalysisInfoPanel.java │ │ │ │ │ │ │ │ │ │ ├── cluster │ │ │ │ │ │ │ │ │ │ │ ├── CandidateRolesPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── CandidateRolesPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── MembersDetailsPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── MembersDetailsPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── MembersDetailsPopupPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── MembersDetailsPopupPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── MigratedRolesPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── MigratedRolesPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── NumberFormatSelectorPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── NumberFormatSelectorPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisClusterAction.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisClusterAction.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisClusterOperationButtonPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisClusterOperationPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisClusterOperationPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisClusterOptionsPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisClusterOptionsPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisClusterSummaryPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisObjectDetailsTablePopupPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisObjectDetailsTablePopupPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisSessionDiscoveredOutlierPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisSessionDiscoveredOutlierPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── aspects │ │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisClusterAnalysisAspectsPanel.html │ │ │ │ │ │ │ │ │ │ │ │ └── RoleAnalysisClusterAnalysisAspectsPanel.java │ │ │ │ │ │ │ │ │ │ │ └── pattern │ │ │ │ │ │ │ │ │ │ │ │ ├── ClusterRoleSuggestionsPanel.html │ │ │ │ │ │ │ │ │ │ │ │ ├── ClusterRoleSuggestionsPanel.java │ │ │ │ │ │ │ │ │ │ │ │ ├── SessionRoleSuggestionsPanel.html │ │ │ │ │ │ │ │ │ │ │ │ └── SessionRoleSuggestionsPanel.java │ │ │ │ │ │ │ │ │ │ ├── experimental │ │ │ │ │ │ │ │ │ │ │ ├── ProgressStatus.html │ │ │ │ │ │ │ │ │ │ │ ├── ProgressStatus.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisTableSettingPanel.html │ │ │ │ │ │ │ │ │ │ │ └── RoleAnalysisTableSettingPanel.java │ │ │ │ │ │ │ │ │ │ ├── outlier │ │ │ │ │ │ │ │ │ │ │ ├── MetricValuePanel.html │ │ │ │ │ │ │ │ │ │ │ ├── MetricValuePanel.java │ │ │ │ │ │ │ │ │ │ │ ├── OutlierHeaderResultPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── OutlierHeaderResultPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── OutlierItemModel.java │ │ │ │ │ │ │ │ │ │ │ ├── OutlierItemResultPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── OutlierItemResultPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── OutlierResultPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── OutlierResultPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── PanelPopupPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── PanelPopupPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisAccessTabPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisAccessTabPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisExplanationTabPanelPopup.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisExplanationTabPanelPopup.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisHeaderWithWidgetsPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisHeaderWithWidgetsPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisOutlierAdvancedPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisOutlierOperationButtonPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisOutlierSettings.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisOutlierSettings.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisOutlierSummaryPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisPartitionOverviewPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisPartitionOverviewPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisPartitionUserPermissionTablePopup.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisPartitionUserPermissionTablePopup.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisSinglePartitionAnomalyResultTabPopup.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisSinglePartitionAnomalyResultTabPopup.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisWidgetsPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisWidgetsPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── WidgetItemModel.java │ │ │ │ │ │ │ │ │ │ │ ├── aspects │ │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisOutlierAnalysisAspectsPanel.html │ │ │ │ │ │ │ │ │ │ │ │ └── RoleAnalysisOutlierAnalysisAspectsPanel.java │ │ │ │ │ │ │ │ │ │ │ └── panel │ │ │ │ │ │ │ │ │ │ │ │ ├── OutlierAccessDistributionPanel.html │ │ │ │ │ │ │ │ │ │ │ │ ├── OutlierAccessDistributionPanel.java │ │ │ │ │ │ │ │ │ │ │ │ ├── OutlierPartitionPanel.html │ │ │ │ │ │ │ │ │ │ │ │ ├── OutlierPartitionPanel.java │ │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisOutlierAnomalyPanel.html │ │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisOutlierAnomalyPanel.java │ │ │ │ │ │ │ │ │ │ │ │ ├── categorization │ │ │ │ │ │ │ │ │ │ │ │ ├── CategorizationValueModel.java │ │ │ │ │ │ │ │ │ │ │ │ ├── CategorySelectionProvider.java │ │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisAbstractClassificationObjectPanel.java │ │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisObjectCategoryPanel.html │ │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisObjectCategoryPanel.java │ │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisUnclassifiedObjectPanel.html │ │ │ │ │ │ │ │ │ │ │ │ └── RoleAnalysisUnclassifiedObjectPanel.java │ │ │ │ │ │ │ │ │ │ │ │ └── suggestion │ │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisOutlierListPanel.html │ │ │ │ │ │ │ │ │ │ │ │ └── RoleAnalysisOutlierListPanel.java │ │ │ │ │ │ │ │ │ │ ├── session │ │ │ │ │ │ │ │ │ │ │ ├── AnalysisAttributeSelectorPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── AnalysisAttributeSelectorPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── ClusteringAttributeSelectorPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── ClusteringAttributeSelectorPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── ImageDetailsPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── ImageDetailsPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisRoleSessionOptions.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisRoleSessionOptions.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisSessionOperationButtonPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisSessionSummaryPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisUserSessionOptions.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisUserSessionOptions.java │ │ │ │ │ │ │ │ │ │ │ ├── aspects │ │ │ │ │ │ │ │ │ │ │ │ ├── OutlierSessionOverviewPanel.html │ │ │ │ │ │ │ │ │ │ │ │ ├── OutlierSessionOverviewPanel.java │ │ │ │ │ │ │ │ │ │ │ │ ├── RoleMiningSessionOverviewPanel.html │ │ │ │ │ │ │ │ │ │ │ │ └── RoleMiningSessionOverviewPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── clusters │ │ │ │ │ │ │ │ │ │ │ │ ├── OutlierDetectionClusteringResultPanel.html │ │ │ │ │ │ │ │ │ │ │ │ ├── OutlierDetectionClusteringResultPanel.java │ │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisAbstractClusteringResultPanel.java │ │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisAdvancedPanel.java │ │ │ │ │ │ │ │ │ │ │ │ ├── RoleMiningClusteringResultPanel.html │ │ │ │ │ │ │ │ │ │ │ │ └── RoleMiningClusteringResultPanel.java │ │ │ │ │ │ │ │ │ │ │ └── provider │ │ │ │ │ │ │ │ │ │ │ │ ├── AbstractAttributeSelectionProvider.java │ │ │ │ │ │ │ │ │ │ │ │ ├── AnalysisAttributeSelectionProvider.java │ │ │ │ │ │ │ │ │ │ │ │ ├── ClusterSelectableBeanObjectDataProvider.java │ │ │ │ │ │ │ │ │ │ │ │ ├── ClusteringAttributeSelectionProvider.java │ │ │ │ │ │ │ │ │ │ │ │ └── SingleValueAttributeSelectionProvider.java │ │ │ │ │ │ │ │ │ │ └── widgets │ │ │ │ │ │ │ │ │ │ │ ├── component │ │ │ │ │ │ │ │ │ │ │ ├── DonuthChartOptions.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisDonutChartUtils.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisIdentifyWidgetPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisIdentifyWidgetPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── WidgetRmChartComponent.html │ │ │ │ │ │ │ │ │ │ │ └── WidgetRmChartComponent.java │ │ │ │ │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ │ │ │ │ └── IdentifyWidgetItem.java │ │ │ │ │ │ │ │ │ ├── tmp │ │ │ │ │ │ │ │ │ │ ├── context │ │ │ │ │ │ │ │ │ │ │ ├── AbstractRoleAnalysisConfiguration.java │ │ │ │ │ │ │ │ │ │ │ ├── AnalysisCategoryMode.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisConfigurator.java │ │ │ │ │ │ │ │ │ │ │ └── RoleAnalysisProcedureMode.java │ │ │ │ │ │ │ │ │ │ ├── model │ │ │ │ │ │ │ │ │ │ │ ├── InfoBoxModel.java │ │ │ │ │ │ │ │ │ │ │ └── OperationPanelModel.java │ │ │ │ │ │ │ │ │ │ ├── modes │ │ │ │ │ │ │ │ │ │ │ ├── AdvancedModeConfiguration.java │ │ │ │ │ │ │ │ │ │ │ ├── AttributeBasedModeConfiguration.java │ │ │ │ │ │ │ │ │ │ │ ├── BalancedCoverageModeConfiguration.java │ │ │ │ │ │ │ │ │ │ │ ├── BirthrightCoverageModeConfiguration.java │ │ │ │ │ │ │ │ │ │ │ ├── DepartmentModeConfiguration.java │ │ │ │ │ │ │ │ │ │ │ ├── ExactSimilarityModeConfiguration.java │ │ │ │ │ │ │ │ │ │ │ ├── OutlierDepartmentModeConfiguration.java │ │ │ │ │ │ │ │ │ │ │ └── OutlierModeConfiguration.java │ │ │ │ │ │ │ │ │ │ └── panel │ │ │ │ │ │ │ │ │ │ │ ├── IconAjaxButtonBadge.html │ │ │ │ │ │ │ │ │ │ │ ├── IconAjaxButtonBadge.java │ │ │ │ │ │ │ │ │ │ │ ├── IconWithLabel.html │ │ │ │ │ │ │ │ │ │ │ ├── IconWithLabel.java │ │ │ │ │ │ │ │ │ │ │ ├── LinkIconLabelIconPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── LinkIconLabelIconPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisAttributeAnalysisDto.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisAttributePanel.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisAttributePanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisAttributesDto.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisClusterOccupationPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisClusterOccupationPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisDetectedPatternDetails.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisDetectedPatternDetails.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisDetectedPatternDetailsPopup.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisDetectedPatternDetailsPopup.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisInfoBox.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisInfoBox.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisTableOpPanelItem.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisTableOpPanelItem.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisTableOpPanelItemPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisTableOpPanelItemPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisTableOpPanelPatternItem.html │ │ │ │ │ │ │ │ │ │ │ └── RoleAnalysisTableOpPanelPatternItem.java │ │ │ │ │ │ │ │ │ └── wizard │ │ │ │ │ │ │ │ │ │ ├── BasicSessionInformationStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── ClusteringRoleAnalysisSessionOptionWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── FilteringRoleAnalysisSessionOptionWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisSessionDetectionOptionsWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisSessionMaintenanceWizardPanel.html │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisSessionMaintenanceWizardPanel.java │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisSessionWizardPanel.java │ │ │ │ │ │ │ │ │ │ └── mode │ │ │ │ │ │ │ │ │ │ ├── AnalysisCategoryChoiceStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── ProcessModeChoiceStepPanel.java │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisSessionBasicRoleModeWizardPanel.html │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisSessionBasicRoleModeWizardPanel.java │ │ │ │ │ │ │ │ │ │ └── RoleAnalysisTypeChoiceStepPanel.java │ │ │ │ │ │ │ │ │ ├── tables │ │ │ │ │ │ │ │ │ ├── RoleAnalysisClusteringAttributeTable.html │ │ │ │ │ │ │ │ │ ├── RoleAnalysisClusteringAttributeTable.java │ │ │ │ │ │ │ │ │ ├── operation │ │ │ │ │ │ │ │ │ │ ├── DetailedPatternSelectionPanel.html │ │ │ │ │ │ │ │ │ │ ├── DetailedPatternSelectionPanel.java │ │ │ │ │ │ │ │ │ │ └── PatternStatistics.java │ │ │ │ │ │ │ │ │ ├── outlier │ │ │ │ │ │ │ │ │ │ └── panel │ │ │ │ │ │ │ │ │ │ │ ├── AccessDistributionDto.java │ │ │ │ │ │ │ │ │ │ │ ├── AnomalyObjectDto.java │ │ │ │ │ │ │ │ │ │ │ ├── PartitionObjectDto.java │ │ │ │ │ │ │ │ │ │ │ ├── PartitionObjectDtos.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisAccessDistributionPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisAccessDistributionPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisDetectedAnomalyTable.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisDetectedAnomalyTable.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisDistributionProgressPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisDistributionProgressPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisOutlierDashboardPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisOutlierDashboardPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisOutlierTable.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisOutlierTable.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisValueLabelPanel.html │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisValueLabelPanel.java │ │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisViewAllPanel.html │ │ │ │ │ │ │ │ │ │ │ └── RoleAnalysisViewAllPanel.java │ │ │ │ │ │ │ │ │ └── tile │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisTileTableUtils.java │ │ │ │ │ │ │ │ │ │ ├── component │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisCandidateRoleTileTable.html │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisCandidateRoleTileTable.java │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisDetectedPatternTileTable.html │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisDetectedPatternTileTable.java │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisMigrationRoleTileTable.html │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisMigrationRoleTileTable.java │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisOutlierPartitionTileTable.html │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisOutlierPartitionTileTable.java │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisSessionTileTable.html │ │ │ │ │ │ │ │ │ │ └── RoleAnalysisSessionTileTable.java │ │ │ │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisCandidateRolesDto.java │ │ │ │ │ │ │ │ │ │ ├── RoleAnalysisDetectedPatternsDto.java │ │ │ │ │ │ │ │ │ │ └── RoleAnalysisMigratedRolesDto.java │ │ │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ │ ├── RoleAnalysisSettingsUtil.java │ │ │ │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ │ │ └── CustomImageResource.java │ │ │ │ │ │ │ │ │ ├── object │ │ │ │ │ │ │ │ │ └── RoleAnalysisObjectUtils.java │ │ │ │ │ │ │ │ │ └── table │ │ │ │ │ │ │ │ │ ├── RoleAnalysisTableCellFillResolver.java │ │ │ │ │ │ │ │ │ └── RoleAnalysisTableTools.java │ │ │ │ │ │ │ ├── schema │ │ │ │ │ │ │ │ ├── PageSchema.java │ │ │ │ │ │ │ │ ├── PageSchemas.html │ │ │ │ │ │ │ │ ├── PageSchemas.java │ │ │ │ │ │ │ │ └── component │ │ │ │ │ │ │ │ │ ├── BasicDefinitionPanel.java │ │ │ │ │ │ │ │ │ ├── BasicEnumValuePanel.java │ │ │ │ │ │ │ │ │ ├── BasicPrimItemDefinitionPanel.java │ │ │ │ │ │ │ │ │ ├── ComplexTypeDefinitionPanel.html │ │ │ │ │ │ │ │ │ ├── ComplexTypeDefinitionPanel.java │ │ │ │ │ │ │ │ │ ├── CreateSchemaItemPopupPanel.html │ │ │ │ │ │ │ │ │ ├── CreateSchemaItemPopupPanel.java │ │ │ │ │ │ │ │ │ ├── EnumerationValueDefinitionsTable.java │ │ │ │ │ │ │ │ │ ├── PrismItemDefinitionsTable.java │ │ │ │ │ │ │ │ │ ├── SchemaDefinitionCounter.java │ │ │ │ │ │ │ │ │ └── wizard │ │ │ │ │ │ │ │ │ ├── CreateComplexOrEnumerationChoicePanel.java │ │ │ │ │ │ │ │ │ ├── CreateComplexOrEnumerationWizardPanel.java │ │ │ │ │ │ │ │ │ ├── basic │ │ │ │ │ │ │ │ │ ├── AbstractConfigurationStepPanel.java │ │ │ │ │ │ │ │ │ ├── BasicInformationStepPanel.java │ │ │ │ │ │ │ │ │ ├── ChoseSchemaPanel.html │ │ │ │ │ │ │ │ │ ├── ChoseSchemaPanel.java │ │ │ │ │ │ │ │ │ ├── CreateSchemaChoicePanel.java │ │ │ │ │ │ │ │ │ └── SchemaWizardPanel.java │ │ │ │ │ │ │ │ │ ├── complextype │ │ │ │ │ │ │ │ │ ├── BasicSettingComplexTypeStepPanel.java │ │ │ │ │ │ │ │ │ ├── PrismItemDefinitionsTableWizardPanel.html │ │ │ │ │ │ │ │ │ └── PrismItemDefinitionsTableWizardPanel.java │ │ │ │ │ │ │ │ │ └── enumerationtype │ │ │ │ │ │ │ │ │ ├── BasicSettingEnumerationTypeStepPanel.java │ │ │ │ │ │ │ │ │ ├── EnumValueDefinitionsTableWizardPanel.html │ │ │ │ │ │ │ │ │ └── EnumValueDefinitionsTableWizardPanel.java │ │ │ │ │ │ │ ├── service │ │ │ │ │ │ │ │ ├── PageService.html │ │ │ │ │ │ │ │ ├── PageService.java │ │ │ │ │ │ │ │ ├── PageServiceHistory.html │ │ │ │ │ │ │ │ └── PageServiceHistory.java │ │ │ │ │ │ │ ├── shadow │ │ │ │ │ │ │ │ ├── AbstractShadowPanel.java │ │ │ │ │ │ │ │ ├── ResourceAssociationPanel.java │ │ │ │ │ │ │ │ ├── ResourceAttributeDefinitionHeaderPanel.html │ │ │ │ │ │ │ │ ├── ResourceAttributeDefinitionHeaderPanel.java │ │ │ │ │ │ │ │ ├── ResourceAttributeDefinitionPanel.java │ │ │ │ │ │ │ │ ├── ResourceAttributePanel.java │ │ │ │ │ │ │ │ ├── ShadowAssociationMenuPanel.html │ │ │ │ │ │ │ │ ├── ShadowAssociationMenuPanel.java │ │ │ │ │ │ │ │ ├── ShadowAssociationObjectsColumn.java │ │ │ │ │ │ │ │ ├── ShadowAssociationValuePanel.html │ │ │ │ │ │ │ │ ├── ShadowAssociationValuePanel.java │ │ │ │ │ │ │ │ ├── ShadowAssociationsPanel.html │ │ │ │ │ │ │ │ ├── ShadowAssociationsPanel.java │ │ │ │ │ │ │ │ ├── ShadowAssociationsTable.java │ │ │ │ │ │ │ │ ├── ShadowBasicPanel.html │ │ │ │ │ │ │ │ ├── ShadowBasicPanel.java │ │ │ │ │ │ │ │ ├── ShadowDetailsPanel.html │ │ │ │ │ │ │ │ ├── ShadowDetailsPanel.java │ │ │ │ │ │ │ │ ├── ShadowMarkPanel.html │ │ │ │ │ │ │ │ └── ShadowMarkPanel.java │ │ │ │ │ │ │ ├── simulation │ │ │ │ │ │ │ │ ├── CombinedRelatedObjectsProvider.java │ │ │ │ │ │ │ │ ├── DetailsTableItem.java │ │ │ │ │ │ │ │ ├── DetailsTablePanel.html │ │ │ │ │ │ │ │ ├── DetailsTablePanel.java │ │ │ │ │ │ │ │ ├── ProcessedObjectsCountColumn.java │ │ │ │ │ │ │ │ ├── ProcessedObjectsPanel.java │ │ │ │ │ │ │ │ ├── ProcessedObjectsProvider.java │ │ │ │ │ │ │ │ ├── RelatedObjectsProvider.java │ │ │ │ │ │ │ │ ├── SimpleContainerPanel.html │ │ │ │ │ │ │ │ ├── SimpleContainerPanel.java │ │ │ │ │ │ │ │ ├── SimulationPage.java │ │ │ │ │ │ │ │ ├── SimulationsGuiUtil.java │ │ │ │ │ │ │ │ ├── TitleWithMarks.html │ │ │ │ │ │ │ │ ├── TitleWithMarks.java │ │ │ │ │ │ │ │ ├── component │ │ │ │ │ │ │ │ │ ├── SimulationActionTaskButton.html │ │ │ │ │ │ │ │ │ └── SimulationActionTaskButton.java │ │ │ │ │ │ │ │ ├── page │ │ │ │ │ │ │ │ │ ├── PageSimulationResult.html │ │ │ │ │ │ │ │ │ ├── PageSimulationResult.java │ │ │ │ │ │ │ │ │ ├── PageSimulationResultObject.html │ │ │ │ │ │ │ │ │ ├── PageSimulationResultObject.java │ │ │ │ │ │ │ │ │ ├── PageSimulationResultObjects.html │ │ │ │ │ │ │ │ │ ├── PageSimulationResultObjects.java │ │ │ │ │ │ │ │ │ ├── PageSimulationResults.html │ │ │ │ │ │ │ │ │ └── PageSimulationResults.java │ │ │ │ │ │ │ │ ├── panel │ │ │ │ │ │ │ │ │ ├── SimulationResultObjectPanel.html │ │ │ │ │ │ │ │ │ ├── SimulationResultObjectPanel.java │ │ │ │ │ │ │ │ │ ├── SimulationResultObjectsPanel.html │ │ │ │ │ │ │ │ │ ├── SimulationResultObjectsPanel.java │ │ │ │ │ │ │ │ │ ├── SimulationResultPanel.html │ │ │ │ │ │ │ │ │ ├── SimulationResultPanel.java │ │ │ │ │ │ │ │ │ ├── SimulationResultsPanel.java │ │ │ │ │ │ │ │ │ └── correaltion │ │ │ │ │ │ │ │ │ │ ├── CorrelationCandidatePanel.html │ │ │ │ │ │ │ │ │ │ ├── CorrelationCandidatePanel.java │ │ │ │ │ │ │ │ │ │ ├── CorrelationProcessedObjectPanel.java │ │ │ │ │ │ │ │ │ │ ├── SimulationCorrelationPanel.html │ │ │ │ │ │ │ │ │ │ └── SimulationCorrelationPanel.java │ │ │ │ │ │ │ │ ├── todo │ │ │ │ │ │ │ │ │ ├── MyNodeBorder.java │ │ │ │ │ │ │ │ │ ├── MyTableTree.java │ │ │ │ │ │ │ │ │ ├── MyTreeColumn.java │ │ │ │ │ │ │ │ │ ├── MyTreeColumnPanel.html │ │ │ │ │ │ │ │ │ ├── MyTreeColumnPanel.java │ │ │ │ │ │ │ │ │ ├── RichTreeColumnPanel.html │ │ │ │ │ │ │ │ │ └── RichTreeColumnPanel.java │ │ │ │ │ │ │ │ ├── util │ │ │ │ │ │ │ │ │ ├── CorrelationUtil.java │ │ │ │ │ │ │ │ │ └── SimulationWebUtil.java │ │ │ │ │ │ │ │ ├── visualization │ │ │ │ │ │ │ │ │ ├── CardOutlineLeftPanel.html │ │ │ │ │ │ │ │ │ └── CardOutlineLeftPanel.java │ │ │ │ │ │ │ │ ├── widget │ │ │ │ │ │ │ │ │ ├── MetricWidgetPanel.html │ │ │ │ │ │ │ │ │ ├── MetricWidgetPanel.java │ │ │ │ │ │ │ │ │ └── WidgetPanel.java │ │ │ │ │ │ │ │ └── wizard │ │ │ │ │ │ │ │ │ ├── ResourceCorrelationSimulationResultWizardPanel.html │ │ │ │ │ │ │ │ │ ├── ResourceCorrelationSimulationResultWizardPanel.java │ │ │ │ │ │ │ │ │ ├── ResourceSimulationResultObjectWizardPanel.html │ │ │ │ │ │ │ │ │ ├── ResourceSimulationResultObjectWizardPanel.java │ │ │ │ │ │ │ │ │ ├── ResourceSimulationResultObjectsWizardPanel.html │ │ │ │ │ │ │ │ │ ├── ResourceSimulationResultObjectsWizardPanel.java │ │ │ │ │ │ │ │ │ ├── ResourceSimulationResultWizardPanel.html │ │ │ │ │ │ │ │ │ ├── ResourceSimulationResultWizardPanel.java │ │ │ │ │ │ │ │ │ ├── ResourceSimulationTaskWizardPanel.html │ │ │ │ │ │ │ │ │ ├── ResourceSimulationTaskWizardPanel.java │ │ │ │ │ │ │ │ │ └── SimulationWizardPanel.java │ │ │ │ │ │ │ ├── systemconfiguration │ │ │ │ │ │ │ │ ├── PageSystemConfiguration.html │ │ │ │ │ │ │ │ ├── PageSystemConfiguration.java │ │ │ │ │ │ │ │ ├── component │ │ │ │ │ │ │ │ │ ├── admingui │ │ │ │ │ │ │ │ │ │ ├── AdditionalMenuLinkContentPanel.java │ │ │ │ │ │ │ │ │ │ ├── AdditionalMenuLinkCounter.java │ │ │ │ │ │ │ │ │ │ ├── ConfigurableUserDashboardContentPanel.java │ │ │ │ │ │ │ │ │ │ ├── ConfigurableUserDashboardCounter.java │ │ │ │ │ │ │ │ │ │ ├── ConfigurableUserDashboardDetailsPanel.java │ │ │ │ │ │ │ │ │ │ ├── GuiObjectDetailsContentPanel.java │ │ │ │ │ │ │ │ │ │ ├── GuiObjectDetailsCounter.java │ │ │ │ │ │ │ │ │ │ ├── GuiObjectDetailsPanel.java │ │ │ │ │ │ │ │ │ │ ├── ObjectCollectionViewsContentPanel.java │ │ │ │ │ │ │ │ │ │ ├── ObjectCollectionViewsCounter.java │ │ │ │ │ │ │ │ │ │ ├── ObjectCollectionViewsDetailsPanel.java │ │ │ │ │ │ │ │ │ │ ├── RichHyperlinkDetailsPanel.java │ │ │ │ │ │ │ │ │ │ ├── RichHyperlinkListContentPanel.java │ │ │ │ │ │ │ │ │ │ ├── UserDashboardLinkContentPanel.java │ │ │ │ │ │ │ │ │ │ └── UserDashboardLinkCounter.java │ │ │ │ │ │ │ │ │ ├── logging │ │ │ │ │ │ │ │ │ │ ├── AppenderDetailsPanel.java │ │ │ │ │ │ │ │ │ │ ├── AppendersContentPanel.java │ │ │ │ │ │ │ │ │ │ ├── AppendersMenuLinkCounter.java │ │ │ │ │ │ │ │ │ │ ├── ClassLoggersContentPanel.java │ │ │ │ │ │ │ │ │ │ ├── ClassLoggersMenuLinkCounter.java │ │ │ │ │ │ │ │ │ │ ├── LoggingContentPanel.html │ │ │ │ │ │ │ │ │ │ ├── LoggingContentPanel.java │ │ │ │ │ │ │ │ │ │ ├── SubSystemLoggerDetailsPanel.java │ │ │ │ │ │ │ │ │ │ ├── SubSystemLoggersContentPanel.java │ │ │ │ │ │ │ │ │ │ └── SubSystemLoggersMenuLinkCounter.java │ │ │ │ │ │ │ │ │ ├── notification │ │ │ │ │ │ │ │ │ │ ├── ComplexPropertyEmbeddedModel.java │ │ │ │ │ │ │ │ │ │ ├── ComplexPropertyInputPanel.java │ │ │ │ │ │ │ │ │ │ ├── CustomTransportContentPanel.java │ │ │ │ │ │ │ │ │ │ ├── CustomTransportCounter.java │ │ │ │ │ │ │ │ │ │ ├── CustomTransportDetailsPanel.java │ │ │ │ │ │ │ │ │ │ ├── DeprecatedPropertyWrapperModel.java │ │ │ │ │ │ │ │ │ │ ├── EventHandlerContentPanel.java │ │ │ │ │ │ │ │ │ │ ├── EventHandlerCounter.java │ │ │ │ │ │ │ │ │ │ ├── EventHandlerDetailsPanel.java │ │ │ │ │ │ │ │ │ │ ├── FileTransportContentPanel.java │ │ │ │ │ │ │ │ │ │ ├── FileTransportCounter.java │ │ │ │ │ │ │ │ │ │ ├── FileTransportDetailsPanel.java │ │ │ │ │ │ │ │ │ │ ├── GeneralTransportContentPanel.java │ │ │ │ │ │ │ │ │ │ ├── LegacyNotificationPanel.html │ │ │ │ │ │ │ │ │ │ ├── LegacyNotificationPanel.java │ │ │ │ │ │ │ │ │ │ ├── MailServerPanel.html │ │ │ │ │ │ │ │ │ │ ├── MailServerPanel.java │ │ │ │ │ │ │ │ │ │ ├── MailTransportContentPanel.java │ │ │ │ │ │ │ │ │ │ ├── MailTransportCounter.java │ │ │ │ │ │ │ │ │ │ ├── MailTransportDetailsPanel.java │ │ │ │ │ │ │ │ │ │ ├── SmsGatewayPanel.html │ │ │ │ │ │ │ │ │ │ ├── SmsGatewayPanel.java │ │ │ │ │ │ │ │ │ │ ├── SmsGatewayPanelFactory.java │ │ │ │ │ │ │ │ │ │ ├── SmsTransportContentPanel.java │ │ │ │ │ │ │ │ │ │ ├── SmsTransportCounter.java │ │ │ │ │ │ │ │ │ │ └── SmsTransportDetailsPanel.java │ │ │ │ │ │ │ │ │ ├── policies │ │ │ │ │ │ │ │ │ │ ├── GlobalPolicyRuleContentPanel.java │ │ │ │ │ │ │ │ │ │ ├── GlobalPolicyRuleCounter.java │ │ │ │ │ │ │ │ │ │ ├── GlobalPolicyRuleDetailsPanel.java │ │ │ │ │ │ │ │ │ │ ├── ObjectPolicyContentPanel.java │ │ │ │ │ │ │ │ │ │ ├── ObjectPolicyCounter.java │ │ │ │ │ │ │ │ │ │ └── ObjectPolicyDetailsPanel.java │ │ │ │ │ │ │ │ │ ├── profiling │ │ │ │ │ │ │ │ │ │ ├── ProfilingContentPanel.html │ │ │ │ │ │ │ │ │ │ └── ProfilingContentPanel.java │ │ │ │ │ │ │ │ │ ├── rolemanagement │ │ │ │ │ │ │ │ │ │ ├── RelationDetailsPanel.java │ │ │ │ │ │ │ │ │ │ ├── RelationsContentPanel.java │ │ │ │ │ │ │ │ │ │ ├── RelationsCounter.java │ │ │ │ │ │ │ │ │ │ ├── RelationsPanel.html │ │ │ │ │ │ │ │ │ │ └── RelationsPanel.java │ │ │ │ │ │ │ │ │ └── secretproviders │ │ │ │ │ │ │ │ │ │ ├── CustomSecretProvidersContentPanel.java │ │ │ │ │ │ │ │ │ │ ├── CustomSecretProvidersCounter.java │ │ │ │ │ │ │ │ │ │ ├── DockerSecretProviderPanel.java │ │ │ │ │ │ │ │ │ │ ├── EnvironmentVariablesSecretProvidersContentPanel.java │ │ │ │ │ │ │ │ │ │ ├── EnvironmentVariablesSecretProvidersCounter.java │ │ │ │ │ │ │ │ │ │ ├── FileSecretProvidersContentPanel.java │ │ │ │ │ │ │ │ │ │ ├── FileSecretProvidersCounter.java │ │ │ │ │ │ │ │ │ │ ├── PropertiesSecretProvidersContentPanel.java │ │ │ │ │ │ │ │ │ │ ├── PropertiesSecretProvidersCounter.java │ │ │ │ │ │ │ │ │ │ ├── SecretProviderDetailsPanel.java │ │ │ │ │ │ │ │ │ │ ├── SecretProvidersContentPanel.java │ │ │ │ │ │ │ │ │ │ └── SecretProvidersCounter.java │ │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ │ ├── PageAccessCertification.java │ │ │ │ │ │ │ │ │ ├── PageBaseSystemConfiguration.java │ │ │ │ │ │ │ │ │ ├── PageProfiling.java │ │ │ │ │ │ │ │ │ ├── PageRoleManagement.java │ │ │ │ │ │ │ │ │ ├── PageSystemAdminGui.java │ │ │ │ │ │ │ │ │ ├── PageSystemBasic.java │ │ │ │ │ │ │ │ │ ├── PageSystemInternals.java │ │ │ │ │ │ │ │ │ ├── PageSystemLogging.java │ │ │ │ │ │ │ │ │ ├── PageSystemNotification.java │ │ │ │ │ │ │ │ │ ├── PageSystemPolicies.java │ │ │ │ │ │ │ │ │ ├── PageSystemSecretsProviders.java │ │ │ │ │ │ │ │ │ └── PageSystemWorkflow.java │ │ │ │ │ │ │ ├── task │ │ │ │ │ │ │ │ ├── PageTask.java │ │ │ │ │ │ │ │ ├── TaskDetailsModel.java │ │ │ │ │ │ │ │ └── component │ │ │ │ │ │ │ │ │ ├── ActivitiesItemProcessingPanel.html │ │ │ │ │ │ │ │ │ ├── ActivitiesItemProcessingPanel.java │ │ │ │ │ │ │ │ │ ├── ActivitiesStatisticsPanel.html │ │ │ │ │ │ │ │ │ ├── ActivitiesStatisticsPanel.java │ │ │ │ │ │ │ │ │ ├── TaskActivityPanel.html │ │ │ │ │ │ │ │ │ ├── TaskActivityPanel.java │ │ │ │ │ │ │ │ │ ├── TaskBasicPanel.html │ │ │ │ │ │ │ │ │ ├── TaskBasicPanel.java │ │ │ │ │ │ │ │ │ ├── TaskControlFlowSpecificationPanel.html │ │ │ │ │ │ │ │ │ ├── TaskControlFlowSpecificationPanel.java │ │ │ │ │ │ │ │ │ ├── TaskDistributionPanel.html │ │ │ │ │ │ │ │ │ ├── TaskDistributionPanel.java │ │ │ │ │ │ │ │ │ ├── TaskEnvironmentalPerformancePanel.html │ │ │ │ │ │ │ │ │ ├── TaskEnvironmentalPerformancePanel.java │ │ │ │ │ │ │ │ │ ├── TaskErrorsPanel.html │ │ │ │ │ │ │ │ │ ├── TaskErrorsPanel.java │ │ │ │ │ │ │ │ │ ├── TaskExecutionPanel.html │ │ │ │ │ │ │ │ │ ├── TaskExecutionPanel.java │ │ │ │ │ │ │ │ │ ├── TaskInternalPerformancePanel.html │ │ │ │ │ │ │ │ │ ├── TaskInternalPerformancePanel.java │ │ │ │ │ │ │ │ │ ├── TaskOperationPanel.html │ │ │ │ │ │ │ │ │ ├── TaskOperationPanel.java │ │ │ │ │ │ │ │ │ ├── TaskPerformancePanel.html │ │ │ │ │ │ │ │ │ ├── TaskPerformancePanel.java │ │ │ │ │ │ │ │ │ ├── TaskReportingPanel.html │ │ │ │ │ │ │ │ │ ├── TaskReportingPanel.java │ │ │ │ │ │ │ │ │ ├── TaskResultPanel.html │ │ │ │ │ │ │ │ │ ├── TaskResultPanel.java │ │ │ │ │ │ │ │ │ ├── TaskSchedulePanel.html │ │ │ │ │ │ │ │ │ ├── TaskSchedulePanel.java │ │ │ │ │ │ │ │ │ ├── TaskSubtasksAndThreadsPanel.html │ │ │ │ │ │ │ │ │ ├── TaskSubtasksAndThreadsPanel.java │ │ │ │ │ │ │ │ │ ├── TaskTailoringPanel.html │ │ │ │ │ │ │ │ │ ├── TaskTailoringPanel.java │ │ │ │ │ │ │ │ │ ├── TaskWizardPanel.java │ │ │ │ │ │ │ │ │ ├── TaskWorkPanel.html │ │ │ │ │ │ │ │ │ ├── TaskWorkPanel.java │ │ │ │ │ │ │ │ │ └── wizard │ │ │ │ │ │ │ │ │ ├── TaskBasicWizardPanel.java │ │ │ │ │ │ │ │ │ ├── TaskDistributionWizardPanel.java │ │ │ │ │ │ │ │ │ ├── TaskExecutionWizardPanel.java │ │ │ │ │ │ │ │ │ ├── TaskResourceObjectsWizardPanel.java │ │ │ │ │ │ │ │ │ └── TaskScheduleWizardPanel.java │ │ │ │ │ │ │ └── user │ │ │ │ │ │ │ │ ├── PageUser.html │ │ │ │ │ │ │ │ ├── PageUser.java │ │ │ │ │ │ │ │ ├── PageUserHistory.html │ │ │ │ │ │ │ │ ├── PageUserHistory.java │ │ │ │ │ │ │ │ ├── UserDetailsModel.java │ │ │ │ │ │ │ │ └── component │ │ │ │ │ │ │ │ ├── AllAccessListPanel.html │ │ │ │ │ │ │ │ ├── AllAccessListPanel.java │ │ │ │ │ │ │ │ ├── DelegatedToMePanel.html │ │ │ │ │ │ │ │ ├── DelegatedToMePanel.java │ │ │ │ │ │ │ │ ├── UserDelegationsPanel.html │ │ │ │ │ │ │ │ ├── UserDelegationsPanel.java │ │ │ │ │ │ │ │ ├── UserPersonasPanel.html │ │ │ │ │ │ │ │ └── UserPersonasPanel.java │ │ │ │ │ │ ├── forgotpassword │ │ │ │ │ │ │ ├── PageResetPassword.html │ │ │ │ │ │ │ ├── PageResetPassword.java │ │ │ │ │ │ │ ├── ResetPolicyDto.java │ │ │ │ │ │ │ └── dto │ │ │ │ │ │ │ │ ├── QuestionDTO.java │ │ │ │ │ │ │ │ └── SecretQuestionsDto.java │ │ │ │ │ │ ├── login │ │ │ │ │ │ │ ├── AbstractPageLogin.html │ │ │ │ │ │ │ ├── AbstractPageLogin.java │ │ │ │ │ │ │ ├── PageAbstractFlow.html │ │ │ │ │ │ │ ├── PageAbstractFlow.java │ │ │ │ │ │ │ ├── PageInvitation.java │ │ │ │ │ │ │ ├── PageRegistrationBase.html │ │ │ │ │ │ │ ├── PageRegistrationBase.java │ │ │ │ │ │ │ ├── PageRegistrationFinish.html │ │ │ │ │ │ │ ├── PageRegistrationFinish.java │ │ │ │ │ │ │ ├── PageSelfRegistration.html │ │ │ │ │ │ │ ├── PageSelfRegistration.java │ │ │ │ │ │ │ ├── SelfRegistrationDto.java │ │ │ │ │ │ │ ├── dto │ │ │ │ │ │ │ │ ├── CorrelatorConfigDto.java │ │ │ │ │ │ │ │ └── VerificationAttributeDto.java │ │ │ │ │ │ │ └── module │ │ │ │ │ │ │ │ ├── AbstractPageRemoteAuthenticationSelect.html │ │ │ │ │ │ │ │ ├── AbstractPageRemoteAuthenticationSelect.java │ │ │ │ │ │ │ │ ├── PageAbstractAttributeVerification.html │ │ │ │ │ │ │ │ ├── PageAbstractAttributeVerification.java │ │ │ │ │ │ │ │ ├── PageAbstractAuthenticationModule.html │ │ │ │ │ │ │ │ ├── PageAbstractAuthenticationModule.java │ │ │ │ │ │ │ │ ├── PageArchetypeSelection.html │ │ │ │ │ │ │ │ ├── PageArchetypeSelection.java │ │ │ │ │ │ │ │ ├── PageAttributeVerification.java │ │ │ │ │ │ │ │ ├── PageCorrelation.html │ │ │ │ │ │ │ │ ├── PageCorrelation.java │ │ │ │ │ │ │ │ ├── PageDuoSelect.java │ │ │ │ │ │ │ │ ├── PageEmailNonce.html │ │ │ │ │ │ │ │ ├── PageEmailNonce.java │ │ │ │ │ │ │ │ ├── PageFocusIdentification.html │ │ │ │ │ │ │ │ ├── PageFocusIdentification.java │ │ │ │ │ │ │ │ ├── PageLogin.html │ │ │ │ │ │ │ │ ├── PageLogin.java │ │ │ │ │ │ │ │ ├── PageOidcSelect.java │ │ │ │ │ │ │ │ ├── PagePasswordHint.html │ │ │ │ │ │ │ │ ├── PagePasswordHint.java │ │ │ │ │ │ │ │ ├── PageSamlSelect.java │ │ │ │ │ │ │ │ ├── PageSecurityQuestions.html │ │ │ │ │ │ │ │ └── PageSecurityQuestions.java │ │ │ │ │ │ ├── lostusername │ │ │ │ │ │ │ ├── IdentityDetailsPanel.html │ │ │ │ │ │ │ ├── IdentityDetailsPanel.java │ │ │ │ │ │ │ ├── PageIdentityRecovery.html │ │ │ │ │ │ │ └── PageIdentityRecovery.java │ │ │ │ │ │ └── self │ │ │ │ │ │ │ ├── PageOrgSelfProfile.java │ │ │ │ │ │ │ ├── PageRequestAccess.html │ │ │ │ │ │ │ ├── PageRequestAccess.java │ │ │ │ │ │ │ ├── PageRoleSelfProfile.java │ │ │ │ │ │ │ ├── PageServiceSelfProfile.java │ │ │ │ │ │ │ ├── PageUserSelfProfile.java │ │ │ │ │ │ │ ├── credentials │ │ │ │ │ │ │ ├── ChangePasswordPanel.html │ │ │ │ │ │ │ ├── ChangePasswordPanel.java │ │ │ │ │ │ │ ├── PageSelfCredentials.html │ │ │ │ │ │ │ ├── PageSelfCredentials.java │ │ │ │ │ │ │ ├── PasswordAccountDto.java │ │ │ │ │ │ │ ├── PropagatePasswordPanel.html │ │ │ │ │ │ │ └── PropagatePasswordPanel.java │ │ │ │ │ │ │ ├── dashboard │ │ │ │ │ │ │ ├── PageSelfDashboard.html │ │ │ │ │ │ │ ├── PageSelfDashboard.java │ │ │ │ │ │ │ └── component │ │ │ │ │ │ │ │ ├── DashboardSearchPanel.html │ │ │ │ │ │ │ │ ├── DashboardSearchPanel.java │ │ │ │ │ │ │ │ ├── StatisticDashboardWidget.html │ │ │ │ │ │ │ │ └── StatisticDashboardWidget.java │ │ │ │ │ │ │ └── requestAccess │ │ │ │ │ │ │ ├── AccessRequestMixin.java │ │ │ │ │ │ │ ├── CartSummaryPanel.html │ │ │ │ │ │ │ ├── CartSummaryPanel.java │ │ │ │ │ │ │ ├── CatalogItemDetailsPanel.html │ │ │ │ │ │ │ ├── CatalogItemDetailsPanel.java │ │ │ │ │ │ │ ├── ChooseRelationPanel.html │ │ │ │ │ │ │ ├── ChooseRelationPanel.java │ │ │ │ │ │ │ ├── Conflict.java │ │ │ │ │ │ │ ├── ConflictItem.java │ │ │ │ │ │ │ ├── ConflictItemPanel.html │ │ │ │ │ │ │ ├── ConflictItemPanel.java │ │ │ │ │ │ │ ├── ConflictSolverPanel.html │ │ │ │ │ │ │ ├── ConflictSolverPanel.java │ │ │ │ │ │ │ ├── ConflictState.java │ │ │ │ │ │ │ ├── CustomValidity.java │ │ │ │ │ │ │ ├── CustomValidityPanel.html │ │ │ │ │ │ │ ├── CustomValidityPanel.java │ │ │ │ │ │ │ ├── LabelWithCheck.html │ │ │ │ │ │ │ ├── LabelWithCheck.java │ │ │ │ │ │ │ ├── PageableListView.java │ │ │ │ │ │ │ ├── PersonOfInterestPanel.html │ │ │ │ │ │ │ ├── PersonOfInterestPanel.java │ │ │ │ │ │ │ ├── RelationPanel.html │ │ │ │ │ │ │ ├── RelationPanel.java │ │ │ │ │ │ │ ├── RequestAccess.java │ │ │ │ │ │ │ ├── RoleCatalogPanel.html │ │ │ │ │ │ │ ├── RoleCatalogPanel.java │ │ │ │ │ │ │ ├── RoleCatalogQuery.java │ │ │ │ │ │ │ ├── RoleCatalogQueryItem.java │ │ │ │ │ │ │ ├── RoleOfTeammateMenuPanel.html │ │ │ │ │ │ │ ├── RoleOfTeammateMenuPanel.java │ │ │ │ │ │ │ ├── ShoppingCartEditPanel.html │ │ │ │ │ │ │ ├── ShoppingCartEditPanel.java │ │ │ │ │ │ │ ├── ShoppingCartItem.java │ │ │ │ │ │ │ ├── ShoppingCartPanel.html │ │ │ │ │ │ │ ├── ShoppingCartPanel.java │ │ │ │ │ │ │ └── StaticObjectCollection.java │ │ │ │ │ │ ├── prism │ │ │ │ │ │ ├── panel │ │ │ │ │ │ │ ├── DefaultContainerablePanel.html │ │ │ │ │ │ │ ├── DefaultContainerablePanel.java │ │ │ │ │ │ │ ├── ExpressionPropertyHeaderPanel.html │ │ │ │ │ │ │ ├── ExpressionPropertyHeaderPanel.java │ │ │ │ │ │ │ ├── ExpressionPropertyPanel.html │ │ │ │ │ │ │ ├── ExpressionPropertyPanel.java │ │ │ │ │ │ │ ├── ItemHeaderPanel.html │ │ │ │ │ │ │ ├── ItemHeaderPanel.java │ │ │ │ │ │ │ ├── ItemPanel.java │ │ │ │ │ │ │ ├── ItemPanelSettings.java │ │ │ │ │ │ │ ├── ItemPanelSettingsBuilder.java │ │ │ │ │ │ │ ├── ItemRefinedPanel.html │ │ │ │ │ │ │ ├── ItemRefinedPanel.java │ │ │ │ │ │ │ ├── ItemWrapperComparator.java │ │ │ │ │ │ │ ├── MetadataContainerPanel.html │ │ │ │ │ │ │ ├── MetadataContainerPanel.java │ │ │ │ │ │ │ ├── MetadataContainerValuePanel.html │ │ │ │ │ │ │ ├── MetadataContainerValuePanel.java │ │ │ │ │ │ │ ├── ObjectTemplateItemPanel.java │ │ │ │ │ │ │ ├── PolyStringEditorPanel.html │ │ │ │ │ │ │ ├── PolyStringEditorPanel.java │ │ │ │ │ │ │ ├── PrismContainerColumnHeaderPanel.java │ │ │ │ │ │ │ ├── PrismContainerHeaderPanel.html │ │ │ │ │ │ │ ├── PrismContainerHeaderPanel.java │ │ │ │ │ │ │ ├── PrismContainerPanel.html │ │ │ │ │ │ │ ├── PrismContainerPanel.java │ │ │ │ │ │ │ ├── PrismContainerValueHeaderPanel.html │ │ │ │ │ │ │ ├── PrismContainerValuePanel.html │ │ │ │ │ │ │ ├── PrismContainerValuePanel.java │ │ │ │ │ │ │ ├── PrismObjectValuePanel.html │ │ │ │ │ │ │ ├── PrismObjectValuePanel.java │ │ │ │ │ │ │ ├── PrismPropertyHeaderPanel.java │ │ │ │ │ │ │ ├── PrismPropertyPanel.html │ │ │ │ │ │ │ ├── PrismPropertyPanel.java │ │ │ │ │ │ │ ├── PrismPropertyValuePanel.java │ │ │ │ │ │ │ ├── PrismReferenceHeaderPanel.java │ │ │ │ │ │ │ ├── PrismReferencePanel.html │ │ │ │ │ │ │ ├── PrismReferencePanel.java │ │ │ │ │ │ │ ├── PrismReferenceValuePanel.java │ │ │ │ │ │ │ ├── PrismValueMetadataPanel.html │ │ │ │ │ │ │ ├── PrismValueMetadataPanel.java │ │ │ │ │ │ │ ├── PrismValuePanel.html │ │ │ │ │ │ │ ├── PrismValuePanel.java │ │ │ │ │ │ │ ├── ProfilingClassLoggerPanel.java │ │ │ │ │ │ │ ├── ProvenanceAcquisitionHeaderPanel.html │ │ │ │ │ │ │ ├── ProvenanceAcquisitionHeaderPanel.java │ │ │ │ │ │ │ ├── ProvenanceMetadataPanel.html │ │ │ │ │ │ │ ├── ProvenanceMetadataPanel.java │ │ │ │ │ │ │ ├── SingleContainerPanel.html │ │ │ │ │ │ │ ├── SingleContainerPanel.java │ │ │ │ │ │ │ ├── SingleContainerPopupPanel.html │ │ │ │ │ │ │ ├── SingleContainerPopupPanel.java │ │ │ │ │ │ │ ├── ValueMetadataPanel.html │ │ │ │ │ │ │ ├── ValueMetadataPanel.java │ │ │ │ │ │ │ ├── component │ │ │ │ │ │ │ │ ├── ContainersPopupDto.java │ │ │ │ │ │ │ │ ├── ExpressionTypeSelectPopup.html │ │ │ │ │ │ │ │ ├── ExpressionTypeSelectPopup.java │ │ │ │ │ │ │ │ ├── ExpressionValueTypes.java │ │ │ │ │ │ │ │ ├── ListContainersPopup.html │ │ │ │ │ │ │ │ └── ListContainersPopup.java │ │ │ │ │ │ │ └── vertical │ │ │ │ │ │ │ │ └── form │ │ │ │ │ │ │ │ ├── VerticalFormAnalysisAttributesPanel.html │ │ │ │ │ │ │ │ ├── VerticalFormAnalysisAttributesPanel.java │ │ │ │ │ │ │ │ ├── VerticalFormClusteringAttributesPanel.html │ │ │ │ │ │ │ │ ├── VerticalFormClusteringAttributesPanel.java │ │ │ │ │ │ │ │ ├── VerticalFormContainerHeaderPanel.html │ │ │ │ │ │ │ │ ├── VerticalFormContainerHeaderPanel.java │ │ │ │ │ │ │ │ ├── VerticalFormCorrelationItemPanel.java │ │ │ │ │ │ │ │ ├── VerticalFormDefaultContainerablePanel.html │ │ │ │ │ │ │ │ ├── VerticalFormDefaultContainerablePanel.java │ │ │ │ │ │ │ │ ├── VerticalFormMappingPanel.java │ │ │ │ │ │ │ │ ├── VerticalFormPanel.html │ │ │ │ │ │ │ │ ├── VerticalFormPanel.java │ │ │ │ │ │ │ │ ├── VerticalFormPasswordPropertyPanel.html │ │ │ │ │ │ │ │ ├── VerticalFormPasswordPropertyPanel.java │ │ │ │ │ │ │ │ ├── VerticalFormPrismContainerPanel.html │ │ │ │ │ │ │ │ ├── VerticalFormPrismContainerPanel.java │ │ │ │ │ │ │ │ ├── VerticalFormPrismContainerValuePanel.html │ │ │ │ │ │ │ │ ├── VerticalFormPrismContainerValuePanel.java │ │ │ │ │ │ │ │ ├── VerticalFormPrismPropertyHeaderPanel.html │ │ │ │ │ │ │ │ ├── VerticalFormPrismPropertyHeaderPanel.java │ │ │ │ │ │ │ │ ├── VerticalFormPrismPropertyPanel.html │ │ │ │ │ │ │ │ ├── VerticalFormPrismPropertyPanel.java │ │ │ │ │ │ │ │ ├── VerticalFormPrismPropertyValuePanel.html │ │ │ │ │ │ │ │ ├── VerticalFormPrismPropertyValuePanel.java │ │ │ │ │ │ │ │ ├── VerticalFormPrismReferenceHeaderPanel.html │ │ │ │ │ │ │ │ ├── VerticalFormPrismReferenceHeaderPanel.java │ │ │ │ │ │ │ │ ├── VerticalFormPrismReferencePanel.html │ │ │ │ │ │ │ │ ├── VerticalFormPrismReferencePanel.java │ │ │ │ │ │ │ │ ├── VerticalFormPrismReferenceValuePanel.html │ │ │ │ │ │ │ │ ├── VerticalFormPrismReferenceValuePanel.java │ │ │ │ │ │ │ │ ├── VerticalFormRoleAnalysisAttributeSettingPanel.html │ │ │ │ │ │ │ │ └── VerticalFormRoleAnalysisAttributeSettingPanel.java │ │ │ │ │ │ └── wrapper │ │ │ │ │ │ │ ├── AssignmentHolderWrapper.java │ │ │ │ │ │ │ ├── AssignmentValueWrapperImpl.java │ │ │ │ │ │ │ ├── AssociationInboundExpressionWrapper.java │ │ │ │ │ │ │ ├── AssociationMappingExpressionWrapper.java │ │ │ │ │ │ │ ├── AssociationOutboundExpressionWrapper.java │ │ │ │ │ │ │ ├── AttributeMappingValueWrapper.java │ │ │ │ │ │ │ ├── AuthenticationAttemptValueWrapper.java │ │ │ │ │ │ │ ├── AuthenticationAttemptWrapper.java │ │ │ │ │ │ │ ├── AuthenticationBehaviorWrapper.java │ │ │ │ │ │ │ ├── BooleanWrapperImpl.java │ │ │ │ │ │ │ ├── CaseWorkItemTypeWrapper.java │ │ │ │ │ │ │ ├── ConnectorDevelopmentTypeResourceValueWrapperImpl.java │ │ │ │ │ │ │ ├── ConstructionValueWrapper.java │ │ │ │ │ │ │ ├── CreateObjectForReferenceValueWrapper.java │ │ │ │ │ │ │ ├── ExpressionWrapper.java │ │ │ │ │ │ │ ├── ItemWrapperImpl.java │ │ │ │ │ │ │ ├── ObjectTypeAttributeMappingWrapper.java │ │ │ │ │ │ │ ├── PrismContainerValueWrapperImpl.java │ │ │ │ │ │ │ ├── PrismContainerWrapperImpl.java │ │ │ │ │ │ │ ├── PrismObjectValueWrapperImpl.java │ │ │ │ │ │ │ ├── PrismObjectWrapperImpl.java │ │ │ │ │ │ │ ├── PrismPropertyValueWrapper.java │ │ │ │ │ │ │ ├── PrismPropertyWrapperImpl.java │ │ │ │ │ │ │ ├── PrismReferenceValueWrapperImpl.java │ │ │ │ │ │ │ ├── PrismReferenceWrapperImpl.java │ │ │ │ │ │ │ ├── PrismSchemaWrapper.java │ │ │ │ │ │ │ ├── PrismValueWrapperImpl.java │ │ │ │ │ │ │ ├── ProfilingClassLoggerContainerValueWrapperImpl.java │ │ │ │ │ │ │ ├── ProfilingClassLoggerContainerWrapperImpl.java │ │ │ │ │ │ │ ├── ProtectedStringTypeWrapperImpl.java │ │ │ │ │ │ │ ├── ResourceAttributeWrapperImpl.java │ │ │ │ │ │ │ ├── ResourceObjectTypeArchetypeValueWrapperImpl.java │ │ │ │ │ │ │ ├── ResourceObjectTypeMarkPolicyValueWrapperImpl.java │ │ │ │ │ │ │ ├── ResourceWrapper.java │ │ │ │ │ │ │ ├── SchemaPropertyWrapperImpl.java │ │ │ │ │ │ │ ├── ShadowAssociationValueWrapper.java │ │ │ │ │ │ │ ├── ShadowAssociationWrapperImpl.java │ │ │ │ │ │ │ ├── ShadowWrapperImpl.java │ │ │ │ │ │ │ ├── ValueMetadataWrapperImpl.java │ │ │ │ │ │ │ └── association │ │ │ │ │ │ │ └── AssociationAttributeMappingWrapper.java │ │ │ │ │ │ ├── registry │ │ │ │ │ │ ├── DataProviderRegistryImpl.java │ │ │ │ │ │ └── GuiComponentRegistryImpl.java │ │ │ │ │ │ ├── session │ │ │ │ │ │ ├── ContainerTabStorage.java │ │ │ │ │ │ └── WorkItemsStorage.java │ │ │ │ │ │ ├── util │ │ │ │ │ │ ├── AccessMetadataUtil.java │ │ │ │ │ │ ├── AssociationChildWrapperUtil.java │ │ │ │ │ │ ├── DetailsPageUtil.java │ │ │ │ │ │ ├── ExecutedDeltaPostProcessor.java │ │ │ │ │ │ ├── GuiDisplayNameUtil.java │ │ │ │ │ │ ├── GuiImplUtil.java │ │ │ │ │ │ ├── IconAndStylesUtil.java │ │ │ │ │ │ ├── ObjectCollectionViewUtil.java │ │ │ │ │ │ ├── ProvisioningObjectsUtil.java │ │ │ │ │ │ ├── ReferenceExecutedDeltaProcessor.java │ │ │ │ │ │ ├── RelationUtil.java │ │ │ │ │ │ ├── StatusInfoTableUtil.java │ │ │ │ │ │ └── TableUtil.java │ │ │ │ │ │ └── validator │ │ │ │ │ │ ├── AssociationMappingNameValidator.java │ │ │ │ │ │ ├── AssociationNameValidator.java │ │ │ │ │ │ ├── AssociationRefAttributeValidator.java │ │ │ │ │ │ ├── ChoiceRequiredValidator.java │ │ │ │ │ │ ├── IntentValidator.java │ │ │ │ │ │ ├── MappingNameValidator.java │ │ │ │ │ │ ├── ObjectTypeMappingNameValidator.java │ │ │ │ │ │ ├── ParseAxiomQueryValidator.java │ │ │ │ │ │ ├── RelationValidator.java │ │ │ │ │ │ ├── ResourceObjectFocusTypeValidator.java │ │ │ │ │ │ ├── SchemaDefaultPrefixValidator.java │ │ │ │ │ │ ├── SchemaDefinitionNameValidator.java │ │ │ │ │ │ ├── SchemaEnumerationConstantNameValidator.java │ │ │ │ │ │ └── SchemaEnumerationValueValidator.java │ │ │ │ │ ├── init │ │ │ │ │ ├── DataImport.java │ │ │ │ │ ├── InfraInitialSetup.java │ │ │ │ │ ├── InitialDataImport.java │ │ │ │ │ ├── ModelInitialSetup.java │ │ │ │ │ ├── PostInitialDataImport.java │ │ │ │ │ ├── RepoCacheInitialSetup.java │ │ │ │ │ ├── RepoInitialSetup.java │ │ │ │ │ └── SchemaCache.java │ │ │ │ │ └── web │ │ │ │ │ ├── application │ │ │ │ │ ├── ActionType.java │ │ │ │ │ ├── AssignmentCounter.java │ │ │ │ │ ├── AsyncWebProcess.java │ │ │ │ │ ├── AsyncWebProcessManager.java │ │ │ │ │ ├── AsyncWebProcessManagerImpl.java │ │ │ │ │ ├── AsyncWebProcessModel.java │ │ │ │ │ ├── CaseWorkitemsCounter.java │ │ │ │ │ ├── ChildrenCasesCounter.java │ │ │ │ │ ├── CollectionInstance.java │ │ │ │ │ ├── ColumnType.java │ │ │ │ │ ├── Counter.java │ │ │ │ │ ├── DelegatedToMeCounter.java │ │ │ │ │ ├── FocusCasesCounter.java │ │ │ │ │ ├── FocusProjectionsCounter.java │ │ │ │ │ ├── FocusTriggersCounter.java │ │ │ │ │ ├── InducementCounter.java │ │ │ │ │ ├── PageMounter.java │ │ │ │ │ ├── PanelDisplay.java │ │ │ │ │ ├── PanelInstance.java │ │ │ │ │ ├── PanelInstances.java │ │ │ │ │ ├── PanelType.java │ │ │ │ │ ├── PanelTypeConstants.java │ │ │ │ │ ├── PersonasCounter.java │ │ │ │ │ ├── SimpleCounter.java │ │ │ │ │ └── UserDelegationsCounter.java │ │ │ │ │ ├── boot │ │ │ │ │ ├── AbstractSpringBootApplication.java │ │ │ │ │ ├── EmbeddedTomcatAutoConfiguration.java │ │ │ │ │ ├── MidPointErrorPageRegistrar.java │ │ │ │ │ ├── MidPointJarSignatureChecker.java │ │ │ │ │ ├── MidPointSpringApplication.java │ │ │ │ │ ├── MidPointTomcatServletWebServerFactory.java │ │ │ │ │ ├── MidpointResponse.java │ │ │ │ │ ├── NodeIdHeaderValve.java │ │ │ │ │ ├── RootRootContext.java │ │ │ │ │ ├── StaticWebServlet.java │ │ │ │ │ ├── TomcatRootValve.java │ │ │ │ │ ├── TrailingSlashRedirectingFilter.java │ │ │ │ │ ├── WebConfig.java │ │ │ │ │ └── actuator │ │ │ │ │ │ ├── MidpointInfoContributor.java │ │ │ │ │ │ ├── MpHomeHealthIndicator.java │ │ │ │ │ │ └── RepoHealthIndicator.java │ │ │ │ │ ├── component │ │ │ │ │ ├── AbstractAjaxDownloadBehavior.java │ │ │ │ │ ├── AbstractSummaryPanel.html │ │ │ │ │ ├── AbstractSummaryPanel.java │ │ │ │ │ ├── AceEditor.java │ │ │ │ │ ├── AjaxButton.java │ │ │ │ │ ├── AjaxCompositedIconSubmitButton.java │ │ │ │ │ ├── AjaxDownloadBehaviorFromFile.java │ │ │ │ │ ├── AjaxDownloadBehaviorFromStream.java │ │ │ │ │ ├── AjaxIconButton.java │ │ │ │ │ ├── AjaxSubmitButton.java │ │ │ │ │ ├── AjaxTabbedPanel.java │ │ │ │ │ ├── AsyncUpdatePanel.java │ │ │ │ │ ├── CompositedButtonPanel.html │ │ │ │ │ ├── CompositedButtonPanel.java │ │ │ │ │ ├── CompositedIconButtonDto.java │ │ │ │ │ ├── DateLabelComponent.java │ │ │ │ │ ├── DefaultAjaxButton.java │ │ │ │ │ ├── DefaultAjaxSubmitButton.java │ │ │ │ │ ├── DropDownMultiChoice.java │ │ │ │ │ ├── FocusSummaryPanel.java │ │ │ │ │ ├── LockoutStatusPanel.html │ │ │ │ │ ├── LockoutStatusPanel.java │ │ │ │ │ ├── MultiCompositedButtonPanel.html │ │ │ │ │ ├── MultiCompositedButtonPanel.java │ │ │ │ │ ├── MultiFunctinalButtonDto.java │ │ │ │ │ ├── MultifunctionalButton.html │ │ │ │ │ ├── MultifunctionalButton.java │ │ │ │ │ ├── ObjectBasicPanel.html │ │ │ │ │ ├── ObjectBasicPanel.java │ │ │ │ │ ├── ObjectSummaryPanel.java │ │ │ │ │ ├── ObjectVerticalSummaryPanel.html │ │ │ │ │ ├── ObjectVerticalSummaryPanel.java │ │ │ │ │ ├── RoleAnalysisTabbedPanel.html │ │ │ │ │ ├── RoleAnalysisTabbedPanel.java │ │ │ │ │ ├── SecurityContextAwareCallable.java │ │ │ │ │ ├── TabCenterTabbedPanel.html │ │ │ │ │ ├── TabCenterTabbedPanel.java │ │ │ │ │ ├── TabSeparatedTabbedPanel.html │ │ │ │ │ ├── TabSeparatedTabbedPanel.java │ │ │ │ │ ├── TabbedPanel.html │ │ │ │ │ ├── TabbedPanel.java │ │ │ │ │ ├── TreeThemeBasic.java │ │ │ │ │ ├── assignment │ │ │ │ │ │ ├── ACAttributeDto.java │ │ │ │ │ │ ├── ACAttributePanel.html │ │ │ │ │ │ ├── ACAttributePanel.java │ │ │ │ │ │ ├── ACAttributeValuePanel.html │ │ │ │ │ │ ├── ACAttributeValuePanel.java │ │ │ │ │ │ ├── ACValueConstructionDto.java │ │ │ │ │ │ ├── AbstractAssignmentListPanel.java │ │ │ │ │ │ ├── ApplicablePolicyConfigPanel.html │ │ │ │ │ │ ├── ApplicablePolicyConfigPanel.java │ │ │ │ │ │ ├── ApplicablePolicyGroupPanel.html │ │ │ │ │ │ ├── ApplicablePolicyGroupPanel.java │ │ │ │ │ │ ├── AssignmentEditorDto.java │ │ │ │ │ │ ├── AssignmentEditorDtoType.java │ │ │ │ │ │ ├── AssignmentEditorPanel.html │ │ │ │ │ │ ├── AssignmentEditorPanel.java │ │ │ │ │ │ ├── AssignmentHeaderPanel.html │ │ │ │ │ │ ├── AssignmentHeaderPanel.java │ │ │ │ │ │ ├── AssignmentSearchDto.java │ │ │ │ │ │ ├── AssignmentTableDto.java │ │ │ │ │ │ ├── AssignmentTablePanel.html │ │ │ │ │ │ ├── AssignmentTablePanel.java │ │ │ │ │ │ ├── AssignmentsUtil.java │ │ │ │ │ │ ├── ConstructionAssociationPanel.html │ │ │ │ │ │ ├── ConstructionAssociationPanel.java │ │ │ │ │ │ ├── DelegationEditorPanel.html │ │ │ │ │ │ ├── DelegationEditorPanel.java │ │ │ │ │ │ ├── MetadataPanel.html │ │ │ │ │ │ ├── MetadataPanel.java │ │ │ │ │ │ ├── PolicyRuleConstraintsExpandablePanel.html │ │ │ │ │ │ ├── SelfConsentPanel.html │ │ │ │ │ │ ├── SelfConsentPanel.java │ │ │ │ │ │ ├── SimpleRoleSelector.html │ │ │ │ │ │ ├── SimpleRoleSelector.java │ │ │ │ │ │ └── TabbedAssignmentTypePanel.java │ │ │ │ │ ├── behavior │ │ │ │ │ │ └── CaretPreservingOnChangeBehavior.java │ │ │ │ │ ├── breadcrumbs │ │ │ │ │ │ ├── Breadcrumb.java │ │ │ │ │ │ └── CachedModel.java │ │ │ │ │ ├── data │ │ │ │ │ │ ├── AjaxEventProcessor.java │ │ │ │ │ │ ├── BasicOrderByBorder.java │ │ │ │ │ │ ├── BoxedTablePanel.html │ │ │ │ │ │ ├── BoxedTablePanel.java │ │ │ │ │ │ ├── CountToolbar.html │ │ │ │ │ │ ├── CountToolbar.java │ │ │ │ │ │ ├── DoubleButtonPanel.html │ │ │ │ │ │ ├── DoubleButtonPanel.java │ │ │ │ │ │ ├── LinkedReferencePanel.html │ │ │ │ │ │ ├── LinkedReferencePanel.java │ │ │ │ │ │ ├── MenuMultiButtonPanel.html │ │ │ │ │ │ ├── MenuMultiButtonPanel.java │ │ │ │ │ │ ├── MultiButtonPanel.html │ │ │ │ │ │ ├── MultiButtonPanel.java │ │ │ │ │ │ ├── PagingSizePanel.html │ │ │ │ │ │ ├── PagingSizePanel.java │ │ │ │ │ │ ├── RoleAnalysisObjectDto.java │ │ │ │ │ │ ├── RoleAnalysisTable.html │ │ │ │ │ │ ├── RoleAnalysisTable.java │ │ │ │ │ │ ├── RoleAnalysisTableHeadersToolbar.html │ │ │ │ │ │ ├── RoleAnalysisTableHeadersToolbar.java │ │ │ │ │ │ ├── SelectableDataTable.java │ │ │ │ │ │ ├── SingleButtonPanel.html │ │ │ │ │ │ ├── SingleButtonPanel.java │ │ │ │ │ │ ├── Table.java │ │ │ │ │ │ ├── TableHeadersToolbar.html │ │ │ │ │ │ ├── TableHeadersToolbar.java │ │ │ │ │ │ ├── TablePanel.html │ │ │ │ │ │ ├── TablePanel.java │ │ │ │ │ │ ├── TypedCacheKey.java │ │ │ │ │ │ ├── column │ │ │ │ │ │ │ ├── AbstractNameColumn.java │ │ │ │ │ │ │ ├── AjaxLinkColumn.java │ │ │ │ │ │ │ ├── AjaxLinkPanel.html │ │ │ │ │ │ │ ├── AjaxLinkPanel.java │ │ │ │ │ │ │ ├── AjaxLinkTruncateDto.java │ │ │ │ │ │ │ ├── AjaxLinkTruncatePanelAction.html │ │ │ │ │ │ │ ├── AjaxLinkTruncatePanelAction.java │ │ │ │ │ │ │ ├── AjaxLinkWithBadgesColumn.java │ │ │ │ │ │ │ ├── AjaxLinkWithBadgesPanel.html │ │ │ │ │ │ │ ├── AjaxLinkWithBadgesPanel.java │ │ │ │ │ │ │ ├── AssignmentPathPanel.html │ │ │ │ │ │ │ ├── AssignmentPathPanel.java │ │ │ │ │ │ │ ├── AuditSelectableLinkColumn.java │ │ │ │ │ │ │ ├── CampaignSummary.java │ │ │ │ │ │ │ ├── CheckBoxColumn.java │ │ │ │ │ │ │ ├── CheckBoxHeaderColumn.java │ │ │ │ │ │ │ ├── ColumnMenuAction.java │ │ │ │ │ │ │ ├── ColumnResultPanel.html │ │ │ │ │ │ │ ├── ColumnResultPanel.java │ │ │ │ │ │ │ ├── ColumnTypeDto.java │ │ │ │ │ │ │ ├── ColumnUtils.java │ │ │ │ │ │ │ ├── ContainerableNameColumn.java │ │ │ │ │ │ │ ├── CountIconColumn.java │ │ │ │ │ │ │ ├── CountIconPanel.html │ │ │ │ │ │ │ ├── CountIconPanel.java │ │ │ │ │ │ │ ├── DeltaProgressBarColumn.java │ │ │ │ │ │ │ ├── DirectlyEditablePropertyColumn.java │ │ │ │ │ │ │ ├── DoubleButtonColumn.java │ │ │ │ │ │ │ ├── EditableAjaxLinkColumn.java │ │ │ │ │ │ │ ├── EditableCheckboxColumn.java │ │ │ │ │ │ │ ├── EditablePropertyColumn.java │ │ │ │ │ │ │ ├── EnumPropertyColumn.java │ │ │ │ │ │ │ ├── GenericColumn.java │ │ │ │ │ │ │ ├── GuiActionColumn.java │ │ │ │ │ │ │ ├── IconColumn.java │ │ │ │ │ │ │ ├── ImagePanel.html │ │ │ │ │ │ │ ├── ImagePanel.java │ │ │ │ │ │ │ ├── InlineMenuButtonColumn.java │ │ │ │ │ │ │ ├── InlineMenuHeaderColumn.java │ │ │ │ │ │ │ ├── IsolatedCheckBoxPanel.html │ │ │ │ │ │ │ ├── IsolatedCheckBoxPanel.java │ │ │ │ │ │ │ ├── IsolatedRadioPanel.html │ │ │ │ │ │ │ ├── IsolatedRadioPanel.java │ │ │ │ │ │ │ ├── LinkColumn.java │ │ │ │ │ │ │ ├── LinkIconColumn.java │ │ │ │ │ │ │ ├── LinkIconPanel.html │ │ │ │ │ │ │ ├── LinkIconPanel.java │ │ │ │ │ │ │ ├── LinkIconPanelStatus.html │ │ │ │ │ │ │ ├── LinkIconPanelStatus.java │ │ │ │ │ │ │ ├── LinkPanel.html │ │ │ │ │ │ │ ├── LinkPanel.java │ │ │ │ │ │ │ ├── ObjectLinkColumn.java │ │ │ │ │ │ │ ├── ObjectNameColumn.java │ │ │ │ │ │ │ ├── ObjectReferenceColumn.java │ │ │ │ │ │ │ ├── ObjectReferenceColumnPanel.html │ │ │ │ │ │ │ ├── ObjectReferenceColumnPanel.java │ │ │ │ │ │ │ ├── PasswordPolicyValidationPanel.html │ │ │ │ │ │ │ ├── PasswordPolicyValidationPanel.java │ │ │ │ │ │ │ ├── PolyStringPropertyColumn.java │ │ │ │ │ │ │ ├── ProgressBarColumn.java │ │ │ │ │ │ │ ├── RadioColumn.java │ │ │ │ │ │ │ ├── RoleAnalysisIntersectionColumn.java │ │ │ │ │ │ │ ├── RoleAnalysisMatrixColumn.java │ │ │ │ │ │ │ ├── RoleAnalysisObjectColumn.java │ │ │ │ │ │ │ ├── SelectableObjectNameColumn.java │ │ │ │ │ │ │ ├── SingleButtonColumn.java │ │ │ │ │ │ │ ├── TwoValueLinkPanel.html │ │ │ │ │ │ │ └── TwoValueLinkPanel.java │ │ │ │ │ │ ├── mining │ │ │ │ │ │ │ ├── RoleAnalysisPagingColumns.java │ │ │ │ │ │ │ └── RoleAnalysisPagingRows.java │ │ │ │ │ │ ├── paging │ │ │ │ │ │ │ ├── NavigatorPageLink.java │ │ │ │ │ │ │ ├── NavigatorPanel.html │ │ │ │ │ │ │ └── NavigatorPanel.java │ │ │ │ │ │ ├── provider │ │ │ │ │ │ │ ├── CertCampaignListItemDtoProvider.java │ │ │ │ │ │ │ ├── CertCaseDtoProvider.java │ │ │ │ │ │ │ └── CertWorkItemDtoProvider.java │ │ │ │ │ │ └── table │ │ │ │ │ │ │ ├── CollapsableDataTable.html │ │ │ │ │ │ │ ├── CollapsableDataTable.java │ │ │ │ │ │ │ ├── CollapsibleBoxedTablePanel.java │ │ │ │ │ │ │ └── CollapsibleToggleColumn.java │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── AdditionalOperationConfirmationPanel.html │ │ │ │ │ │ ├── AdditionalOperationConfirmationPanel.java │ │ │ │ │ │ ├── AssignmentObjectRelationDefinitionDialog.html │ │ │ │ │ │ ├── AssignmentObjectRelationDefinitionDialog.java │ │ │ │ │ │ ├── ChooseFocusTypeAndRelationDialogPanel.html │ │ │ │ │ │ ├── ChooseFocusTypeAndRelationDialogPanel.java │ │ │ │ │ │ ├── ConfigureSynchronizationConfirmationPanel.html │ │ │ │ │ │ ├── ConfigureSynchronizationConfirmationPanel.java │ │ │ │ │ │ ├── ConfigureTaskConfirmationPanel.html │ │ │ │ │ │ ├── ConfigureTaskConfirmationPanel.java │ │ │ │ │ │ ├── ConfirmationPanel.html │ │ │ │ │ │ ├── ConfirmationPanel.java │ │ │ │ │ │ ├── DeleteAllDto.java │ │ │ │ │ │ ├── DeleteAllPanel.html │ │ │ │ │ │ ├── DeleteAllPanel.java │ │ │ │ │ │ ├── DeleteConfirmationPanel.java │ │ │ │ │ │ ├── DeleteShadowConfirmationPanel.html │ │ │ │ │ │ ├── DeleteShadowConfirmationPanel.java │ │ │ │ │ │ ├── ExportMiningPanel.html │ │ │ │ │ │ ├── ExportMiningPanel.java │ │ │ │ │ │ ├── ExportingPanel.html │ │ │ │ │ │ ├── ExportingPanel.java │ │ │ │ │ │ ├── HelpInfoPanel.html │ │ │ │ │ │ ├── HelpInfoPanel.java │ │ │ │ │ │ ├── MainPopupDialog.html │ │ │ │ │ │ ├── MainPopupDialog.java │ │ │ │ │ │ ├── Popupable.java │ │ │ │ │ │ ├── RequestDetailsConfirmationPanel.html │ │ │ │ │ │ ├── RequestDetailsConfirmationPanel.java │ │ │ │ │ │ ├── RequestDetailsRecordDto.java │ │ │ │ │ │ └── SimplePopupable.java │ │ │ │ │ ├── form │ │ │ │ │ │ ├── AceEditorFormGroup.html │ │ │ │ │ │ ├── AceEditorFormGroup.java │ │ │ │ │ │ ├── CheckFormGroup.html │ │ │ │ │ │ ├── CheckFormGroup.java │ │ │ │ │ │ ├── DropDownFormGroup.html │ │ │ │ │ │ ├── DropDownFormGroup.java │ │ │ │ │ │ ├── MidpointForm.java │ │ │ │ │ │ ├── MultipartFormConfiguration.java │ │ │ │ │ │ ├── TextFormGroup.html │ │ │ │ │ │ ├── TextFormGroup.java │ │ │ │ │ │ ├── ValueChoosePanel.html │ │ │ │ │ │ ├── ValueChoosePanel.java │ │ │ │ │ │ └── multivalue │ │ │ │ │ │ │ ├── GenericMultiValueLabelEditPanel.html │ │ │ │ │ │ │ ├── GenericMultiValueLabelEditPanel.java │ │ │ │ │ │ │ ├── MultiValueAutoCompleteTextPanel.html │ │ │ │ │ │ │ ├── MultiValueAutoCompleteTextPanel.java │ │ │ │ │ │ │ ├── MultiValueChoosePanel.html │ │ │ │ │ │ │ ├── MultiValueChoosePanel.java │ │ │ │ │ │ │ ├── MultiValueDropDownPanel.html │ │ │ │ │ │ │ ├── MultiValueDropDownPanel.java │ │ │ │ │ │ │ ├── MultiValueObjectChoosePanel.html │ │ │ │ │ │ │ ├── MultiValueObjectChoosePanel.java │ │ │ │ │ │ │ ├── MultiValueTextEditPanel.html │ │ │ │ │ │ │ ├── MultiValueTextEditPanel.java │ │ │ │ │ │ │ ├── MultiValueTextFormGroup.html │ │ │ │ │ │ │ ├── MultiValueTextFormGroup.java │ │ │ │ │ │ │ ├── MultiValueTextPanel.html │ │ │ │ │ │ │ └── MultiValueTextPanel.java │ │ │ │ │ ├── input │ │ │ │ │ │ ├── AnyTypePanel.html │ │ │ │ │ │ ├── AnyTypePanel.java │ │ │ │ │ │ ├── AnyTypeType.java │ │ │ │ │ │ ├── AssociationExpressionValuePanel.html │ │ │ │ │ │ ├── AssociationExpressionValuePanel.java │ │ │ │ │ │ ├── CheckPanel.html │ │ │ │ │ │ ├── CheckPanel.java │ │ │ │ │ │ ├── ChoiceableChoiceRenderer.java │ │ │ │ │ │ ├── DataLanguagePanel.java │ │ │ │ │ │ ├── DisplayableValueChoiceRenderer.java │ │ │ │ │ │ ├── DropDownChoicePanel.html │ │ │ │ │ │ ├── DropDownChoicePanel.java │ │ │ │ │ │ ├── DropDownChoiceSuggestPanel.html │ │ │ │ │ │ ├── DropDownChoiceSuggestPanel.java │ │ │ │ │ │ ├── DurationPanel.html │ │ │ │ │ │ ├── DurationPanel.java │ │ │ │ │ │ ├── DurationWithOneElementPanel.html │ │ │ │ │ │ ├── DurationWithOneElementPanel.java │ │ │ │ │ │ ├── ExpressionEditorPanel.html │ │ │ │ │ │ ├── ExpressionEditorPanel.java │ │ │ │ │ │ ├── ListMultipleChoicePanel.html │ │ │ │ │ │ ├── ListMultipleChoicePanel.java │ │ │ │ │ │ ├── MultiStateHorizontalButton.html │ │ │ │ │ │ ├── MultiStateHorizontalButton.java │ │ │ │ │ │ ├── ObjectReferenceChoiceRenderer.java │ │ │ │ │ │ ├── ObjectTypeChoiceRenderer.java │ │ │ │ │ │ ├── PreAjaxLoadingStateListener.java │ │ │ │ │ │ ├── QNameChoiceRenderer.java │ │ │ │ │ │ ├── QNameEditorPanel.html │ │ │ │ │ │ ├── QNameEditorPanel.java │ │ │ │ │ │ ├── QNameObjectTypeChoiceRenderer.java │ │ │ │ │ │ ├── QueryTextAreaPanel.html │ │ │ │ │ │ ├── QueryTextAreaPanel.java │ │ │ │ │ │ ├── RefinedObjectTypeChoicePanel.java │ │ │ │ │ │ ├── RelationDropDownChoice.java │ │ │ │ │ │ ├── RelationDropDownChoicePanel.html │ │ │ │ │ │ ├── RelationDropDownChoicePanel.java │ │ │ │ │ │ ├── ResourceObjectClassChoiceRenderer.java │ │ │ │ │ │ ├── ResourceObjectTypeChoiceRenderer.java │ │ │ │ │ │ ├── SearchFilterPanel.html │ │ │ │ │ │ ├── SearchFilterPanel.java │ │ │ │ │ │ ├── SplitButtonWithDropdownMenu.html │ │ │ │ │ │ ├── SplitButtonWithDropdownMenu.java │ │ │ │ │ │ ├── StringChoiceRenderer.java │ │ │ │ │ │ ├── TextAreaPanel.html │ │ │ │ │ │ ├── TextAreaPanel.java │ │ │ │ │ │ ├── TextDetailsPanel.html │ │ │ │ │ │ ├── TextDetailsPanel.java │ │ │ │ │ │ ├── TextPanel.html │ │ │ │ │ │ ├── TextPanel.java │ │ │ │ │ │ ├── ThreeStateBooleanPanel.html │ │ │ │ │ │ ├── ThreeStateBooleanPanel.java │ │ │ │ │ │ ├── TriStateComboPanel.html │ │ │ │ │ │ ├── TriStateComboPanel.java │ │ │ │ │ │ ├── TwoStateBooleanPanel.html │ │ │ │ │ │ ├── TwoStateBooleanPanel.java │ │ │ │ │ │ ├── UploadDownloadPanel.html │ │ │ │ │ │ ├── UploadDownloadPanel.java │ │ │ │ │ │ ├── dto │ │ │ │ │ │ │ └── ExpressionTypeDto.java │ │ │ │ │ │ └── validator │ │ │ │ │ │ │ ├── DurationValidator.java │ │ │ │ │ │ │ ├── NotNullValidator.java │ │ │ │ │ │ │ ├── ProtectedStringValidatorForKeyField.java │ │ │ │ │ │ │ └── ReferenceAutocompleteValidator.java │ │ │ │ │ ├── menu │ │ │ │ │ │ ├── AdditionalMenuItem.java │ │ │ │ │ │ ├── BaseMenuItem.java │ │ │ │ │ │ ├── MainMenuItem.java │ │ │ │ │ │ ├── MainMenuPanel.html │ │ │ │ │ │ ├── MainMenuPanel.java │ │ │ │ │ │ ├── MenuItem.java │ │ │ │ │ │ ├── SideBarMenuItem.java │ │ │ │ │ │ ├── SideBarMenuPanel.html │ │ │ │ │ │ ├── SideBarMenuPanel.java │ │ │ │ │ │ ├── cog │ │ │ │ │ │ │ ├── ButtonInlineMenuItem.java │ │ │ │ │ │ │ ├── ButtonInlineMenuItemWithCount.java │ │ │ │ │ │ │ ├── CheckboxMenuItem.java │ │ │ │ │ │ │ ├── IconMenuLinkPanel.html │ │ │ │ │ │ │ ├── IconMenuLinkPanel.java │ │ │ │ │ │ │ ├── InlineMenuItem.java │ │ │ │ │ │ │ ├── InlineMenuItemAction.java │ │ │ │ │ │ │ ├── InlineMenuItemBuilder.java │ │ │ │ │ │ │ ├── MenuDividerPanel.html │ │ │ │ │ │ │ ├── MenuDividerPanel.java │ │ │ │ │ │ │ ├── MenuLinkPanel.html │ │ │ │ │ │ │ └── MenuLinkPanel.java │ │ │ │ │ │ └── top │ │ │ │ │ │ │ ├── LocalePanel.java │ │ │ │ │ │ │ ├── LocaleTextPanel.html │ │ │ │ │ │ │ ├── LocaleTextPanel.java │ │ │ │ │ │ │ ├── LocaleTopMenuPanel.html │ │ │ │ │ │ │ ├── LocaleTopMenuPanel.java │ │ │ │ │ │ │ ├── LocalesDropDownMenu.html │ │ │ │ │ │ │ └── LocalesDropDownMenu.java │ │ │ │ │ ├── message │ │ │ │ │ │ ├── FeedbackAlerts.html │ │ │ │ │ │ ├── FeedbackAlerts.java │ │ │ │ │ │ └── FeedbackListView.java │ │ │ │ │ ├── model │ │ │ │ │ │ ├── delta │ │ │ │ │ │ │ ├── ContainerItemDto.java │ │ │ │ │ │ │ ├── ContainerValueDto.java │ │ │ │ │ │ │ ├── ContainerValuePanel.html │ │ │ │ │ │ │ ├── ContainerValuePanel.java │ │ │ │ │ │ │ ├── DeltaDto.java │ │ │ │ │ │ │ ├── DeltaPanel.html │ │ │ │ │ │ │ ├── DeltaPanel.java │ │ │ │ │ │ │ ├── ModificationDto.java │ │ │ │ │ │ │ ├── ModificationsPanel.html │ │ │ │ │ │ │ └── ModificationsPanel.java │ │ │ │ │ │ └── operationStatus │ │ │ │ │ │ │ ├── ModelOperationStatusDto.java │ │ │ │ │ │ │ ├── ModelOperationStatusPanel.html │ │ │ │ │ │ │ └── ModelOperationStatusPanel.java │ │ │ │ │ ├── prism │ │ │ │ │ │ ├── ContainerStatus.java │ │ │ │ │ │ ├── DynamicFieldGroupPanel.html │ │ │ │ │ │ ├── DynamicFieldGroupPanel.java │ │ │ │ │ │ ├── DynamicFormPanel.html │ │ │ │ │ │ ├── DynamicFormPanel.java │ │ │ │ │ │ ├── InputPanel.java │ │ │ │ │ │ ├── ItemVisibility.java │ │ │ │ │ │ ├── ValueStatus.java │ │ │ │ │ │ └── show │ │ │ │ │ │ │ ├── ChangesPanel.html │ │ │ │ │ │ │ ├── ChangesPanel.java │ │ │ │ │ │ │ ├── MetadataPopup.html │ │ │ │ │ │ │ ├── MetadataPopup.java │ │ │ │ │ │ │ ├── SimpleVisualizationPanel.html │ │ │ │ │ │ │ ├── SimpleVisualizationPanel.java │ │ │ │ │ │ │ ├── VisualizationDto.java │ │ │ │ │ │ │ ├── VisualizationItemDto.java │ │ │ │ │ │ │ ├── VisualizationItemLineDto.java │ │ │ │ │ │ │ ├── VisualizationItemLinePanel.html │ │ │ │ │ │ │ ├── VisualizationItemLinePanel.java │ │ │ │ │ │ │ ├── VisualizationItemPanel.html │ │ │ │ │ │ │ ├── VisualizationItemPanel.java │ │ │ │ │ │ │ ├── VisualizationItemValuePanel.html │ │ │ │ │ │ │ ├── VisualizationItemValuePanel.java │ │ │ │ │ │ │ ├── VisualizationItemsPanel.html │ │ │ │ │ │ │ ├── VisualizationItemsPanel.java │ │ │ │ │ │ │ ├── VisualizationPanel.html │ │ │ │ │ │ │ ├── VisualizationPanel.java │ │ │ │ │ │ │ ├── VisualizationUtil.java │ │ │ │ │ │ │ └── WrapperVisualization.java │ │ │ │ │ ├── progress │ │ │ │ │ │ ├── MappingsLineDto.java │ │ │ │ │ │ ├── NotificationsLineDto.java │ │ │ │ │ │ ├── ProgressDto.java │ │ │ │ │ │ ├── ProgressPanel.html │ │ │ │ │ │ ├── ProgressPanel.java │ │ │ │ │ │ ├── ProgressReportActivityDto.java │ │ │ │ │ │ ├── ProgressReporter.java │ │ │ │ │ │ ├── ProgressReportingAwarePage.java │ │ │ │ │ │ ├── ProvisioningStatisticsLineDto.java │ │ │ │ │ │ ├── ProvisioningStatisticsOperationDto.java │ │ │ │ │ │ ├── StatisticsDto.java │ │ │ │ │ │ ├── StatisticsDtoModel.java │ │ │ │ │ │ ├── StatisticsPanel.html │ │ │ │ │ │ └── StatisticsPanel.java │ │ │ │ │ ├── refresh │ │ │ │ │ │ ├── AutoRefreshDto.java │ │ │ │ │ │ ├── AutoRefreshPanel.html │ │ │ │ │ │ ├── AutoRefreshPanel.java │ │ │ │ │ │ ├── Refreshable.java │ │ │ │ │ │ └── RemovableAjaxTimerBehavior.java │ │ │ │ │ ├── sample │ │ │ │ │ │ ├── HelloObjectTabPanel.html │ │ │ │ │ │ ├── HelloObjectTabPanel.java │ │ │ │ │ │ ├── SampleFormFocusTabPanel.html │ │ │ │ │ │ └── SampleFormFocusTabPanel.java │ │ │ │ │ ├── search │ │ │ │ │ │ ├── AbstractSearchConfigurationPanel.html │ │ │ │ │ │ ├── AbstractSearchConfigurationPanel.java │ │ │ │ │ │ ├── BasicSearchFilterModel.java │ │ │ │ │ │ ├── DisplayableRenderer.java │ │ │ │ │ │ ├── Property.java │ │ │ │ │ │ ├── SearchPropertiesConfigPanel.html │ │ │ │ │ │ ├── SearchPropertiesConfigPanel.java │ │ │ │ │ │ ├── SwitchablePropertyValuePanel.html │ │ │ │ │ │ ├── SwitchablePropertyValuePanel.java │ │ │ │ │ │ └── filter │ │ │ │ │ │ │ ├── BasicSearchFilter.java │ │ │ │ │ │ │ ├── SearchFilter.java │ │ │ │ │ │ │ └── ValueSearchFilterItem.java │ │ │ │ │ ├── util │ │ │ │ │ │ ├── AjaxCallListenerFactory.java │ │ │ │ │ │ ├── BaseDeprecatedPanel.java │ │ │ │ │ │ ├── BasePageAwarePanel.java │ │ │ │ │ │ ├── CallableResult.java │ │ │ │ │ │ ├── Choiceable.java │ │ │ │ │ │ ├── Editable.java │ │ │ │ │ │ ├── EnableBehaviour.java │ │ │ │ │ │ ├── FocusListComponent.java │ │ │ │ │ │ ├── FocusListInlineMenuHelper.java │ │ │ │ │ │ ├── PageDisabledVisibleBehaviour.java │ │ │ │ │ │ ├── PageVisibleDisabledBehaviour.java │ │ │ │ │ │ ├── RoleAnalysisTablePageable.java │ │ │ │ │ │ ├── RoleMiningProvider.java │ │ │ │ │ │ ├── Selectable.java │ │ │ │ │ │ ├── SelectableBean.java │ │ │ │ │ │ ├── SelectableBeanImpl.java │ │ │ │ │ │ ├── SelectableRow.java │ │ │ │ │ │ ├── SerializableBiConsumer.java │ │ │ │ │ │ ├── SerializableBiFunction.java │ │ │ │ │ │ ├── SerializableConsumer.java │ │ │ │ │ │ ├── SerializableFunction.java │ │ │ │ │ │ ├── SerializableSupplier.java │ │ │ │ │ │ ├── SimplePanel.java │ │ │ │ │ │ ├── SummaryTag.html │ │ │ │ │ │ ├── SummaryTag.java │ │ │ │ │ │ ├── TargetAcceptor.java │ │ │ │ │ │ ├── TargetAndFormAcceptor.java │ │ │ │ │ │ ├── TreeSelectableBean.java │ │ │ │ │ │ ├── Validatable.java │ │ │ │ │ │ ├── VisibleBehaviour.java │ │ │ │ │ │ └── VisibleEnableBehaviour.java │ │ │ │ │ └── wf │ │ │ │ │ │ ├── ApprovalProcessExecutionInformationPanel.html │ │ │ │ │ │ ├── ApprovalProcessExecutionInformationPanel.java │ │ │ │ │ │ ├── ApprovalProcessExecutionInformationPanelTextOnly.html │ │ │ │ │ │ ├── ApprovalProcessExecutionInformationPanelTextOnly.java │ │ │ │ │ │ ├── ApprovalProcessesPreviewPanel.html │ │ │ │ │ │ ├── ApprovalProcessesPreviewPanel.java │ │ │ │ │ │ ├── DecisionsPanel.html │ │ │ │ │ │ ├── DecisionsPanel.java │ │ │ │ │ │ ├── SwitchableApprovalProcessPreviewsPanel.html │ │ │ │ │ │ ├── SwitchableApprovalProcessPreviewsPanel.java │ │ │ │ │ │ ├── WfGuiUtil.java │ │ │ │ │ │ ├── WfHistoryEventDto.java │ │ │ │ │ │ └── processes │ │ │ │ │ │ ├── EmptyProcessDetailsPanel.html │ │ │ │ │ │ ├── EmptyProcessDetailsPanel.java │ │ │ │ │ │ └── itemApproval │ │ │ │ │ │ └── ItemApprovalHistoryPanel.html │ │ │ │ │ ├── model │ │ │ │ │ ├── AbstractWrapperModel.java │ │ │ │ │ ├── ContainerableFromPrismObjectModel.java │ │ │ │ │ ├── ItemWrapperModel.java │ │ │ │ │ ├── LookupPropertyModel.java │ │ │ │ │ ├── PrismContainerValueWrapperModel.java │ │ │ │ │ ├── PrismContainerWrapperHeaderModel.java │ │ │ │ │ ├── PrismContainerWrapperModel.java │ │ │ │ │ ├── PrismPropertyWrapperHeaderModel.java │ │ │ │ │ ├── PrismPropertyWrapperModel.java │ │ │ │ │ ├── PrismReferenceWrapperHeaderModel.java │ │ │ │ │ ├── PrismReferenceWrapperModel.java │ │ │ │ │ └── XmlGregorianCalendarModel.java │ │ │ │ │ ├── page │ │ │ │ │ ├── PageTestNoAuthorizations.html │ │ │ │ │ ├── PageTestNoAuthorizations.java │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── PageAdmin.java │ │ │ │ │ │ ├── archetype │ │ │ │ │ │ │ ├── ArchetypeSummaryPanel.java │ │ │ │ │ │ │ ├── PageArchetypes.html │ │ │ │ │ │ │ └── PageArchetypes.java │ │ │ │ │ │ ├── audit │ │ │ │ │ │ │ ├── AuditChangesPanel.html │ │ │ │ │ │ │ └── AuditChangesPanel.java │ │ │ │ │ │ ├── cases │ │ │ │ │ │ │ ├── CaseSummaryPanel.java │ │ │ │ │ │ │ ├── CaseWorkItemActionsPanel.html │ │ │ │ │ │ │ ├── CaseWorkItemActionsPanel.java │ │ │ │ │ │ │ ├── CaseWorkItemListWithDetailsPanel.html │ │ │ │ │ │ │ ├── CaseWorkItemListWithDetailsPanel.java │ │ │ │ │ │ │ ├── CaseWorkItemsPanel.java │ │ │ │ │ │ │ ├── CaseWorkItemsTableWithDetailsPanel.html │ │ │ │ │ │ │ ├── CaseWorkItemsTableWithDetailsPanel.java │ │ │ │ │ │ │ ├── MyCaseWorkItemsPanel.java │ │ │ │ │ │ │ ├── MyCasesPanel.java │ │ │ │ │ │ │ ├── PageAdminCaseWorkItems.java │ │ │ │ │ │ │ ├── PageAdminCases.java │ │ │ │ │ │ │ ├── PageCaseWorkItem.html │ │ │ │ │ │ │ ├── PageCaseWorkItem.java │ │ │ │ │ │ │ ├── PageCaseWorkItems.html │ │ │ │ │ │ │ ├── PageCaseWorkItems.java │ │ │ │ │ │ │ ├── PageCaseWorkItemsAll.java │ │ │ │ │ │ │ ├── PageCaseWorkItemsAllocatedToMe.java │ │ │ │ │ │ │ ├── PageCases.html │ │ │ │ │ │ │ ├── PageCases.java │ │ │ │ │ │ │ └── PageWorkItemsClaimable.java │ │ │ │ │ │ ├── certification │ │ │ │ │ │ │ ├── CertDecisionHelper.java │ │ │ │ │ │ │ ├── CertDefinitionSummaryPanel.java │ │ │ │ │ │ │ ├── DefinitionBasicPanel.html │ │ │ │ │ │ │ ├── DefinitionBasicPanel.java │ │ │ │ │ │ │ ├── DefinitionScopePanel.html │ │ │ │ │ │ │ ├── DefinitionScopePanel.java │ │ │ │ │ │ │ ├── DefinitionStagePanel.html │ │ │ │ │ │ │ ├── DefinitionStagePanel.java │ │ │ │ │ │ │ ├── DefinitionStagesPanel.html │ │ │ │ │ │ │ ├── DefinitionStagesPanel.java │ │ │ │ │ │ │ ├── DefinitionXmlPanel.html │ │ │ │ │ │ │ ├── DefinitionXmlPanel.java │ │ │ │ │ │ │ ├── PageCertCampaign.html │ │ │ │ │ │ │ ├── PageCertCampaign.java │ │ │ │ │ │ │ ├── StageEditorPanel.html │ │ │ │ │ │ │ ├── StageEditorPanel.java │ │ │ │ │ │ │ ├── dto │ │ │ │ │ │ │ │ ├── AccessCertificationReviewerDto.java │ │ │ │ │ │ │ │ ├── CertCampaignDto.java │ │ │ │ │ │ │ │ ├── CertCampaignListItemDto.java │ │ │ │ │ │ │ │ ├── CertCampaignStateFilter.java │ │ │ │ │ │ │ │ ├── CertCampaignsSearchDto.java │ │ │ │ │ │ │ │ ├── CertCaseDto.java │ │ │ │ │ │ │ │ ├── CertCaseOrWorkItemDto.java │ │ │ │ │ │ │ │ ├── CertDefinitionDto.java │ │ │ │ │ │ │ │ ├── CertWorkItemDto.java │ │ │ │ │ │ │ │ ├── DefinitionScopeDto.java │ │ │ │ │ │ │ │ ├── DefinitionScopeObjectType.java │ │ │ │ │ │ │ │ ├── ManagerSearchDto.java │ │ │ │ │ │ │ │ ├── SearchingUtils.java │ │ │ │ │ │ │ │ └── StageDefinitionDto.java │ │ │ │ │ │ │ └── handlers │ │ │ │ │ │ │ │ ├── CertGuiHandler.java │ │ │ │ │ │ │ │ ├── CertGuiHandlerRegistry.java │ │ │ │ │ │ │ │ └── DirectAssignmentCertGuiHandler.java │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ │ ├── InternalsCachePanel.html │ │ │ │ │ │ │ ├── InternalsCachePanel.java │ │ │ │ │ │ │ ├── InternalsClockPanel.html │ │ │ │ │ │ │ ├── InternalsClockPanel.java │ │ │ │ │ │ │ ├── InternalsConfigPanel.html │ │ │ │ │ │ │ ├── InternalsConfigPanel.java │ │ │ │ │ │ │ ├── InternalsCountersPanel.html │ │ │ │ │ │ │ ├── InternalsCountersPanel.java │ │ │ │ │ │ │ ├── InternalsDebugUtilPanel.html │ │ │ │ │ │ │ ├── InternalsDebugUtilPanel.java │ │ │ │ │ │ │ ├── InternalsLoggedInUsersPanel.html │ │ │ │ │ │ │ ├── InternalsLoggedInUsersPanel.java │ │ │ │ │ │ │ ├── InternalsMemoryPanel.html │ │ │ │ │ │ │ ├── InternalsMemoryPanel.java │ │ │ │ │ │ │ ├── InternalsPerformancePanel.html │ │ │ │ │ │ │ ├── InternalsPerformancePanel.java │ │ │ │ │ │ │ ├── InternalsThreadsPanel.html │ │ │ │ │ │ │ ├── InternalsThreadsPanel.java │ │ │ │ │ │ │ ├── InternalsTracesPanel.html │ │ │ │ │ │ │ ├── InternalsTracesPanel.java │ │ │ │ │ │ │ ├── PageAbout.html │ │ │ │ │ │ │ ├── PageAbout.java │ │ │ │ │ │ │ ├── PageAction.html │ │ │ │ │ │ │ ├── PageAction.java │ │ │ │ │ │ │ ├── PageAdminConfiguration.java │ │ │ │ │ │ │ ├── PageAuthorizationPlayground.html │ │ │ │ │ │ │ ├── PageAuthorizationPlayground.java │ │ │ │ │ │ │ ├── PageDebugList.html │ │ │ │ │ │ │ ├── PageDebugList.java │ │ │ │ │ │ │ ├── PageDebugView.html │ │ │ │ │ │ │ ├── PageDebugView.java │ │ │ │ │ │ │ ├── PageEvaluateMapping.html │ │ │ │ │ │ │ ├── PageEvaluateMapping.java │ │ │ │ │ │ │ ├── PageImportObject.html │ │ │ │ │ │ │ ├── PageImportObject.java │ │ │ │ │ │ │ ├── PageInternals.html │ │ │ │ │ │ │ ├── PageInternals.java │ │ │ │ │ │ │ ├── PageRepositoryQuery.html │ │ │ │ │ │ │ ├── PageRepositoryQuery.java │ │ │ │ │ │ │ ├── PageTraceView.html │ │ │ │ │ │ │ ├── PageTraceView.java │ │ │ │ │ │ │ ├── SamplesChoice.java │ │ │ │ │ │ │ ├── component │ │ │ │ │ │ │ │ ├── ChooseTypePanel.html │ │ │ │ │ │ │ │ ├── ChooseTypePanel.java │ │ │ │ │ │ │ │ ├── DebugButtonPanel.html │ │ │ │ │ │ │ │ ├── DebugButtonPanel.java │ │ │ │ │ │ │ │ ├── DebugSearchFragment.java │ │ │ │ │ │ │ │ ├── EmptyOnBlurAjaxFormUpdatingBehaviour.java │ │ │ │ │ │ │ │ ├── EmptyOnChangeAjaxFormUpdatingBehavior.java │ │ │ │ │ │ │ │ ├── HeaderMenuAction.java │ │ │ │ │ │ │ │ ├── ImportOptionsPanel.html │ │ │ │ │ │ │ │ ├── ImportOptionsPanel.java │ │ │ │ │ │ │ │ ├── PageDebugDownloadBehaviour.java │ │ │ │ │ │ │ │ ├── QueryConverterPanel.html │ │ │ │ │ │ │ │ ├── QueryConverterPanel.java │ │ │ │ │ │ │ │ ├── QueryPlaygroundPanel.html │ │ │ │ │ │ │ │ ├── QueryPlaygroundPanel.java │ │ │ │ │ │ │ │ └── RoleMiningExportOperation.java │ │ │ │ │ │ │ └── dto │ │ │ │ │ │ │ │ ├── BulkActionDto.java │ │ │ │ │ │ │ │ ├── DebugConfDialogDto.java │ │ │ │ │ │ │ │ ├── DebugObjectItem.java │ │ │ │ │ │ │ │ ├── ExecuteMappingDto.java │ │ │ │ │ │ │ │ ├── InternalsConfigDto.java │ │ │ │ │ │ │ │ ├── QueryDto.java │ │ │ │ │ │ │ │ └── RepoQueryDto.java │ │ │ │ │ │ ├── dto │ │ │ │ │ │ │ ├── ObjectViewDto.java │ │ │ │ │ │ │ └── TraceViewDto.java │ │ │ │ │ │ ├── home │ │ │ │ │ │ │ ├── DashboardWidgetDto.java │ │ │ │ │ │ │ ├── PageAdminHome.java │ │ │ │ │ │ │ ├── PageDashboard.java │ │ │ │ │ │ │ ├── PageDashboardAdmin.html │ │ │ │ │ │ │ ├── PageDashboardConfigurable.html │ │ │ │ │ │ │ ├── PageDashboardConfigurable.java │ │ │ │ │ │ │ ├── PageDashboardInfo.html │ │ │ │ │ │ │ ├── PageDashboardInfo.java │ │ │ │ │ │ │ ├── component │ │ │ │ │ │ │ │ ├── AsyncDashboardPanel.html │ │ │ │ │ │ │ │ ├── AsyncDashboardPanel.java │ │ │ │ │ │ │ │ ├── AuthenticationInfoPanel.html │ │ │ │ │ │ │ │ ├── AuthenticationInfoPanel.java │ │ │ │ │ │ │ │ ├── DashboardPanel.html │ │ │ │ │ │ │ │ ├── DashboardPanel.java │ │ │ │ │ │ │ │ ├── MyAccountsPanel.html │ │ │ │ │ │ │ │ ├── MyAccountsPanel.java │ │ │ │ │ │ │ │ ├── MyAssignmentsPanel.html │ │ │ │ │ │ │ │ ├── MyAssignmentsPanel.java │ │ │ │ │ │ │ │ ├── MyPasswordQuestionsPanel.html │ │ │ │ │ │ │ │ ├── MyPasswordQuestionsPanel.java │ │ │ │ │ │ │ │ ├── PersonalInfoPanel.html │ │ │ │ │ │ │ │ ├── PersonalInfoPanel.java │ │ │ │ │ │ │ │ ├── SystemInfoPanel.html │ │ │ │ │ │ │ │ └── SystemInfoPanel.java │ │ │ │ │ │ │ └── dto │ │ │ │ │ │ │ │ ├── AccountCallableResult.java │ │ │ │ │ │ │ │ ├── AssignmentItemDto.java │ │ │ │ │ │ │ │ ├── PasswordAccountDto.java │ │ │ │ │ │ │ │ ├── PasswordQuestionsDto.java │ │ │ │ │ │ │ │ ├── PersonalInfoDto.java │ │ │ │ │ │ │ │ ├── SecurityQuestionAnswerDTO.java │ │ │ │ │ │ │ │ └── SimpleAccountDto.java │ │ │ │ │ │ ├── objectCollection │ │ │ │ │ │ │ ├── ObjectCollectionSummaryPanel.java │ │ │ │ │ │ │ ├── PageObjectCollections.html │ │ │ │ │ │ │ └── PageObjectCollections.java │ │ │ │ │ │ ├── objectTemplate │ │ │ │ │ │ │ ├── ObjectTemplateSummaryPanel.java │ │ │ │ │ │ │ ├── PageObjectTemplates.html │ │ │ │ │ │ │ └── PageObjectTemplates.java │ │ │ │ │ │ ├── orgs │ │ │ │ │ │ │ ├── AbstractOrgTabPanel.html │ │ │ │ │ │ │ ├── AbstractOrgTabPanel.java │ │ │ │ │ │ │ ├── MidpointNestedTree.html │ │ │ │ │ │ │ ├── MidpointNestedTree.java │ │ │ │ │ │ │ ├── MidpointSubtree.html │ │ │ │ │ │ │ ├── MidpointSubtree.java │ │ │ │ │ │ │ ├── OrgTreeAssignablePanel.html │ │ │ │ │ │ │ ├── OrgTreeAssignablePanel.java │ │ │ │ │ │ │ ├── OrgTreeFolderContent.html │ │ │ │ │ │ │ ├── OrgTreeFolderContent.java │ │ │ │ │ │ │ ├── OrgTreePanel.html │ │ │ │ │ │ │ ├── OrgTreePanel.java │ │ │ │ │ │ │ ├── PageOrgTree.html │ │ │ │ │ │ │ ├── PageOrgTree.java │ │ │ │ │ │ │ ├── PageOrgs.html │ │ │ │ │ │ │ └── PageOrgs.java │ │ │ │ │ │ ├── reports │ │ │ │ │ │ │ ├── PageAuditLogDetails.html │ │ │ │ │ │ │ ├── PageAuditLogDetails.java │ │ │ │ │ │ │ ├── PageAuditLogViewer.html │ │ │ │ │ │ │ ├── PageAuditLogViewer.java │ │ │ │ │ │ │ ├── PageCreatedReports.html │ │ │ │ │ │ │ ├── PageCreatedReports.java │ │ │ │ │ │ │ ├── PageReports.html │ │ │ │ │ │ │ ├── PageReports.java │ │ │ │ │ │ │ ├── ReportDownloadHelper.java │ │ │ │ │ │ │ ├── ReportSummaryPanel.java │ │ │ │ │ │ │ ├── component │ │ │ │ │ │ │ │ ├── AceEditorPanel.html │ │ │ │ │ │ │ │ ├── AceEditorPanel.java │ │ │ │ │ │ │ │ ├── AuditLogViewerContext.java │ │ │ │ │ │ │ │ ├── AuditLogViewerPanel.java │ │ │ │ │ │ │ │ ├── ConvertingMultiValueChoosePanel.java │ │ │ │ │ │ │ │ ├── CreatedReportFragment.java │ │ │ │ │ │ │ │ ├── DeltaColumn.java │ │ │ │ │ │ │ │ ├── DeltaColumnPanel.html │ │ │ │ │ │ │ │ ├── DeltaColumnPanel.java │ │ │ │ │ │ │ │ ├── DownloadButtonPanel.html │ │ │ │ │ │ │ │ ├── DownloadButtonPanel.java │ │ │ │ │ │ │ │ ├── ImportReportPopupPanel.html │ │ │ │ │ │ │ │ ├── ImportReportPopupPanel.java │ │ │ │ │ │ │ │ ├── ReportObjectsListPanel.java │ │ │ │ │ │ │ │ ├── RunReportPopupPanel.html │ │ │ │ │ │ │ │ ├── RunReportPopupPanel.java │ │ │ │ │ │ │ │ ├── SearchFilterConfigurationPanel.html │ │ │ │ │ │ │ │ ├── SearchFilterConfigurationPanel.java │ │ │ │ │ │ │ │ ├── SimpleAceEditorPanel.html │ │ │ │ │ │ │ │ ├── SimpleAceEditorPanel.java │ │ │ │ │ │ │ │ └── SingleValueChoosePanel.java │ │ │ │ │ │ │ └── dto │ │ │ │ │ │ │ │ ├── AuditEventRecordItemValueDto.java │ │ │ │ │ │ │ │ ├── AuditSearchDto.java │ │ │ │ │ │ │ │ ├── ReportDeleteDialogDto.java │ │ │ │ │ │ │ │ ├── ReportOutputSearchDto.java │ │ │ │ │ │ │ │ └── ReportSearchDto.java │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ ├── CapabilitiesDto.java │ │ │ │ │ │ │ ├── PageConnectorHosts.html │ │ │ │ │ │ │ ├── PageConnectorHosts.java │ │ │ │ │ │ │ ├── PageImportResource.java │ │ │ │ │ │ │ ├── PageResourceVisualization.html │ │ │ │ │ │ │ ├── PageResourceVisualization.java │ │ │ │ │ │ │ ├── PageResources.html │ │ │ │ │ │ │ ├── PageResources.java │ │ │ │ │ │ │ ├── ResourceContentPanel.html │ │ │ │ │ │ │ ├── ResourceContentPanel.java │ │ │ │ │ │ │ ├── ResourceContentRepositoryPanel.java │ │ │ │ │ │ │ ├── ResourceContentResourcePanel.java │ │ │ │ │ │ │ ├── ResourceSummaryPanel.java │ │ │ │ │ │ │ ├── ResourceTaskFlavor.java │ │ │ │ │ │ │ ├── ResourceTaskFlavors.java │ │ │ │ │ │ │ ├── ResourceWizardModel.java │ │ │ │ │ │ │ ├── ShadowSummaryPanel.java │ │ │ │ │ │ │ ├── SynchronizationTaskFlavor.java │ │ │ │ │ │ │ ├── component │ │ │ │ │ │ │ │ ├── TestConnectionMessagesPanel.html │ │ │ │ │ │ │ │ ├── TestConnectionMessagesPanel.java │ │ │ │ │ │ │ │ ├── TestConnectionResultPanel.html │ │ │ │ │ │ │ │ └── TestConnectionResultPanel.java │ │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ │ └── dto │ │ │ │ │ │ │ │ │ ├── AccountContentSearchDto.java │ │ │ │ │ │ │ │ │ └── ResourceContentSearchDto.java │ │ │ │ │ │ │ └── dto │ │ │ │ │ │ │ │ ├── ObjectClassDataProvider.java │ │ │ │ │ │ │ │ ├── ObjectClassDetailsDto.java │ │ │ │ │ │ │ │ ├── ObjectClassDto.java │ │ │ │ │ │ │ │ ├── ResourceConfigurationDto.java │ │ │ │ │ │ │ │ └── ResourceVisualizationDto.java │ │ │ │ │ │ ├── roles │ │ │ │ │ │ │ ├── PageRoles.html │ │ │ │ │ │ │ ├── PageRoles.java │ │ │ │ │ │ │ ├── SearchBoxConfigurationHelper.java │ │ │ │ │ │ │ └── component │ │ │ │ │ │ │ │ └── RoleSummaryPanel.java │ │ │ │ │ │ ├── server │ │ │ │ │ │ │ ├── CasesTablePanel.java │ │ │ │ │ │ │ ├── LivesyncTokenEditorPanel.html │ │ │ │ │ │ │ ├── LivesyncTokenEditorPanel.java │ │ │ │ │ │ │ ├── PageAdminTasks.java │ │ │ │ │ │ │ ├── PageNodes.html │ │ │ │ │ │ │ ├── PageNodes.java │ │ │ │ │ │ │ ├── PageTasks.html │ │ │ │ │ │ │ ├── PageTasks.java │ │ │ │ │ │ │ ├── PageTasksCertScheduling.java │ │ │ │ │ │ │ ├── RefreshableTabPanel.java │ │ │ │ │ │ │ ├── SynchronizationSituationTransitionPanel.html │ │ │ │ │ │ │ ├── SynchronizationSituationTransitionPanel.java │ │ │ │ │ │ │ ├── TaskDisplayUtil.java │ │ │ │ │ │ │ ├── TaskExecutionPanel.html │ │ │ │ │ │ │ ├── TaskExecutionPanel.java │ │ │ │ │ │ │ ├── TaskExecutionProgress.java │ │ │ │ │ │ │ ├── TaskProgressPanel.html │ │ │ │ │ │ │ ├── TaskProgressPanel.java │ │ │ │ │ │ │ ├── TaskSummaryPanel.html │ │ │ │ │ │ │ ├── TaskSummaryPanel.java │ │ │ │ │ │ │ ├── TaskTablePanel.java │ │ │ │ │ │ │ └── dto │ │ │ │ │ │ │ │ ├── ActivitiesItemProcessingDto.java │ │ │ │ │ │ │ │ ├── ActivitiesStatisticsDto.java │ │ │ │ │ │ │ │ ├── ActivityItemProcessingDto.java │ │ │ │ │ │ │ │ ├── ApprovalOutcomeIcon.java │ │ │ │ │ │ │ │ ├── GuiTaskResultStatus.java │ │ │ │ │ │ │ │ ├── OperationResultStatusPresentationProperties.java │ │ │ │ │ │ │ │ ├── ProcessedItemDto.java │ │ │ │ │ │ │ │ ├── TaskDtoExecutionState.java │ │ │ │ │ │ │ │ ├── TaskErrorSelectableBeanImpl.java │ │ │ │ │ │ │ │ ├── TaskErrorSelectableBeanImplOld.java │ │ │ │ │ │ │ │ └── TaskInformationUtil.java │ │ │ │ │ │ ├── services │ │ │ │ │ │ │ ├── PageServices.html │ │ │ │ │ │ │ └── PageServices.java │ │ │ │ │ │ ├── shadows │ │ │ │ │ │ │ ├── ChooseTaskExecutionModePopup.html │ │ │ │ │ │ │ ├── ChooseTaskExecutionModePopup.java │ │ │ │ │ │ │ ├── PageShadows.html │ │ │ │ │ │ │ ├── PageShadows.java │ │ │ │ │ │ │ └── ShadowTablePanel.java │ │ │ │ │ │ ├── users │ │ │ │ │ │ │ ├── PageUsers.html │ │ │ │ │ │ │ ├── PageUsers.java │ │ │ │ │ │ │ ├── PageXmlDataReview.html │ │ │ │ │ │ │ ├── PageXmlDataReview.java │ │ │ │ │ │ │ ├── component │ │ │ │ │ │ │ │ ├── AssignmentInfoDto.java │ │ │ │ │ │ │ │ ├── AssignmentsInfoDialog.html │ │ │ │ │ │ │ │ ├── AssignmentsInfoDialog.java │ │ │ │ │ │ │ │ ├── ContactDataProvider.java │ │ │ │ │ │ │ │ ├── ContactOrgUnitPanel.html │ │ │ │ │ │ │ │ ├── ContactOrgUnitPanel.java │ │ │ │ │ │ │ │ ├── ContactUserPanel.html │ │ │ │ │ │ │ │ ├── ContactUserPanel.java │ │ │ │ │ │ │ │ ├── DelegationTargetLimitationDialog.java │ │ │ │ │ │ │ │ ├── Delete.png │ │ │ │ │ │ │ │ ├── ExecuteChangeOptionsDto.java │ │ │ │ │ │ │ │ ├── ExecuteChangeOptionsPanel.html │ │ │ │ │ │ │ │ ├── ExecuteChangeOptionsPanel.java │ │ │ │ │ │ │ │ ├── MergeObjectDetailsPanel.html │ │ │ │ │ │ │ │ ├── MergeObjectDetailsPanel.java │ │ │ │ │ │ │ │ ├── MergeObjectsPanel.html │ │ │ │ │ │ │ │ ├── MergeObjectsPanel.java │ │ │ │ │ │ │ │ ├── ServiceSummaryPanel.java │ │ │ │ │ │ │ │ └── UserSummaryPanel.java │ │ │ │ │ │ │ └── dto │ │ │ │ │ │ │ │ ├── ContactOrgUnitDto.java │ │ │ │ │ │ │ │ ├── ContactTreeDto.java │ │ │ │ │ │ │ │ ├── ContactUserDto.java │ │ │ │ │ │ │ │ ├── FocusSubwrapperDto.java │ │ │ │ │ │ │ │ ├── TreeStateSet.java │ │ │ │ │ │ │ │ └── UserDtoStatus.java │ │ │ │ │ │ └── workflow │ │ │ │ │ │ │ ├── CaseWorkItemSummaryPanel.java │ │ │ │ │ │ │ ├── EvaluatedTriggerGroupListPanel.html │ │ │ │ │ │ │ ├── EvaluatedTriggerGroupListPanel.java │ │ │ │ │ │ │ ├── EvaluatedTriggerGroupPanel.html │ │ │ │ │ │ │ ├── EvaluatedTriggerGroupPanel.java │ │ │ │ │ │ │ ├── EvaluatedTriggerPanel.html │ │ │ │ │ │ │ ├── EvaluatedTriggerPanel.java │ │ │ │ │ │ │ ├── InformationListPanel.html │ │ │ │ │ │ │ ├── InformationListPanel.java │ │ │ │ │ │ │ ├── InformationPanel.html │ │ │ │ │ │ │ ├── InformationPanel.java │ │ │ │ │ │ │ ├── PageAdminWorkItems.java │ │ │ │ │ │ │ ├── PageAttorneySelection.html │ │ │ │ │ │ │ ├── PageAttorneySelection.java │ │ │ │ │ │ │ ├── PageProcessInstances.html │ │ │ │ │ │ │ ├── PageWorkItemsAttorney.java │ │ │ │ │ │ │ ├── ProcessInstancesPanel.html │ │ │ │ │ │ │ ├── ProcessInstancesPanel.java │ │ │ │ │ │ │ ├── WorkItemDetailsPanel.html │ │ │ │ │ │ │ ├── WorkItemDetailsPanel.java │ │ │ │ │ │ │ ├── WorkItemsPageType.java │ │ │ │ │ │ │ └── dto │ │ │ │ │ │ │ ├── ApprovalProcessExecutionInformationDto.java │ │ │ │ │ │ │ ├── ApprovalStageExecutionInformationDto.java │ │ │ │ │ │ │ ├── ApproverEngagementDto.java │ │ │ │ │ │ │ ├── DecisionDto.java │ │ │ │ │ │ │ ├── EvaluatedTriggerDto.java │ │ │ │ │ │ │ ├── EvaluatedTriggerGroupDto.java │ │ │ │ │ │ │ └── ProcessInstanceDto.java │ │ │ │ │ ├── error │ │ │ │ │ │ ├── PageError.html │ │ │ │ │ │ ├── PageError.java │ │ │ │ │ │ ├── PageError401.java │ │ │ │ │ │ ├── PageError403.java │ │ │ │ │ │ ├── PageError404.java │ │ │ │ │ │ ├── PageError410.java │ │ │ │ │ │ ├── PageOperationResult.html │ │ │ │ │ │ └── PageOperationResult.java │ │ │ │ │ └── self │ │ │ │ │ │ ├── PageAccountActivation.html │ │ │ │ │ │ ├── PageAccountActivation.java │ │ │ │ │ │ ├── PagePostAuthentication.html │ │ │ │ │ │ ├── PagePostAuthentication.java │ │ │ │ │ │ ├── PageSelf.java │ │ │ │ │ │ ├── PageSelfConsents.html │ │ │ │ │ │ ├── PageSelfConsents.java │ │ │ │ │ │ ├── PageSelfProfile.java │ │ │ │ │ │ ├── component │ │ │ │ │ │ ├── AssignmentConflictPanel.html │ │ │ │ │ │ ├── AssignmentConflictPanel.java │ │ │ │ │ │ ├── SecurityQuestionsPanel.html │ │ │ │ │ │ └── SecurityQuestionsPanel.java │ │ │ │ │ │ └── dto │ │ │ │ │ │ ├── AssignmentConflictDto.java │ │ │ │ │ │ ├── AssignmentViewType.java │ │ │ │ │ │ ├── ConflictDto.java │ │ │ │ │ │ └── LinkDto.java │ │ │ │ │ ├── security │ │ │ │ │ ├── LoggingRequestCycleListener.java │ │ │ │ │ ├── MidPointApplication.java │ │ │ │ │ ├── MidPointAuthWebSession.java │ │ │ │ │ ├── MidPointObjectChecker.java │ │ │ │ │ ├── StaticSpringResourcesMarkupFilter.java │ │ │ │ │ ├── WebApplicationConfiguration.java │ │ │ │ │ ├── WicketConfigurator.java │ │ │ │ │ ├── WicketNoSerializationConfigurator.java │ │ │ │ │ └── util │ │ │ │ │ │ ├── GuiAuthorizationConstants.java │ │ │ │ │ │ ├── SecurityQuestionDto.java │ │ │ │ │ │ └── SecurityUtils.java │ │ │ │ │ ├── session │ │ │ │ │ ├── AuditLogStorage.java │ │ │ │ │ ├── CertCampaignsStorage.java │ │ │ │ │ ├── CertDecisionsStorage.java │ │ │ │ │ ├── GenericPageStorage.java │ │ │ │ │ ├── MemberPanelStorage.java │ │ │ │ │ ├── ObjectDetailsStorage.java │ │ │ │ │ ├── ObjectListStorage.java │ │ │ │ │ ├── OrgStructurePanelStorage.java │ │ │ │ │ ├── OrgTabPanelStorage.java │ │ │ │ │ ├── OrgTreeStateStorage.java │ │ │ │ │ ├── PageStorage.java │ │ │ │ │ ├── ReportsStorage.java │ │ │ │ │ ├── ResourceContentStorage.java │ │ │ │ │ ├── ResourcesStorage.java │ │ │ │ │ ├── SessionStorage.java │ │ │ │ │ └── UserProfileStorage.java │ │ │ │ │ └── util │ │ │ │ │ ├── Base64Model.java │ │ │ │ │ ├── DateValidator.java │ │ │ │ │ ├── ExactMatchMountedMapper.java │ │ │ │ │ ├── ExpressionUtil.java │ │ │ │ │ ├── ExpressionValidator.java │ │ │ │ │ ├── InfoTooltipBehavior.java │ │ │ │ │ ├── LocalizationMessageComparator.java │ │ │ │ │ ├── MidPointProfilingServletFilter.java │ │ │ │ │ ├── MidPointResourceStreamLocator.java │ │ │ │ │ ├── MidPointStringResourceLoader.java │ │ │ │ │ ├── NewWindowNotifyingBehavior.java │ │ │ │ │ ├── ObjectTypeGuiDescriptor.java │ │ │ │ │ ├── OnePageParameterEncoder.java │ │ │ │ │ ├── SchrodingerComponentInitListener.java │ │ │ │ │ ├── StringResourceChoiceRenderer.java │ │ │ │ │ ├── TaskOperationUtils.java │ │ │ │ │ ├── TooltipBehavior.java │ │ │ │ │ ├── WebXmlUtil.java │ │ │ │ │ └── validation │ │ │ │ │ ├── MidpointFormValidator.java │ │ │ │ │ ├── MidpointFormValidatorImpl.java │ │ │ │ │ ├── MidpointFormValidatorRegistry.java │ │ │ │ │ └── SimpleValidationError.java │ │ │ └── resources │ │ │ │ ├── DejaVuSans.ttf │ │ │ │ ├── application.yml │ │ │ │ ├── banner.txt │ │ │ │ ├── com │ │ │ │ └── evolveum │ │ │ │ │ └── midpoint │ │ │ │ │ └── web │ │ │ │ │ └── page │ │ │ │ │ └── admin │ │ │ │ │ └── configuration │ │ │ │ │ ├── authorization-samples │ │ │ │ │ ├── full-autz.additional-authorizations.xml.data │ │ │ │ │ ├── no-autz.additional-authorizations.xml.data │ │ │ │ │ └── read-modify-caribbean.additional-authorizations.xml.data │ │ │ │ │ ├── mapping-samples │ │ │ │ │ ├── FullName_Delta.map.xml.data │ │ │ │ │ ├── FullName_Delta.req.xml.data │ │ │ │ │ ├── FullName_Delta_Cond.map.xml.data │ │ │ │ │ ├── FullName_Delta_Cond.req.xml.data │ │ │ │ │ ├── FullName_Delta_Ref.map.xml.data │ │ │ │ │ ├── FullName_Delta_Ref.req.xml.data │ │ │ │ │ ├── FullName_NoDelta.map.xml.data │ │ │ │ │ ├── FullName_NoDelta.req.xml.data │ │ │ │ │ ├── OrgName.map.xml.data │ │ │ │ │ └── OrgName.req.xml.data │ │ │ │ │ └── query-samples │ │ │ │ │ ├── ObjectReferenceType_RoleMembershipRefsTargetingSuperuser.xml.data │ │ │ │ │ ├── ObjectType_AllObjectsInASubtree.xml.data │ │ │ │ │ ├── ObjectType_AllObjectsInAnOrg.xml.data │ │ │ │ │ ├── OrgType_AllRootOrgs.xml.data │ │ │ │ │ ├── OrgType_OrgOfType1.xml.data │ │ │ │ │ ├── ShadowType_ShadowsOnGivenResource.xml.data │ │ │ │ │ ├── UserType_AllUsers.xml.data │ │ │ │ │ ├── UserType_First10UsersStartingWithA.xml.data │ │ │ │ │ ├── UserType_SpecifiedCostCenters.xml.data │ │ │ │ │ ├── UserType_UsersContainingJack.xml.data │ │ │ │ │ ├── UserType_UsersNamedJack.xml.data │ │ │ │ │ ├── UserType_UsersStartingWithA.xml.data │ │ │ │ │ ├── UserType_UsersThatHaveARole.xml.data │ │ │ │ │ ├── UserType_UsersThatHaveAssignedRole.xml.data │ │ │ │ │ ├── UserType_UsersWithAGivenMailDomain.xml.data │ │ │ │ │ ├── UserType_UsersWithShadowOnGivenResource.xml.data │ │ │ │ │ └── readme.txt │ │ │ │ ├── ctx-init.xml │ │ │ │ ├── ctx-overlay.xml │ │ │ │ ├── ctx-webapp.xml │ │ │ │ ├── jar-signing.cer │ │ │ │ ├── logback-alt.xml │ │ │ │ ├── logback.xml │ │ │ │ ├── org.identityconnectors.common.logging │ │ │ │ └── static │ │ │ │ ├── css │ │ │ │ ├── font-evosome.css │ │ │ │ └── overlay.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── fonts │ │ │ │ ├── font-evosome.eot │ │ │ │ ├── font-evosome.svg │ │ │ │ ├── font-evosome.ttf │ │ │ │ ├── font-evosome.woff │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ ├── img │ │ │ │ ├── logo.jpg │ │ │ │ └── placeholder.png │ │ │ │ ├── js │ │ │ │ └── overlay.js │ │ │ │ └── status.html │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ ├── gui │ │ │ │ ├── MidScaleGuiTest.java │ │ │ │ ├── TestIntegrationObjectWrapperFactory.java │ │ │ │ ├── TestPageAuthorizationPlayground.java │ │ │ │ ├── TestPageOrg.java │ │ │ │ ├── TestPageRole.java │ │ │ │ ├── TestPageService.java │ │ │ │ ├── TestPageShadow.java │ │ │ │ ├── TestPageSystemConfiguration.java │ │ │ │ ├── TestPageUser.java │ │ │ │ ├── TestWrapperDelta.java │ │ │ │ └── test │ │ │ │ │ └── TestMidPointSpringApplication.java │ │ │ │ └── web │ │ │ │ ├── AbstractGuiIntegrationTest.java │ │ │ │ ├── AbstractGuiUnitTest.java │ │ │ │ ├── AbstractInitializedGuiIntegrationTest.java │ │ │ │ ├── AdminGuiTestConstants.java │ │ │ │ ├── ObjectWrapperTest.java │ │ │ │ ├── PageLoginTest.java │ │ │ │ ├── RequestAccessTest.java │ │ │ │ ├── SpringApplicationContextTest.java │ │ │ │ ├── TestCleanStartup.java │ │ │ │ ├── TestPageMounter.java │ │ │ │ ├── TestUnitObjectWrapperFactory.java │ │ │ │ └── WrapperTestUtil.java │ │ │ └── resources │ │ │ ├── application.yml │ │ │ ├── common │ │ │ ├── org-monkey-island.xml │ │ │ ├── resource-dummy-initialized.xml │ │ │ ├── resource-dummy.xml │ │ │ ├── role-enduser.xml │ │ │ ├── role-mapmaker.xml │ │ │ ├── role-superuser.xml │ │ │ ├── security-policy.xml │ │ │ ├── shadow-account-jack-dummy.xml │ │ │ ├── system-configuration.xml │ │ │ ├── user-administrator.xml │ │ │ ├── user-empty.xml │ │ │ ├── user-jack-repo.xml │ │ │ ├── user-jack.xml │ │ │ └── value-policy.xml │ │ │ ├── ctx-admin-gui-test-main.xml │ │ │ ├── delta │ │ │ └── user-elaine.xml │ │ │ ├── keystore │ │ │ ├── logback-test.xml │ │ │ ├── midScale │ │ │ ├── archetype-teacher.xml │ │ │ ├── org-struct.xml │ │ │ └── users.xml │ │ │ ├── schema │ │ │ ├── midscale.xsd │ │ │ └── piracy.xsd │ │ │ ├── security │ │ │ ├── role-authorization-1.xml │ │ │ ├── role-authorization-2.xml │ │ │ ├── role-ui-allow-all.xml │ │ │ ├── role-ui-deny-all.xml │ │ │ └── role-ui-deny-allow.xml │ │ │ └── wrapper │ │ │ ├── role-prop-read-all-modify-some-user.xml │ │ │ └── role-prop-read-some-modify-some-user.xml │ ├── testng-integration.xml │ ├── testng-perf.xml │ ├── testng-unit.xml │ ├── webpack.common.js │ ├── webpack.config.js │ ├── webpack.development.js │ └── webpack.production.js ├── midpoint-jar │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── banner.txt └── pom.xml ├── icf-connectors ├── dummy-connector-fake │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── evolveum │ │ └── icf │ │ └── dummy │ │ └── connector │ │ ├── DummyConfiguration.java │ │ ├── DummyConnector.java │ │ └── DummyFilterTranslator.java ├── dummy-connector │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── evolveum │ │ │ └── icf │ │ │ └── dummy │ │ │ └── connector │ │ │ ├── AbstractBaseDummyConnector.java │ │ │ ├── AbstractModernObjectDummyConnector.java │ │ │ ├── AbstractObjectDummyConnector.java │ │ │ ├── DummyConfiguration.java │ │ │ ├── DummyConnector.java │ │ │ ├── DummyConnectorLegacyUpdate.java │ │ │ ├── DummyConnectorPure.java │ │ │ ├── DummyConnectorScriptRunner.java │ │ │ ├── DummyFilterTranslator.java │ │ │ └── Utils.java │ │ └── resources │ │ └── com │ │ └── evolveum │ │ └── icf │ │ └── dummy │ │ └── connector │ │ └── Messages.properties ├── dummy-resource │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── icf │ │ │ │ └── dummy │ │ │ │ └── resource │ │ │ │ ├── BreakMode.java │ │ │ │ ├── ConflictException.java │ │ │ │ ├── ConnectorOperationHook.java │ │ │ │ ├── DummyAccount.java │ │ │ │ ├── DummyAttributeDefinition.java │ │ │ │ ├── DummyDelta.java │ │ │ │ ├── DummyDeltaType.java │ │ │ │ ├── DummyGenericObject.java │ │ │ │ ├── DummyGroup.java │ │ │ │ ├── DummyObject.java │ │ │ │ ├── DummyObjectClass.java │ │ │ │ ├── DummyObjectClassInfo.java │ │ │ │ ├── DummyOrg.java │ │ │ │ ├── DummyPrivilege.java │ │ │ │ ├── DummyResource.java │ │ │ │ ├── DummySyncStyle.java │ │ │ │ ├── HierarchicalName.java │ │ │ │ ├── HierarchySupport.java │ │ │ │ ├── HookRegistry.java │ │ │ │ ├── LinkClassDefinition.java │ │ │ │ ├── LinkDefinition.java │ │ │ │ ├── LinkStore.java │ │ │ │ ├── ObjectAlreadyExistsException.java │ │ │ │ ├── ObjectDoesNotExistException.java │ │ │ │ ├── ObjectStore.java │ │ │ │ ├── SchemaViolationException.java │ │ │ │ ├── ScriptHistoryEntry.java │ │ │ │ └── UidMode.java │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── evolveum │ │ │ └── icf │ │ │ └── dummy │ │ │ └── resource │ │ │ └── TestDummyResource.java │ ├── testng-integration.xml │ └── testng-unit.xml └── pom.xml ├── infra ├── common │ ├── fake-midpoint-home │ │ └── localization │ │ │ ├── Midpoint_sk.properties │ │ │ └── schema_sk.properties │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── evolveum │ │ │ │ │ └── midpoint │ │ │ │ │ └── common │ │ │ │ │ ├── ActivationComputer.java │ │ │ │ │ ├── AvailableLocale.java │ │ │ │ │ ├── CachedResourceBundleMessageSource.java │ │ │ │ │ ├── Clock.java │ │ │ │ │ ├── InternalsConfigController.java │ │ │ │ │ ├── LocalizationMessageSource.java │ │ │ │ │ ├── LocalizationService.java │ │ │ │ │ ├── LocalizationServiceImpl.java │ │ │ │ │ ├── LocalizationTestUtil.java │ │ │ │ │ ├── LogbackPropertyDefiner.java │ │ │ │ │ ├── LogbackPropertyDefinerForTimezone.java │ │ │ │ │ ├── LoggingConfigurationManager.java │ │ │ │ │ ├── MimeTypeUtil.java │ │ │ │ │ ├── ProfilingConfigurationManager.java │ │ │ │ │ ├── RoleMiningExportUtils.java │ │ │ │ │ ├── SequenceUtil.java │ │ │ │ │ ├── StaticExpressionUtil.java │ │ │ │ │ ├── SynchronizationUtils.java │ │ │ │ │ ├── UserFriendlyPrettyPrinter.java │ │ │ │ │ ├── UserFriendlyPrettyPrinterOptions.java │ │ │ │ │ ├── Utils.java │ │ │ │ │ ├── cleanup │ │ │ │ │ ├── CleanerListener.java │ │ │ │ │ ├── CleanupEvent.java │ │ │ │ │ ├── CleanupItem.java │ │ │ │ │ ├── CleanupItemType.java │ │ │ │ │ ├── CleanupPath.java │ │ │ │ │ ├── CleanupPathAction.java │ │ │ │ │ ├── CleanupResult.java │ │ │ │ │ ├── DefaultCleanupListener.java │ │ │ │ │ └── ObjectCleaner.java │ │ │ │ │ ├── configuration │ │ │ │ │ └── api │ │ │ │ │ │ ├── MidpointConfiguration.java │ │ │ │ │ │ ├── ProfilingMode.java │ │ │ │ │ │ └── SystemConfigurationSection.java │ │ │ │ │ ├── crypto │ │ │ │ │ └── CryptoUtil.java │ │ │ │ │ ├── matching │ │ │ │ │ ├── MatchingRuleRegister.java │ │ │ │ │ ├── matcher │ │ │ │ │ │ └── VariableBindingDefMatchingRule.java │ │ │ │ │ └── normalizer │ │ │ │ │ │ └── VariableBindingDefNormalizer.java │ │ │ │ │ ├── mining │ │ │ │ │ ├── objects │ │ │ │ │ │ ├── analysis │ │ │ │ │ │ │ ├── AttributeAnalysisStructure.java │ │ │ │ │ │ │ ├── AttributePathResult.java │ │ │ │ │ │ │ ├── RoleAnalysisAttributeDef.java │ │ │ │ │ │ │ └── cache │ │ │ │ │ │ │ │ ├── AttributeAnalysisCache.java │ │ │ │ │ │ │ │ ├── MemberUserAttributeAnalysisCache.java │ │ │ │ │ │ │ │ ├── ObjectCategorisationCache.java │ │ │ │ │ │ │ │ ├── RoleMemberAttributeAnalyseCache.java │ │ │ │ │ │ │ │ ├── RoleMemberCountCache.java │ │ │ │ │ │ │ │ └── UserAttributeAnalyseCache.java │ │ │ │ │ │ ├── chunk │ │ │ │ │ │ │ ├── DisplayValueOption.java │ │ │ │ │ │ │ ├── MiningBaseTypeChunk.java │ │ │ │ │ │ │ ├── MiningOperationChunk.java │ │ │ │ │ │ │ ├── MiningRoleTypeChunk.java │ │ │ │ │ │ │ └── MiningUserTypeChunk.java │ │ │ │ │ │ ├── detection │ │ │ │ │ │ │ ├── BasePattern.java │ │ │ │ │ │ │ ├── CandidatePattern.java │ │ │ │ │ │ │ ├── DetectedPattern.java │ │ │ │ │ │ │ ├── PatternDetectionOption.java │ │ │ │ │ │ │ └── SimpleHeatPattern.java │ │ │ │ │ │ ├── handler │ │ │ │ │ │ │ └── RoleAnalysisProgressIncrement.java │ │ │ │ │ │ └── statistic │ │ │ │ │ │ │ ├── ClusterStatistic.java │ │ │ │ │ │ │ └── UserAccessDistribution.java │ │ │ │ │ └── utils │ │ │ │ │ │ ├── CellPatternResolver.java │ │ │ │ │ │ ├── ExtractPatternUtils.java │ │ │ │ │ │ ├── RoleAnalysisAttributeDefUtils.java │ │ │ │ │ │ ├── RoleAnalysisCacheOption.java │ │ │ │ │ │ ├── RoleAnalysisUtils.java │ │ │ │ │ │ ├── algorithm │ │ │ │ │ │ └── JaccardSorter.java │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── FrequencyItem.java │ │ │ │ │ │ ├── RoleAnalysisChunkAction.java │ │ │ │ │ │ ├── RoleAnalysisChunkMode.java │ │ │ │ │ │ ├── RoleAnalysisObjectState.java │ │ │ │ │ │ ├── RoleAnalysisObjectStatus.java │ │ │ │ │ │ ├── RoleAnalysisOperationMode.java │ │ │ │ │ │ ├── RoleAnalysisSortMode.java │ │ │ │ │ │ └── ZScoreData.java │ │ │ │ │ ├── outlier │ │ │ │ │ └── OutlierExplanationResolver.java │ │ │ │ │ ├── rest │ │ │ │ │ ├── Converter.java │ │ │ │ │ ├── ConverterInterface.java │ │ │ │ │ ├── MidpointAbstractProvider.java │ │ │ │ │ ├── MidpointJsonProvider.java │ │ │ │ │ ├── MidpointXmlProvider.java │ │ │ │ │ └── MidpointYamlProvider.java │ │ │ │ │ ├── secrets │ │ │ │ │ ├── CacheableSecretsProviderDelegate.java │ │ │ │ │ ├── ContainerSecretsProvider.java │ │ │ │ │ ├── DockerSecretsProvider.java │ │ │ │ │ ├── EnvironmentVariablesSecretsProvider.java │ │ │ │ │ ├── FileSecretsProvider.java │ │ │ │ │ ├── PropertiesSecretsProvider.java │ │ │ │ │ ├── SecretsProviderImpl.java │ │ │ │ │ └── SecretsProviderManager.java │ │ │ │ │ └── validator │ │ │ │ │ ├── EventHandler.java │ │ │ │ │ ├── EventResult.java │ │ │ │ │ ├── LegacyValidationMessage.java │ │ │ │ │ └── LegacyValidator.java │ │ │ └── resources │ │ │ │ └── ctx-common.xml │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ ├── common │ │ │ │ ├── AbstractActivationComputerTest.java │ │ │ │ ├── LocalizationTest.java │ │ │ │ ├── TestActivationComputerDefault.java │ │ │ │ ├── TestActivationComputerLifecycle.java │ │ │ │ ├── TestCryptoUtil.java │ │ │ │ ├── TestStaticValues.java │ │ │ │ ├── UserFriendlyPrettyPrinterTest.java │ │ │ │ ├── cleanup │ │ │ │ │ ├── ObjectCleanerTest.java │ │ │ │ │ └── TestCleanupListener.java │ │ │ │ ├── refinery │ │ │ │ │ ├── RelationRegistryDummyImpl.java │ │ │ │ │ └── TestRefinedSchema.java │ │ │ │ └── test │ │ │ │ │ └── UtilsTest.java │ │ │ │ └── validator │ │ │ │ └── test │ │ │ │ ├── BasicValidatorTest.java │ │ │ │ ├── UnknownNodeSkipSchemaValidationTest.java │ │ │ │ └── UnknownNodeValidationTest.java │ │ │ └── resources │ │ │ ├── bad-utf.txt │ │ │ ├── cleanup │ │ │ ├── resource.xml │ │ │ └── user.xml │ │ │ ├── common │ │ │ └── delta.xml │ │ │ ├── crypto │ │ │ ├── system-configuration.xml │ │ │ ├── task-add-account.xml │ │ │ ├── task-add-jack.xml │ │ │ ├── task-modify-jack-password.xml │ │ │ └── user-jack.xml │ │ │ ├── keystore.jceks │ │ │ ├── localization │ │ │ ├── Midpoint_sk.properties │ │ │ └── case-with-localized-name.xml │ │ │ ├── logback-test.xml │ │ │ ├── objects │ │ │ ├── c0c010c0-d34d-b33f-f00d-111111111111.xml │ │ │ ├── c0c010c0-d34d-b33f-f00d-111111111112.xml │ │ │ ├── c0c010c0-d34d-b33f-f00d-999111111122.xml │ │ │ ├── c0c010c0-d34d-b33f-f00d-999888111111.xml │ │ │ ├── c0c010c0-d34d-b33f-f00d-999888111112.xml │ │ │ └── c0c010c0-d34d-b33f-f00d-999888111113.xml │ │ │ ├── refinery │ │ │ ├── account-jack.xml │ │ │ ├── resource-complex.xml │ │ │ ├── resource-ldap-posix.xml │ │ │ └── resource-simple.xml │ │ │ ├── schema │ │ │ └── extension.xsd │ │ │ ├── system-configuration-lifecycle.xml │ │ │ └── validator │ │ │ ├── no-name.xml │ │ │ ├── not-well-formed.xml │ │ │ ├── resource-1-valid.xml │ │ │ ├── three-objects.xml │ │ │ ├── three-users-schema-violation.xml │ │ │ ├── undeclared-prefix.xml │ │ │ └── unknown │ │ │ ├── connector-attribute.xml │ │ │ ├── connector-config-element.xml │ │ │ ├── connector-config-nested.xml │ │ │ ├── connector-element.xml │ │ │ ├── filter-attribute.xml │ │ │ ├── filter-element.xml │ │ │ ├── object-attribute.xml │ │ │ ├── object-element.xml │ │ │ ├── property-attribute.xml │ │ │ ├── property-element.xml │ │ │ ├── reference-attribute.xml │ │ │ └── reference-element.xml │ └── testng-unit.xml ├── pom.xml ├── schema-pure-jaxb │ ├── pom.xml │ └── src │ │ └── compile │ │ └── resources │ │ └── catalog.xml ├── schema │ ├── pom.xml │ ├── src │ │ ├── compile │ │ │ └── resources │ │ │ │ └── jax-ws-catalog.xml │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── evolveum │ │ │ │ │ └── midpoint │ │ │ │ │ └── schema │ │ │ │ │ ├── AbstractOptions.java │ │ │ │ │ ├── AbstractSummarizingResultHandler.java │ │ │ │ │ ├── AccessDecision.java │ │ │ │ │ ├── AcknowledgementSink.java │ │ │ │ │ ├── CapabilityUtil.java │ │ │ │ │ ├── ContainerableResultHandler.java │ │ │ │ │ ├── CorrelatorDiscriminator.java │ │ │ │ │ ├── DefinitionProcessingOption.java │ │ │ │ │ ├── DefinitionUpdateOption.java │ │ │ │ │ ├── DeltaConversionOptions.java │ │ │ │ │ ├── DeltaConvertor.java │ │ │ │ │ ├── GetOperationOptions.java │ │ │ │ │ ├── GetOperationOptionsBuilder.java │ │ │ │ │ ├── GetOperationOptionsBuilderImpl.java │ │ │ │ │ ├── ItemDeltaBeanToNativeConversion.java │ │ │ │ │ ├── LabeledString.java │ │ │ │ │ ├── MidPointPrismContextFactory.java │ │ │ │ │ ├── MidpointParsingMigrator.java │ │ │ │ │ ├── ObjectDeltaOperation.java │ │ │ │ │ ├── ObjectHandler.java │ │ │ │ │ ├── ObjectOperationOption.java │ │ │ │ │ ├── ObjectSelector.java │ │ │ │ │ ├── OriginMarkerMixin.java │ │ │ │ │ ├── ParsedGetOperationOptions.java │ │ │ │ │ ├── PointInTimeType.java │ │ │ │ │ ├── PrismQueryExpressionSupport.java │ │ │ │ │ ├── ProvisioningDiag.java │ │ │ │ │ ├── RelationRegistry.java │ │ │ │ │ ├── RelationalValueSearchQuery.java │ │ │ │ │ ├── RelationalValueSearchType.java │ │ │ │ │ ├── RepositoryDiag.java │ │ │ │ │ ├── RepositoryQueryDiagRequest.java │ │ │ │ │ ├── RepositoryQueryDiagResponse.java │ │ │ │ │ ├── ResourceOperationCoordinates.java │ │ │ │ │ ├── ResourceShadowCoordinates.java │ │ │ │ │ ├── ResultHandler.java │ │ │ │ │ ├── RetrieveOption.java │ │ │ │ │ ├── SchemaService.java │ │ │ │ │ ├── SearchResultList.java │ │ │ │ │ ├── SearchResultMetadata.java │ │ │ │ │ ├── SelectorOptions.java │ │ │ │ │ ├── TaskExecutionMode.java │ │ │ │ │ ├── VirtualAssignmentSpecification.java │ │ │ │ │ ├── cache │ │ │ │ │ ├── CacheConfigurationManager.java │ │ │ │ │ └── CacheType.java │ │ │ │ │ ├── config │ │ │ │ │ ├── AbstractAssignmentConfigItem.java │ │ │ │ │ ├── AbstractAttributeMappingsDefinitionConfigItem.java │ │ │ │ │ ├── AbstractMappingConfigItem.java │ │ │ │ │ ├── AbstractPolicyRuleConfigItem.java │ │ │ │ │ ├── AbstractResourceDataDefinitionConfigItem.java │ │ │ │ │ ├── AssignmentConfigItem.java │ │ │ │ │ ├── AssociationConfigItem.java │ │ │ │ │ ├── AutoAssignMappingConfigItem.java │ │ │ │ │ ├── AutoassignSpecificationConfigItem.java │ │ │ │ │ ├── ComplexAttributeTypeDefinitionConfigItem.java │ │ │ │ │ ├── ConfigurationItem.java │ │ │ │ │ ├── ConfigurationItemOrigin.java │ │ │ │ │ ├── ConfigurationItemable.java │ │ │ │ │ ├── ConstructionConfigItem.java │ │ │ │ │ ├── EventHandlerConfigItem.java │ │ │ │ │ ├── ExecuteScriptConfigItem.java │ │ │ │ │ ├── ExpressionConfigItem.java │ │ │ │ │ ├── ExpressionParameterConfigItem.java │ │ │ │ │ ├── FocalAutoassignSpecificationConfigItem.java │ │ │ │ │ ├── FunctionCallArgumentConfigItem.java │ │ │ │ │ ├── FunctionConfigItem.java │ │ │ │ │ ├── FunctionExpressionEvaluatorConfigItem.java │ │ │ │ │ ├── GlobalPolicyRuleConfigItem.java │ │ │ │ │ ├── InboundMappingConfigItem.java │ │ │ │ │ ├── InducementConfigItem.java │ │ │ │ │ ├── MappingConfigItem.java │ │ │ │ │ ├── MetadataMappingConfigItem.java │ │ │ │ │ ├── MultiSourceDataHandlingConfigItem.java │ │ │ │ │ ├── MultiSourceItemDefinitionConfigItem.java │ │ │ │ │ ├── ObjectSelectorConfigItem.java │ │ │ │ │ ├── ObjectTemplateItemDefinitionConfigItem.java │ │ │ │ │ ├── ObjectTemplateMappingConfigItem.java │ │ │ │ │ ├── OriginProvider.java │ │ │ │ │ ├── PolicyActionConfigItem.java │ │ │ │ │ ├── PolicyRuleConfigItem.java │ │ │ │ │ ├── PrivilegesMixin.java │ │ │ │ │ ├── ReferencesCapabilityConfigItem.java │ │ │ │ │ ├── ResourceAttributeDefinitionConfigItem.java │ │ │ │ │ ├── ResourceDataTypeDefinitionConfigItem.java │ │ │ │ │ ├── ResourceObjectAssociationConfigItem.java │ │ │ │ │ ├── ResourceObjectClassDefinitionConfigItem.java │ │ │ │ │ ├── ResourceObjectDefinitionConfigItem.java │ │ │ │ │ ├── ResourceObjectTypeDefinitionConfigItem.java │ │ │ │ │ ├── SchemaHandlingConfigItem.java │ │ │ │ │ ├── ScriptExecutionPolicyActionConfigItem.java │ │ │ │ │ ├── ShadowAssociationDefinitionConfigItem.java │ │ │ │ │ ├── ShadowAssociationTypeDefinitionConfigItem.java │ │ │ │ │ ├── ShadowAssociationTypeObjectDefinitionConfigItem.java │ │ │ │ │ ├── ShadowAssociationTypeParticipantDefinitionConfigItem.java │ │ │ │ │ ├── ShadowAssociationTypeSubjectDefinitionConfigItem.java │ │ │ │ │ ├── SimulatedReferenceTypeConfigItem.java │ │ │ │ │ ├── SimulatedReferenceTypeParticipantConfigItem.java │ │ │ │ │ ├── SimulatedReferenceTypeParticipantDelineationConfigItem.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── constants │ │ │ │ │ ├── Channel.java │ │ │ │ │ ├── ExpressionConstants.java │ │ │ │ │ ├── MidPointConstants.java │ │ │ │ │ ├── ObjectTypes.java │ │ │ │ │ ├── RelationTypes.java │ │ │ │ │ ├── SchemaConstants.java │ │ │ │ │ └── TestResourceOpNames.java │ │ │ │ │ ├── delta │ │ │ │ │ ├── Conflict.java │ │ │ │ │ ├── ContainerTreeDelta.java │ │ │ │ │ ├── ContainerTreeDeltaValue.java │ │ │ │ │ ├── Direction.java │ │ │ │ │ ├── ItemTreeDelta.java │ │ │ │ │ ├── ItemTreeDeltaValue.java │ │ │ │ │ ├── ObjectTreeDelta.java │ │ │ │ │ ├── ObjectTreeDeltaValue.java │ │ │ │ │ ├── PropertyTreeDelta.java │ │ │ │ │ ├── PropertyTreeDeltaValue.java │ │ │ │ │ ├── ReferenceTreeDelta.java │ │ │ │ │ ├── ReferenceTreeDeltaValue.java │ │ │ │ │ ├── ThreeWayMergeOperation.java │ │ │ │ │ ├── TreeDeltaUtils.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── error │ │ │ │ │ ├── ConfigErrorReporter.java │ │ │ │ │ └── ErrorStackDumper.java │ │ │ │ │ ├── expression │ │ │ │ │ ├── AbstractSecurityProfile.java │ │ │ │ │ ├── BulkActionProfile.java │ │ │ │ │ ├── BulkActionsProfile.java │ │ │ │ │ ├── ExpressionEvaluatorProfile.java │ │ │ │ │ ├── ExpressionEvaluatorsProfile.java │ │ │ │ │ ├── ExpressionPermissionProfile.java │ │ │ │ │ ├── ExpressionProfile.java │ │ │ │ │ ├── ExpressionProfiles.java │ │ │ │ │ ├── FunctionLibrariesProfile.java │ │ │ │ │ ├── FunctionLibraryProfile.java │ │ │ │ │ ├── ScriptLanguageExpressionProfile.java │ │ │ │ │ ├── TypedValue.java │ │ │ │ │ └── VariablesMap.java │ │ │ │ │ ├── internals │ │ │ │ │ ├── CachingStatistics.java │ │ │ │ │ ├── InternalCounters.java │ │ │ │ │ ├── InternalInspector.java │ │ │ │ │ ├── InternalMonitor.java │ │ │ │ │ ├── InternalOperationClasses.java │ │ │ │ │ ├── InternalsConfig.java │ │ │ │ │ ├── TestingPaths.java │ │ │ │ │ └── ThreadLocalOperationsMonitor.java │ │ │ │ │ ├── merger │ │ │ │ │ ├── AdminGuiConfigurationMergeManager.java │ │ │ │ │ ├── BaseMergeOperation.java │ │ │ │ │ ├── IgnoreSourceItemMerger.java │ │ │ │ │ ├── RequiredItemMerger.java │ │ │ │ │ ├── SimpleObjectMergeOperation.java │ │ │ │ │ ├── assignment │ │ │ │ │ │ ├── AssignmentMergeOperation.java │ │ │ │ │ │ └── AssignmentMerger.java │ │ │ │ │ ├── correlator │ │ │ │ │ │ └── CorrelatorMergeOperation.java │ │ │ │ │ ├── objdef │ │ │ │ │ │ ├── LimitationsMerger.java │ │ │ │ │ │ └── ResourceObjectTypeDefinitionMergeOperation.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ ├── resource │ │ │ │ │ │ ├── ObjectTypeDefinitionMerger.java │ │ │ │ │ │ └── ResourceMergeOperation.java │ │ │ │ │ ├── securitypolicy │ │ │ │ │ │ └── SecurityPolicyCustomMerger.java │ │ │ │ │ ├── simulation │ │ │ │ │ │ └── SimulationDefinitionMergeOperation.java │ │ │ │ │ └── template │ │ │ │ │ │ └── ObjectTemplateMergeOperation.java │ │ │ │ │ ├── messaging │ │ │ │ │ ├── JsonAsyncProvisioningRequest.java │ │ │ │ │ └── MessageWrapper.java │ │ │ │ │ ├── metadata │ │ │ │ │ ├── DefaultValueMetadataProcessing.java │ │ │ │ │ ├── MidpointProvenanceEquivalenceStrategy.java │ │ │ │ │ └── MidpointValueMetadataFactory.java │ │ │ │ │ ├── processor │ │ │ │ │ ├── AbstractResourceObjectDefinitionImpl.java │ │ │ │ │ ├── AbstractShadowItemsContainerTypeDefinitionImpl.java │ │ │ │ │ ├── AbstractShadowReferenceTypeDefinition.java │ │ │ │ │ ├── AssociationDefinitionStore.java │ │ │ │ │ ├── AssociationsToShadowReferencesTransformer.java │ │ │ │ │ ├── AttributeDefinitionStore.java │ │ │ │ │ ├── AttributePath.java │ │ │ │ │ ├── BareResourceSchema.java │ │ │ │ │ ├── BareResourceSchemaImpl.java │ │ │ │ │ ├── BaseShadowItemsContainerTypeDefinitionImpl.java │ │ │ │ │ ├── BasicResourceInformation.java │ │ │ │ │ ├── ClockworkSettings.java │ │ │ │ │ ├── CompleteResourceSchema.java │ │ │ │ │ ├── CompleteResourceSchemaImpl.java │ │ │ │ │ ├── CompositeObjectDefinition.java │ │ │ │ │ ├── CompositeObjectDefinitionImpl.java │ │ │ │ │ ├── ConnectorSchema.java │ │ │ │ │ ├── ConnectorSchemaFactory.java │ │ │ │ │ ├── ConnectorSchemaImpl.java │ │ │ │ │ ├── FrameworkNameResolver.java │ │ │ │ │ ├── IdentifiersDefinitionStore.java │ │ │ │ │ ├── LayeredDefinition.java │ │ │ │ │ ├── MutableRawResourceAttributeDefinition.java │ │ │ │ │ ├── NativeComplexTypeDefinitionImpl.java │ │ │ │ │ ├── NativeObjectClassDefinition.java │ │ │ │ │ ├── NativeObjectClassUcfDefinition.java │ │ │ │ │ ├── NativeReferenceTypeDefinition.java │ │ │ │ │ ├── NativeResourceSchema.java │ │ │ │ │ ├── NativeResourceSchemaImpl.java │ │ │ │ │ ├── NativeShadowAttributeDefinition.java │ │ │ │ │ ├── NativeShadowAttributeDefinitionImpl.java │ │ │ │ │ ├── NativeShadowReferenceAttributeDefinition.java │ │ │ │ │ ├── NativeShadowSimpleAttributeDefinition.java │ │ │ │ │ ├── NativelyProvidedShadowReferenceTypeDefinition.java │ │ │ │ │ ├── NormalizationAwareResourceAttributeDefinition.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── PropertyAccess.java │ │ │ │ │ ├── PropertyLimitations.java │ │ │ │ │ ├── RefinedDefinitionUtil.java │ │ │ │ │ ├── RefinedObjectClassDefinitionKey.java │ │ │ │ │ ├── RefineryObjectFactory.java │ │ │ │ │ ├── ResourceDefinitionFeatures.java │ │ │ │ │ ├── ResourceItemPrismDefinition.java │ │ │ │ │ ├── ResourceObjectClassDefinition.java │ │ │ │ │ ├── ResourceObjectClassDefinitionImpl.java │ │ │ │ │ ├── ResourceObjectDefinition.java │ │ │ │ │ ├── ResourceObjectDefinitionIdentification.java │ │ │ │ │ ├── ResourceObjectDefinitionResolver.java │ │ │ │ │ ├── ResourceObjectDefinitionUtil.java │ │ │ │ │ ├── ResourceObjectIdentification.java │ │ │ │ │ ├── ResourceObjectIdentifier.java │ │ │ │ │ ├── ResourceObjectIdentifiers.java │ │ │ │ │ ├── ResourceObjectInboundProcessingDefinition.java │ │ │ │ │ ├── ResourceObjectPattern.java │ │ │ │ │ ├── ResourceObjectSetDelineation.java │ │ │ │ │ ├── ResourceObjectTypeDefinition.java │ │ │ │ │ ├── ResourceObjectTypeDefinitionImpl.java │ │ │ │ │ ├── ResourceObjectTypeDelineation.java │ │ │ │ │ ├── ResourceObjectTypeIdentification.java │ │ │ │ │ ├── ResourceSchema.java │ │ │ │ │ ├── ResourceSchemaFactory.java │ │ │ │ │ ├── ResourceSchemaImpl.java │ │ │ │ │ ├── ResourceSchemaParser.java │ │ │ │ │ ├── ResourceSchemaRegistry.java │ │ │ │ │ ├── ResourceSchemaTestUtil.java │ │ │ │ │ ├── ResourceSchemaUtil.java │ │ │ │ │ ├── SearchHierarchyConstraints.java │ │ │ │ │ ├── SearchHierarchyScope.java │ │ │ │ │ ├── ShadowAssociation.java │ │ │ │ │ ├── ShadowAssociationDefinition.java │ │ │ │ │ ├── ShadowAssociationDefinitionImpl.java │ │ │ │ │ ├── ShadowAssociationValue.java │ │ │ │ │ ├── ShadowAssociationsComplexTypeDefinition.java │ │ │ │ │ ├── ShadowAssociationsComplexTypeDefinitionImpl.java │ │ │ │ │ ├── ShadowAssociationsContainer.java │ │ │ │ │ ├── ShadowAssociationsContainerDefinition.java │ │ │ │ │ ├── ShadowAssociationsContainerDefinitionImpl.java │ │ │ │ │ ├── ShadowAssociationsContainerImpl.java │ │ │ │ │ ├── ShadowAttribute.java │ │ │ │ │ ├── ShadowAttributeDefinition.java │ │ │ │ │ ├── ShadowAttributeDefinitionImpl.java │ │ │ │ │ ├── ShadowAttributeUcfDefinition.java │ │ │ │ │ ├── ShadowAttributeValueConvertor.java │ │ │ │ │ ├── ShadowAttributesComplexTypeDefinition.java │ │ │ │ │ ├── ShadowAttributesComplexTypeDefinitionImpl.java │ │ │ │ │ ├── ShadowAttributesContainer.java │ │ │ │ │ ├── ShadowAttributesContainerDefinition.java │ │ │ │ │ ├── ShadowAttributesContainerDefinitionImpl.java │ │ │ │ │ ├── ShadowAttributesContainerImpl.java │ │ │ │ │ ├── ShadowCoordinatesQualifiedObjectDelta.java │ │ │ │ │ ├── ShadowCoordinatesQualifiedObjectDeltaImpl.java │ │ │ │ │ ├── ShadowDefinitionApplicator.java │ │ │ │ │ ├── ShadowItemDefinition.java │ │ │ │ │ ├── ShadowItemLayeredDefinition.java │ │ │ │ │ ├── ShadowItemLifecycleDefinitionDefaults.java │ │ │ │ │ ├── ShadowItemsComplexTypeDefinition.java │ │ │ │ │ ├── ShadowItemsContainer.java │ │ │ │ │ ├── ShadowLikeValue.java │ │ │ │ │ ├── ShadowMarkingRules.java │ │ │ │ │ ├── ShadowQueryConversionUtil.java │ │ │ │ │ ├── ShadowReferenceAttribute.java │ │ │ │ │ ├── ShadowReferenceAttributeDefinition.java │ │ │ │ │ ├── ShadowReferenceAttributeDefinitionImpl.java │ │ │ │ │ ├── ShadowReferenceAttributeValue.java │ │ │ │ │ ├── ShadowReferenceAttributesComplexTypeDefinitionImpl.java │ │ │ │ │ ├── ShadowReferenceParticipantRole.java │ │ │ │ │ ├── ShadowRelationParticipantType.java │ │ │ │ │ ├── ShadowSimpleAttribute.java │ │ │ │ │ ├── ShadowSimpleAttributeDefinition.java │ │ │ │ │ ├── ShadowSimpleAttributeDefinitionImpl.java │ │ │ │ │ ├── ShadowSimpleAttributeImpl.java │ │ │ │ │ ├── ShadowSimpleAttributesComplexTypeDefinitionImpl.java │ │ │ │ │ ├── ShadowSingleReferenceAttributeComplexTypeDefinitionImpl.java │ │ │ │ │ ├── ShadowsNormalizationUtil.java │ │ │ │ │ ├── SimulatedReferenceTypeParticipantDefinition.java │ │ │ │ │ ├── SimulatedShadowReferenceTypeDefinition.java │ │ │ │ │ ├── SynchronizationActionDefinition.java │ │ │ │ │ ├── SynchronizationPolicy.java │ │ │ │ │ ├── SynchronizationPolicyFactory.java │ │ │ │ │ ├── SynchronizationReactionDefinition.java │ │ │ │ │ ├── ValueBasedDefinitionLookupsImpl.java │ │ │ │ │ └── deleg │ │ │ │ │ │ ├── CompositeObjectDefinitionDelegator.java │ │ │ │ │ │ ├── ResourceAttributeDefinitionDelegator.java │ │ │ │ │ │ ├── ResourceObjectClassDefinitionDelegator.java │ │ │ │ │ │ ├── ResourceObjectDefinitionDelegator.java │ │ │ │ │ │ ├── ResourceObjectTypeDefinitionDelegator.java │ │ │ │ │ │ └── ShadowAttributesContainerDefinitionDelegator.java │ │ │ │ │ ├── query │ │ │ │ │ ├── AbstractTypedQuery.java │ │ │ │ │ ├── PreparedQuery.java │ │ │ │ │ └── TypedQuery.java │ │ │ │ │ ├── relation │ │ │ │ │ ├── IndexedRelationDefinitions.java │ │ │ │ │ └── RelationRegistryImpl.java │ │ │ │ │ ├── reporting │ │ │ │ │ └── ConnIdOperation.java │ │ │ │ │ ├── result │ │ │ │ │ ├── AsynchronousOperationQueryable.java │ │ │ │ │ ├── CompiledTracingProfile.java │ │ │ │ │ ├── LogRecorder.java │ │ │ │ │ ├── OperationConstants.java │ │ │ │ │ ├── OperationMonitoringConfiguration.java │ │ │ │ │ ├── OperationResult.java │ │ │ │ │ ├── OperationResultBuilder.java │ │ │ │ │ ├── OperationResultFactory.java │ │ │ │ │ ├── OperationResultRunner.java │ │ │ │ │ ├── OperationResultStatus.java │ │ │ │ │ └── ResourceOperationStatus.java │ │ │ │ │ ├── route │ │ │ │ │ ├── ItemRoute.java │ │ │ │ │ ├── ItemRouteResolver.java │ │ │ │ │ └── ItemRouteSegment.java │ │ │ │ │ ├── selector │ │ │ │ │ ├── eval │ │ │ │ │ │ ├── ClauseApplicabilityPredicate.java │ │ │ │ │ │ ├── ClauseProcessingContextDescription.java │ │ │ │ │ │ ├── FilterCollector.java │ │ │ │ │ │ ├── FilteringContext.java │ │ │ │ │ │ ├── MatchingContext.java │ │ │ │ │ │ ├── ObjectFilterExpressionEvaluator.java │ │ │ │ │ │ ├── ObjectResolver.java │ │ │ │ │ │ ├── OrgTreeEvaluator.java │ │ │ │ │ │ ├── OwnerResolver.java │ │ │ │ │ │ ├── SelectorProcessingContext.java │ │ │ │ │ │ ├── SelectorTraceEvent.java │ │ │ │ │ │ ├── SubjectedEvaluationContext.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── spec │ │ │ │ │ │ ├── ArchetypeRefClause.java │ │ │ │ │ │ ├── AssigneeClause.java │ │ │ │ │ │ ├── CandidateAssigneeClause.java │ │ │ │ │ │ ├── DelegatorClause.java │ │ │ │ │ │ ├── FilterClause.java │ │ │ │ │ │ ├── OrgRefClause.java │ │ │ │ │ │ ├── OrgRelationClause.java │ │ │ │ │ │ ├── OwnerClause.java │ │ │ │ │ │ ├── ParentClause.java │ │ │ │ │ │ ├── RelatedObjectClause.java │ │ │ │ │ │ ├── RequesterClause.java │ │ │ │ │ │ ├── RoleRelationClause.java │ │ │ │ │ │ ├── SelectorClause.java │ │ │ │ │ │ ├── SelfClause.java │ │ │ │ │ │ ├── SubtypeClause.java │ │ │ │ │ │ ├── TenantClause.java │ │ │ │ │ │ ├── TypeClause.java │ │ │ │ │ │ ├── ValueSelector.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── simulation │ │ │ │ │ ├── ExecutionModeProvider.java │ │ │ │ │ ├── PartitionScope.java │ │ │ │ │ ├── SimulationMetricComputer.java │ │ │ │ │ ├── SimulationMetricPartition.java │ │ │ │ │ ├── SimulationMetricPartitions.java │ │ │ │ │ └── SimulationMetricReference.java │ │ │ │ │ ├── statistics │ │ │ │ │ ├── AbstractStatisticsPrinter.java │ │ │ │ │ ├── ActionsExecutedCollector.java │ │ │ │ │ ├── ActionsExecutedInformationUtil.java │ │ │ │ │ ├── ActivityBucketManagementStatisticsUtil.java │ │ │ │ │ ├── ActivityItemProcessingStatisticsPrinter.java │ │ │ │ │ ├── ActivityProgressAndStatisticsPrinter.java │ │ │ │ │ ├── ActivityProgressPrinter.java │ │ │ │ │ ├── ActivityStatisticsUtil.java │ │ │ │ │ ├── ActivitySynchronizationStatisticsUtil.java │ │ │ │ │ ├── AsciiTableFormatting.java │ │ │ │ │ ├── BasicComponentStructure.java │ │ │ │ │ ├── CachePerformanceInformationPrinter.java │ │ │ │ │ ├── CachePerformanceInformationUtil.java │ │ │ │ │ ├── ComponentsPerformanceComputer.java │ │ │ │ │ ├── ComponentsPerformanceInformationPrinter.java │ │ │ │ │ ├── ComponentsPerformanceInformationUtil.java │ │ │ │ │ ├── ConnectorOperationalStatus.java │ │ │ │ │ ├── CsvFormatting.java │ │ │ │ │ ├── Data.java │ │ │ │ │ ├── DummyOperationImpl.java │ │ │ │ │ ├── EnvironmentalPerformanceInformation.java │ │ │ │ │ ├── Formatting.java │ │ │ │ │ ├── GenericStatisticsData.java │ │ │ │ │ ├── ItemProcessing.java │ │ │ │ │ ├── IterationItemInformation.java │ │ │ │ │ ├── IterativeOperationStartInfo.java │ │ │ │ │ ├── MappingStatisticsCollector.java │ │ │ │ │ ├── MappingsStatisticsKey.java │ │ │ │ │ ├── NotificationStatisticsCollector.java │ │ │ │ │ ├── NotificationsStatisticsKey.java │ │ │ │ │ ├── Operation.java │ │ │ │ │ ├── OperationsPerformanceInformationPrinter.java │ │ │ │ │ ├── OperationsPerformanceInformationUtil.java │ │ │ │ │ ├── OutcomeKeyedCounterTypeUtil.java │ │ │ │ │ ├── ProgressCollector.java │ │ │ │ │ ├── ProvisioningOperation.java │ │ │ │ │ ├── ProvisioningStatistics.java │ │ │ │ │ ├── ProvisioningStatisticsPrinter.java │ │ │ │ │ ├── ProvisioningStatisticsTypeUtil.java │ │ │ │ │ ├── ProvisioningStatusType.java │ │ │ │ │ ├── RawFormatting.java │ │ │ │ │ ├── RepositoryPerformanceInformationPrinter.java │ │ │ │ │ ├── RepositoryPerformanceInformationUtil.java │ │ │ │ │ ├── StatisticsCollector.java │ │ │ │ │ ├── StatusMessage.java │ │ │ │ │ ├── SynchronizationInformationPrinter.java │ │ │ │ │ ├── SynchronizationStatisticsCollector.java │ │ │ │ │ ├── TaskActionsExecutedCollector.java │ │ │ │ │ ├── TaskIterativeOperationCollector.java │ │ │ │ │ ├── TaskSynchronizationStatisticsCollector.java │ │ │ │ │ ├── TaskWorkBucketManagementPerformanceInformationPrinter.java │ │ │ │ │ └── TempUtil.java │ │ │ │ │ ├── traces │ │ │ │ │ ├── DictionaryExpander.java │ │ │ │ │ ├── FormattingUtil.java │ │ │ │ │ ├── OpNode.java │ │ │ │ │ ├── OpNodeFactory.java │ │ │ │ │ ├── OpNodePresentation.java │ │ │ │ │ ├── OpNodeTreeBuilder.java │ │ │ │ │ ├── OpResultInfo.java │ │ │ │ │ ├── OpType.java │ │ │ │ │ ├── OperationCategorizer.java │ │ │ │ │ ├── Options.java │ │ │ │ │ ├── PerformanceCategory.java │ │ │ │ │ ├── PerformanceCategoryInfo.java │ │ │ │ │ ├── RepositoryCacheOpNode.java │ │ │ │ │ ├── RepositoryOpNode.java │ │ │ │ │ ├── TemplateExpander.java │ │ │ │ │ ├── TraceInfo.java │ │ │ │ │ ├── TraceParser.java │ │ │ │ │ ├── TraceUtil.java │ │ │ │ │ ├── TraceWriter.java │ │ │ │ │ ├── ViewOptions.java │ │ │ │ │ ├── ViewedObject.java │ │ │ │ │ ├── details │ │ │ │ │ │ ├── AbstractTraceEvent.java │ │ │ │ │ │ ├── ProcessingTracer.java │ │ │ │ │ │ └── TraceRecord.java │ │ │ │ │ ├── operations │ │ │ │ │ │ ├── AbstractChangeExecutionOpNode.java │ │ │ │ │ │ ├── AbstractMappingEvaluationOpNode.java │ │ │ │ │ │ ├── AssignmentEvaluationOpNode.java │ │ │ │ │ │ ├── AssignmentSegmentEvaluationOpNode.java │ │ │ │ │ │ ├── ChangeExecutionDeltaOpNode.java │ │ │ │ │ │ ├── ClockworkClickOpNode.java │ │ │ │ │ │ ├── ClockworkRunOpNode.java │ │ │ │ │ │ ├── FocusChangeExecutionOpNode.java │ │ │ │ │ │ ├── FocusPolicyRulesOpNode.java │ │ │ │ │ │ ├── FocusRepositoryLoadOpNode.java │ │ │ │ │ │ ├── FullProjectionLoadOpNode.java │ │ │ │ │ │ ├── ItemConsolidationOpNode.java │ │ │ │ │ │ ├── LinkUnlinkShadowOpNode.java │ │ │ │ │ │ ├── MappingEvaluationOpNode.java │ │ │ │ │ │ ├── MappingTimeValidityEvaluationOpNode.java │ │ │ │ │ │ ├── PolicyConstraintEvaluationOpNode.java │ │ │ │ │ │ ├── PolicyRuleEvaluationOpNode.java │ │ │ │ │ │ ├── ProjectionActivationOpNode.java │ │ │ │ │ │ ├── ProjectionChangeExecutionOpNode.java │ │ │ │ │ │ ├── ProjectorComponentOpNode.java │ │ │ │ │ │ ├── ProjectorProjectionOpNode.java │ │ │ │ │ │ ├── ResolutionUtil.java │ │ │ │ │ │ ├── ResourceObjectConstructionEvaluationOpNode.java │ │ │ │ │ │ ├── TransformationExpressionEvaluationOpNode.java │ │ │ │ │ │ ├── UpdateShadowSituationOpNode.java │ │ │ │ │ │ └── ValueTupleTransformationOpNode.java │ │ │ │ │ └── visualizer │ │ │ │ │ │ ├── BaseVisualizer.java │ │ │ │ │ │ ├── ChangeExecutionVisualizer.java │ │ │ │ │ │ ├── ClockworkClickVisualizer.java │ │ │ │ │ │ ├── ClockworkExecutionVisualizer.java │ │ │ │ │ │ ├── DefaultVisualizer.java │ │ │ │ │ │ ├── FocusLoadVisualizer.java │ │ │ │ │ │ ├── FullProjectionLoadVisualizer.java │ │ │ │ │ │ ├── MappingEvaluationVisualizer.java │ │ │ │ │ │ ├── TraceTreeVisualizer.java │ │ │ │ │ │ ├── TraceVisualizerRegistry.java │ │ │ │ │ │ └── Visualizer.java │ │ │ │ │ ├── util │ │ │ │ │ ├── AbstractShadow.java │ │ │ │ │ ├── AccessCertificationCaseId.java │ │ │ │ │ ├── AccessCertificationWorkItemId.java │ │ │ │ │ ├── ActivationUtil.java │ │ │ │ │ ├── ApprovalSchemaExecutionInformationUtil.java │ │ │ │ │ ├── ArchetypeTypeUtil.java │ │ │ │ │ ├── AssignmentUtil.java │ │ │ │ │ ├── AuthenticationSequenceTypeUtil.java │ │ │ │ │ ├── CertCampaignTypeUtil.java │ │ │ │ │ ├── ChangedItemPath.java │ │ │ │ │ ├── ChannelUtil.java │ │ │ │ │ ├── ConfigurationSpecificationTypeUtil.java │ │ │ │ │ ├── ConnectorTypeUtil.java │ │ │ │ │ ├── ConstructionTypeUtil.java │ │ │ │ │ ├── CorrelationAlgorithm.java │ │ │ │ │ ├── CorrelatorsDefinitionUtil.java │ │ │ │ │ ├── DiagnosticContext.java │ │ │ │ │ ├── DiagnosticContextHolder.java │ │ │ │ │ ├── ExceptionUtil.java │ │ │ │ │ ├── ExecuteScriptUtil.java │ │ │ │ │ ├── FocusIdentitiesTypeUtil.java │ │ │ │ │ ├── FocusIdentitySourceTypeUtil.java │ │ │ │ │ ├── FocusIdentityTypeUtil.java │ │ │ │ │ ├── FocusTypeUtil.java │ │ │ │ │ ├── FormTypeUtil.java │ │ │ │ │ ├── FullTextSearchUtil.java │ │ │ │ │ ├── GetOperationOptionsUtil.java │ │ │ │ │ ├── ItemCachedStatus.java │ │ │ │ │ ├── ItemRefinedDefinitionTypeUtil.java │ │ │ │ │ ├── LifecycleUtil.java │ │ │ │ │ ├── LocalizationUtil.java │ │ │ │ │ ├── LoggingSchemaUtil.java │ │ │ │ │ ├── MappingUtil.java │ │ │ │ │ ├── MarkTypeUtil.java │ │ │ │ │ ├── MatchingUtil.java │ │ │ │ │ ├── MiscSchemaUtil.java │ │ │ │ │ ├── ObjectDeltaSchemaLevelUtil.java │ │ │ │ │ ├── ObjectOperationPolicyTypeUtil.java │ │ │ │ │ ├── ObjectQueryUtil.java │ │ │ │ │ ├── ObjectReferenceTypeUtil.java │ │ │ │ │ ├── ObjectSet.java │ │ │ │ │ ├── ObjectTemplateTypeUtil.java │ │ │ │ │ ├── ObjectTypeUtil.java │ │ │ │ │ ├── OidUtil.java │ │ │ │ │ ├── OperationResultUtil.java │ │ │ │ │ ├── ParamsTypeUtil.java │ │ │ │ │ ├── PendingOperationTypeUtil.java │ │ │ │ │ ├── PolicyRuleTypeUtil.java │ │ │ │ │ ├── PrismSchemaTypeUtil.java │ │ │ │ │ ├── ProvenanceMetadataUtil.java │ │ │ │ │ ├── RawRepoShadow.java │ │ │ │ │ ├── ReportParameterTypeUtil.java │ │ │ │ │ ├── ReportTypeUtil.java │ │ │ │ │ ├── Resource.java │ │ │ │ │ ├── ResourceObjectTypeDefinitionTypeUtil.java │ │ │ │ │ ├── ResourceObjectTypeDependencyTypeUtil.java │ │ │ │ │ ├── ResourceTypeUtil.java │ │ │ │ │ ├── SchemaDebugUtil.java │ │ │ │ │ ├── SchemaDeputyUtil.java │ │ │ │ │ ├── SchemaTestConstants.java │ │ │ │ │ ├── ScriptingBeansUtil.java │ │ │ │ │ ├── SecurityPolicyUtil.java │ │ │ │ │ ├── SelectorQualifiedGetOptionsUtil.java │ │ │ │ │ ├── ShadowAssociationsCollection.java │ │ │ │ │ ├── ShadowAssociationsMap.java │ │ │ │ │ ├── ShadowAssociationsUtil.java │ │ │ │ │ ├── ShadowBuilder.java │ │ │ │ │ ├── ShadowObjectClassStatisticsTypeUtil.java │ │ │ │ │ ├── ShadowObjectTypeStatisticsTypeUtil.java │ │ │ │ │ ├── ShadowReferenceAttributesCollection.java │ │ │ │ │ ├── ShadowUtil.java │ │ │ │ │ ├── SimpleExpressionUtil.java │ │ │ │ │ ├── SimpleObjectResolver.java │ │ │ │ │ ├── SimulationMetricPartitionDimensionsTypeUtil.java │ │ │ │ │ ├── SimulationMetricPartitionScopeTypeUtil.java │ │ │ │ │ ├── SimulationMetricPartitionTypeCollectionUtil.java │ │ │ │ │ ├── SimulationMetricPartitionTypeUtil.java │ │ │ │ │ ├── SimulationMetricReferenceTypeUtil.java │ │ │ │ │ ├── SimulationMetricValuesTypeCollectionUtil.java │ │ │ │ │ ├── SimulationMetricValuesTypeUtil.java │ │ │ │ │ ├── SimulationResultTypeUtil.java │ │ │ │ │ ├── SimulationUtil.java │ │ │ │ │ ├── SmartMetadataUtil.java │ │ │ │ │ ├── SyncSituationUtil.java │ │ │ │ │ ├── SystemConfigurationAuditUtil.java │ │ │ │ │ ├── SystemConfigurationTypeUtil.java │ │ │ │ │ ├── TraceUtil.java │ │ │ │ │ ├── UcfChangeUtil.java │ │ │ │ │ ├── ValueDisplayUtil.java │ │ │ │ │ ├── ValueMetadataTypeUtil.java │ │ │ │ │ ├── WorkItemId.java │ │ │ │ │ ├── cases │ │ │ │ │ │ ├── ApprovalContextUtil.java │ │ │ │ │ │ ├── ApprovalUtils.java │ │ │ │ │ │ ├── CaseEventUtil.java │ │ │ │ │ │ ├── CaseRelatedUtils.java │ │ │ │ │ │ ├── CaseState.java │ │ │ │ │ │ ├── CaseTriggeringUtil.java │ │ │ │ │ │ ├── CaseTypeUtil.java │ │ │ │ │ │ ├── CorrelationCaseUtil.java │ │ │ │ │ │ ├── ManualCaseUtils.java │ │ │ │ │ │ ├── OwnerOptionIdentifier.java │ │ │ │ │ │ └── WorkItemTypeUtil.java │ │ │ │ │ ├── cid │ │ │ │ │ │ └── ContainerValueIdGenerator.java │ │ │ │ │ ├── delta │ │ │ │ │ │ └── ItemDeltaFilter.java │ │ │ │ │ ├── expression │ │ │ │ │ │ └── ExpressionTypeUtil.java │ │ │ │ │ ├── roles │ │ │ │ │ │ ├── RoleManagementUtil.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── task │ │ │ │ │ │ ├── ActivityBasedTaskInformation.java │ │ │ │ │ │ ├── ActivityDefinitionBuilder.java │ │ │ │ │ │ ├── ActivityItemProcessingStatisticsUtil.java │ │ │ │ │ │ ├── ActivityPath.java │ │ │ │ │ │ ├── ActivityPerformanceInformation.java │ │ │ │ │ │ ├── ActivityProgressInformation.java │ │ │ │ │ │ ├── ActivityProgressInformationBuilder.java │ │ │ │ │ │ ├── ActivityProgressUtil.java │ │ │ │ │ │ ├── ActivityStateOverviewUtil.java │ │ │ │ │ │ ├── ActivityStateUtil.java │ │ │ │ │ │ ├── ActivityTreeUtil.java │ │ │ │ │ │ ├── ActivityWorkersInformation.java │ │ │ │ │ │ ├── BucketingUtil.java │ │ │ │ │ │ ├── BucketsProgressInformation.java │ │ │ │ │ │ ├── ItemsProgressInformation.java │ │ │ │ │ │ ├── LegacyTaskInformation.java │ │ │ │ │ │ ├── TaskInformation.java │ │ │ │ │ │ ├── TaskOperationStatsUtil.java │ │ │ │ │ │ ├── TaskResolver.java │ │ │ │ │ │ ├── TaskResultStatus.java │ │ │ │ │ │ ├── TaskTreeUtil.java │ │ │ │ │ │ ├── TaskTypeUtil.java │ │ │ │ │ │ ├── TreeTransformingProcessor.java │ │ │ │ │ │ ├── WallClockTimeComputer.java │ │ │ │ │ │ └── work │ │ │ │ │ │ ├── ActivityDefinitionUtil.java │ │ │ │ │ │ ├── BucketingConstants.java │ │ │ │ │ │ ├── ObjectSetUtil.java │ │ │ │ │ │ ├── ResourceObjectSetUtil.java │ │ │ │ │ │ ├── SpecificWorkDefinitionUtil.java │ │ │ │ │ │ ├── WorkDefinitionBean.java │ │ │ │ │ │ └── WorkDefinitionUtil.java │ │ │ │ │ └── validator │ │ │ │ │ ├── ObjectUpgradeValidator.java │ │ │ │ │ ├── ObjectValidator.java │ │ │ │ │ ├── ObjectValidatorListener.java │ │ │ │ │ ├── ProtectedStringViolations.java │ │ │ │ │ ├── UpgradeObjectProcessor.java │ │ │ │ │ ├── UpgradePhase.java │ │ │ │ │ ├── UpgradePriority.java │ │ │ │ │ ├── UpgradeProcessor.java │ │ │ │ │ ├── UpgradeType.java │ │ │ │ │ ├── UpgradeValidationItem.java │ │ │ │ │ ├── UpgradeValidationResult.java │ │ │ │ │ ├── ValidationItem.java │ │ │ │ │ ├── ValidationItemStatus.java │ │ │ │ │ ├── ValidationItemType.java │ │ │ │ │ ├── ValidationResult.java │ │ │ │ │ └── processor │ │ │ │ │ ├── AccountPasswordPolicyProcessor.java │ │ │ │ │ ├── ActivityProfilingProcessor.java │ │ │ │ │ ├── ActivityTracingProcessor.java │ │ │ │ │ ├── AddRemoveAttributeValuesProcessor.java │ │ │ │ │ ├── AdditionalPanelsProcessor.java │ │ │ │ │ ├── ApprovalWorkItemsProcessor.java │ │ │ │ │ ├── AuthenticationNameProcessor.java │ │ │ │ │ ├── BoundaryProcessor.java │ │ │ │ │ ├── CaseTaskRefProcessor.java │ │ │ │ │ ├── CleanupPolicyProcessor.java │ │ │ │ │ ├── ContainerProcessor.java │ │ │ │ │ ├── CredentialsResetNameProcessor.java │ │ │ │ │ ├── CustomTransportProcessor.java │ │ │ │ │ ├── DefaultObjectTypeProcessor.java │ │ │ │ │ ├── DefaultScopeProcessor.java │ │ │ │ │ ├── ExecutionModeProcessor.java │ │ │ │ │ ├── ExecutionRecordProcessor.java │ │ │ │ │ ├── ExpectedTotalProcessor.java │ │ │ │ │ ├── FileTransportProcessor.java │ │ │ │ │ ├── FollowOnProcessor.java │ │ │ │ │ ├── GuiActionNameProcessor.java │ │ │ │ │ ├── LiveSyncErrorHandlingProcessor.java │ │ │ │ │ ├── MailTransportProcessor.java │ │ │ │ │ ├── ModelOperationContextProcessor.java │ │ │ │ │ ├── NonIterativeChangeExecutionProcessor.java │ │ │ │ │ ├── ObjectFormsProcessor.java │ │ │ │ │ ├── OidBoundProcessor.java │ │ │ │ │ ├── PersonaTargetSubtypeProcessor.java │ │ │ │ │ ├── ProcessorMixin.java │ │ │ │ │ ├── PropertyConstraintProcessor.java │ │ │ │ │ ├── ReconcileAffectedProcessor.java │ │ │ │ │ ├── RecurrenceProcessor.java │ │ │ │ │ ├── ReportOutputOidProcessor.java │ │ │ │ │ ├── ResourceSynchronizationProcessor.java │ │ │ │ │ ├── RoleCatalogCollectionsProcessor.java │ │ │ │ │ ├── RoleCatalogRefProcessor.java │ │ │ │ │ ├── RoleManagementDefaultCollectionProcessor.java │ │ │ │ │ ├── Saml2NetworkProcessor.java │ │ │ │ │ ├── SearchItemDisplayNameProcessor.java │ │ │ │ │ ├── SmsTransportProcessor.java │ │ │ │ │ ├── SubtypeProcessor.java │ │ │ │ │ ├── TaskCategoryProcessor.java │ │ │ │ │ ├── TaskPolicyProcessor.java │ │ │ │ │ ├── UseLegacyApproversProcessor.java │ │ │ │ │ ├── UserDashboardLinkProcessor.java │ │ │ │ │ └── UserDashboardProcessor.java │ │ │ ├── resources │ │ │ │ ├── META-INF │ │ │ │ │ ├── catalog-runtime.xml │ │ │ │ │ ├── catalog-schema-dist.xml │ │ │ │ │ ├── jax-ws-catalog.xml │ │ │ │ │ └── schemas-in-this-module.xml │ │ │ │ ├── default-caching-profile.xml │ │ │ │ └── xml │ │ │ │ │ └── ns │ │ │ │ │ ├── private │ │ │ │ │ └── webservice │ │ │ │ │ │ └── modelService.wsdl │ │ │ │ │ └── public │ │ │ │ │ ├── common │ │ │ │ │ ├── api-types-3.xsd │ │ │ │ │ ├── audit-3.xsd │ │ │ │ │ ├── common-3.xsd │ │ │ │ │ ├── common-asynchronous-3.xsd │ │ │ │ │ ├── common-case-management-3.xsd │ │ │ │ │ ├── common-certification-3.xsd │ │ │ │ │ ├── common-complex-attributes-3.xsd │ │ │ │ │ ├── common-connector-dev-3.xsd │ │ │ │ │ ├── common-core-3.xsd │ │ │ │ │ ├── common-correlation-3.xsd │ │ │ │ │ ├── common-gui-3.xsd │ │ │ │ │ ├── common-metadata-3.axiom │ │ │ │ │ ├── common-metadata-3.xsd │ │ │ │ │ ├── common-mining-3.xsd │ │ │ │ │ ├── common-model-context-3.xsd │ │ │ │ │ ├── common-notifications-3.xsd │ │ │ │ │ ├── common-policy-3.xsd │ │ │ │ │ ├── common-provisioning-3.xsd │ │ │ │ │ ├── common-security-3.xsd │ │ │ │ │ ├── common-simulations-3.xsd │ │ │ │ │ ├── common-smart-integration-3.xsd │ │ │ │ │ ├── common-tasks-3.xsd │ │ │ │ │ ├── common-workflows-3.xsd │ │ │ │ │ └── fault-3.wsdl │ │ │ │ │ ├── connector │ │ │ │ │ └── icf-1 │ │ │ │ │ │ ├── connector-extension-3.xsd │ │ │ │ │ │ ├── connector-schema-3.xsd │ │ │ │ │ │ └── resource-schema-3.xsd │ │ │ │ │ ├── model │ │ │ │ │ ├── extension-3.xsd │ │ │ │ │ ├── model-3.wsdl │ │ │ │ │ └── scripting │ │ │ │ │ │ ├── extension-3.xsd │ │ │ │ │ │ └── scripting-3.xsd │ │ │ │ │ ├── prism-schema │ │ │ │ │ └── prism-schema-3.xsd │ │ │ │ │ ├── report │ │ │ │ │ └── extension-3.xsd │ │ │ │ │ ├── resource │ │ │ │ │ ├── annotation-3.xsd │ │ │ │ │ └── capabilities-3.xsd │ │ │ │ │ └── task │ │ │ │ │ ├── extension-3.xsd │ │ │ │ │ ├── jdbc-ping-3.xsd │ │ │ │ │ └── noop-3.xsd │ │ │ └── schemadoc │ │ │ │ ├── resources │ │ │ │ ├── gif │ │ │ │ │ ├── titlebar.gif │ │ │ │ │ └── titlebar_end.gif │ │ │ │ ├── schemaLibraries │ │ │ │ │ ├── Treant.css │ │ │ │ │ ├── Treant.js │ │ │ │ │ ├── jquery.easing.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── jquery.mousewheel.js │ │ │ │ │ ├── panzoom.js │ │ │ │ │ ├── perfect-scrollbar.css │ │ │ │ │ ├── perfect-scrollbar.js │ │ │ │ │ └── raphael.js │ │ │ │ └── style.css │ │ │ │ └── templates │ │ │ │ ├── complex-type-definition.vm │ │ │ │ ├── footer-inc.vm │ │ │ │ ├── header-inc.vm │ │ │ │ ├── items-inc.vm │ │ │ │ ├── object-definition.vm │ │ │ │ ├── schema-index.vm │ │ │ │ └── schema.vm │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── schema │ │ │ │ ├── AbstractSchemaTest.java │ │ │ │ ├── PerfTestCodecObject.java │ │ │ │ ├── TestAxiomQueryLanguage.java │ │ │ │ ├── TestBeanSerialization.java │ │ │ │ ├── TestConfigErrorReporter.java │ │ │ │ ├── TestConstants.java │ │ │ │ ├── TestDeltaConverter.java │ │ │ │ ├── TestDiffEquals.java │ │ │ │ ├── TestDynamicSchema.java │ │ │ │ ├── TestEmptyItems.java │ │ │ │ ├── TestExport.java │ │ │ │ ├── TestFilterSimplifier.java │ │ │ │ ├── TestImmutable.java │ │ │ │ ├── TestJavaSerialization.java │ │ │ │ ├── TestJaxbConstruction.java │ │ │ │ ├── TestJaxbParsing.java │ │ │ │ ├── TestLazyDumpPerformance.java │ │ │ │ ├── TestMiscellaneous.java │ │ │ │ ├── TestObjectConstruction.java │ │ │ │ ├── TestOperationResult.java │ │ │ │ ├── TestParseDiffPatch.java │ │ │ │ ├── TestParseFilter.java │ │ │ │ ├── TestParseGenericObject.java │ │ │ │ ├── TestParseLookupTable.java │ │ │ │ ├── TestParseMisc.java │ │ │ │ ├── TestParseObjectTemplate.java │ │ │ │ ├── TestParsePasswordPolicy.java │ │ │ │ ├── TestParseTask.java │ │ │ │ ├── TestParseTaskBulkAction.java │ │ │ │ ├── TestParseTaskBulkAction2.java │ │ │ │ ├── TestPrismSerialization.java │ │ │ │ ├── TestQueryConverter.java │ │ │ │ ├── TestSchemaDelta.java │ │ │ │ ├── TestSchemaImmutability.java │ │ │ │ ├── TestSchemaRegistry.java │ │ │ │ ├── TestSchemaSanity.java │ │ │ │ ├── TestXmlJsonRoundtrip.java │ │ │ │ ├── merger │ │ │ │ ├── TestMerger.java │ │ │ │ └── TreeDeltaTest.java │ │ │ │ ├── misc │ │ │ │ └── TestMeasuringSizes.java │ │ │ │ ├── parser │ │ │ │ ├── AbstractContainerValueParserTest.java │ │ │ │ ├── AbstractObjectParserTest.java │ │ │ │ ├── AbstractParserTest.java │ │ │ │ ├── AbstractPrismValueParserTest.java │ │ │ │ ├── AbstractPropertyValueParserTest.java │ │ │ │ ├── TestParseApprovalContext.java │ │ │ │ ├── TestParseCertificationCase.java │ │ │ │ ├── TestParseForm.java │ │ │ │ ├── TestParseMapping.java │ │ │ │ ├── TestParseMappingConst.java │ │ │ │ ├── TestParseMappings.java │ │ │ │ ├── TestParseMetarole.java │ │ │ │ ├── TestParseObjects.java │ │ │ │ ├── TestParseObjectsIteratively.java │ │ │ │ ├── TestParseObjectsIterativelyFirstTwo.java │ │ │ │ ├── TestParseObjectsIterativelyWrong.java │ │ │ │ ├── TestParseResource.java │ │ │ │ ├── TestParseScriptOutput.java │ │ │ │ ├── TestParseScriptingExpression.java │ │ │ │ ├── TestParseScriptingExpressionXsiType.java │ │ │ │ ├── TestParseShadow.java │ │ │ │ ├── TestParseShadowLegacy.java │ │ │ │ ├── TestParseSystemConfiguration.java │ │ │ │ ├── TestParseUser.java │ │ │ │ └── TestParseUserPolyString.java │ │ │ │ ├── path │ │ │ │ └── ItemPathCanonicalizationTest.java │ │ │ │ ├── performance │ │ │ │ ├── AbstractSchemaPerformanceTest.java │ │ │ │ ├── PerfTestPrismObjectSize.java │ │ │ │ ├── TestBasicPerformance.java │ │ │ │ ├── TestDeltaPerfComparison.java │ │ │ │ ├── TestDeltaPerformance.java │ │ │ │ └── TestFilterPerformance.java │ │ │ │ ├── processor │ │ │ │ ├── SchemaProcessorTest.java │ │ │ │ └── TestResourceSchema.java │ │ │ │ ├── simulations │ │ │ │ └── TestSimulationMetricComputations.java │ │ │ │ ├── traces │ │ │ │ └── TestParseTrace.java │ │ │ │ ├── util │ │ │ │ ├── PrismSchemaTypeUtilTest.java │ │ │ │ ├── SchemaTestUtil.java │ │ │ │ └── XsdTypeConverterTest.java │ │ │ │ └── validator │ │ │ │ ├── TestObjectValidator.java │ │ │ │ └── processor │ │ │ │ ├── TestUpgradeProcessors.java │ │ │ │ └── UpgradeValidationItemAsserter.java │ │ │ └── resources │ │ │ ├── common │ │ │ ├── account-jack.xml │ │ │ ├── filter.xml │ │ │ ├── generic-sample-configuration.xml │ │ │ ├── json │ │ │ │ ├── no-ns │ │ │ │ │ ├── form.json │ │ │ │ │ ├── objects-wrong.json │ │ │ │ │ ├── objects.json │ │ │ │ │ ├── resource-expression.json │ │ │ │ │ ├── resource-opendj-simple.json │ │ │ │ │ ├── resource-opendj.json │ │ │ │ │ ├── scripting-expression.json │ │ │ │ │ ├── system-configuration.json │ │ │ │ │ └── user-jack.json │ │ │ │ ├── ns │ │ │ │ │ ├── form.json │ │ │ │ │ ├── objects-wrong.json │ │ │ │ │ ├── objects.json │ │ │ │ │ ├── resource-expression.json │ │ │ │ │ ├── resource-opendj-simple.json │ │ │ │ │ ├── resource-opendj.json │ │ │ │ │ ├── scripting-expression.json │ │ │ │ │ ├── shadow-hbarbossa.json │ │ │ │ │ ├── system-configuration.json │ │ │ │ │ └── user-jack.json │ │ │ │ └── resource-opendj.json │ │ │ ├── lookup-table.xml │ │ │ ├── password-policy.xml │ │ │ ├── resource-opendj-no-xmlns.xml │ │ │ ├── role-construction.xml │ │ │ ├── role-legacy.xml │ │ │ ├── role.xml │ │ │ ├── task-1.xml │ │ │ ├── task-bulk-action-1.xml │ │ │ ├── task-bulk-action-2.xml │ │ │ ├── user-barbossa-modify-delete-assignment-account-opendj-attr.xml │ │ │ ├── user-barbossa.xml │ │ │ ├── user-bill.xml │ │ │ ├── user-jack.xml │ │ │ ├── xml │ │ │ │ ├── no-ns │ │ │ │ │ ├── form.xml │ │ │ │ │ ├── objects-wrong.xml │ │ │ │ │ ├── objects.xml │ │ │ │ │ ├── resource-expression.xml │ │ │ │ │ ├── resource-opendj-simple.xml │ │ │ │ │ ├── resource-opendj.xml │ │ │ │ │ ├── scripting-expression.xml │ │ │ │ │ ├── system-configuration.xml │ │ │ │ │ └── user-jack.xml │ │ │ │ └── ns │ │ │ │ │ ├── approval-context.xml │ │ │ │ │ ├── certification-case-1.xml │ │ │ │ │ ├── form.xml │ │ │ │ │ ├── mapping-const.xml │ │ │ │ │ ├── mapping.xml │ │ │ │ │ ├── mappings.xml │ │ │ │ │ ├── metarole.xml │ │ │ │ │ ├── objects-wrong.xml │ │ │ │ │ ├── objects.xml │ │ │ │ │ ├── resource-expression.xml │ │ │ │ │ ├── resource-opendj-simple.xml │ │ │ │ │ ├── resource-opendj.xml │ │ │ │ │ ├── script-output.xml │ │ │ │ │ ├── scripting-expression-xsi-type.xml │ │ │ │ │ ├── scripting-expression.xml │ │ │ │ │ ├── shadow-hbarbossa-legacy.xml │ │ │ │ │ ├── shadow-hbarbossa.xml │ │ │ │ │ ├── system-configuration.xml │ │ │ │ │ ├── user-jack-polystring.xml │ │ │ │ │ └── user-jack.xml │ │ │ └── yaml │ │ │ │ ├── no-ns │ │ │ │ ├── form.yaml │ │ │ │ ├── objects-wrong.yaml │ │ │ │ ├── objects.yaml │ │ │ │ ├── resource-expression.yaml │ │ │ │ ├── resource-opendj-simple.yaml │ │ │ │ ├── resource-opendj.yaml │ │ │ │ ├── scripting-expression.yaml │ │ │ │ ├── system-configuration.yaml │ │ │ │ └── user-jack.yaml │ │ │ │ └── ns │ │ │ │ ├── form.yaml │ │ │ │ ├── objects-wrong.yaml │ │ │ │ ├── objects.yaml │ │ │ │ ├── resource-expression.yaml │ │ │ │ ├── resource-opendj-simple.yaml │ │ │ │ ├── resource-opendj.yaml │ │ │ │ ├── scripting-expression.yaml │ │ │ │ ├── system-configuration.yaml │ │ │ │ └── user-jack.yaml │ │ │ ├── config-error-reporter │ │ │ ├── object-template-1.xml │ │ │ └── resource-1.xml │ │ │ ├── converter │ │ │ └── account-jack.xml │ │ │ ├── delta │ │ │ ├── delta-metadata.xml │ │ │ ├── role-base.xml │ │ │ ├── role-left.xml │ │ │ └── role-right.xml │ │ │ ├── deltaconverter │ │ │ ├── resource-modify-non-exists-attribute.xml │ │ │ ├── role-modify-inducement.xml │ │ │ ├── task-new.xml │ │ │ ├── task-old.xml │ │ │ ├── user-modify-add-account.xml │ │ │ ├── user-modify-add-role-pirate.xml │ │ │ ├── user-modify-extension.xml │ │ │ ├── user-modify-givenname-with-metadata.xml │ │ │ ├── user-modify-givenname.xml │ │ │ └── user-modify-password.xml │ │ │ ├── diff │ │ │ ├── campaign-1.xml │ │ │ ├── res-1.xml │ │ │ ├── res-2.xml │ │ │ ├── resource-after-const.xml │ │ │ ├── resource-after.xml │ │ │ ├── resource-before.xml │ │ │ ├── resource-white-after.xml │ │ │ ├── resource-white-before.xml │ │ │ ├── resource2-broken.xml │ │ │ ├── resource2-fixed.xml │ │ │ ├── role-1.xml │ │ │ ├── role-2.xml │ │ │ ├── role-compare.xml │ │ │ ├── shadow-before.xml │ │ │ ├── system-configuration-1.xml │ │ │ ├── system-configuration-2.xml │ │ │ ├── system-configuration-after.xml │ │ │ ├── system-configuration-before.xml │ │ │ ├── task-after.xml │ │ │ ├── task-before.xml │ │ │ ├── user-after-extension-change.xml │ │ │ ├── user-after-failed-login.xml │ │ │ ├── user-before.xml │ │ │ ├── user-jack-after.xml │ │ │ ├── user-jack-before.xml │ │ │ ├── user-real-after.xml │ │ │ └── user-real-before.xml │ │ │ ├── expression │ │ │ ├── expression-1.xml │ │ │ └── expression-explicit-ns.xml │ │ │ ├── logback-test.xml │ │ │ ├── merger │ │ │ ├── archetype │ │ │ │ ├── archetype-task-live-sync-result.xml │ │ │ │ ├── archetype-task-live-sync-source.xml │ │ │ │ └── archetype-task-live-sync-target.xml │ │ │ ├── dashboard │ │ │ │ ├── dashboard-admin-result.xml │ │ │ │ ├── dashboard-admin-source.xml │ │ │ │ └── dashboard-admin-target.xml │ │ │ ├── lookup-table │ │ │ │ ├── lookup-table-result.xml │ │ │ │ ├── lookup-table-source.xml │ │ │ │ └── lookup-table-target.xml │ │ │ ├── mark │ │ │ │ ├── mark-focus-deactivated-result.xml │ │ │ │ ├── mark-focus-deactivated-source.xml │ │ │ │ └── mark-focus-deactivated-target.xml │ │ │ ├── object-collection │ │ │ │ ├── object-collection-resource-up-result.xml │ │ │ │ ├── object-collection-resource-up-source.xml │ │ │ │ └── object-collection-resource-up-target.xml │ │ │ ├── report │ │ │ │ ├── report-certification-campaigns-result.xml │ │ │ │ ├── report-certification-campaigns-source.xml │ │ │ │ └── report-certification-campaigns-target.xml │ │ │ ├── role │ │ │ │ ├── role-enduser-result.xml │ │ │ │ ├── role-enduser-source.xml │ │ │ │ ├── role-enduser-target.xml │ │ │ │ ├── role-superuser-result.xml │ │ │ │ ├── role-superuser-source.xml │ │ │ │ └── role-superuser-target.xml │ │ │ ├── security-policy │ │ │ │ ├── security-policy-result.xml │ │ │ │ ├── security-policy-source.xml │ │ │ │ └── security-policy-target.xml │ │ │ ├── system-configuration │ │ │ │ ├── system-configuration-result.xml │ │ │ │ ├── system-configuration-source.xml │ │ │ │ └── system-configuration-target.xml │ │ │ ├── task │ │ │ │ ├── task-validity-result.xml │ │ │ │ ├── task-validity-source.xml │ │ │ │ └── task-validity-target.xml │ │ │ ├── user │ │ │ │ ├── user-administrator-result.xml │ │ │ │ ├── user-administrator-source.xml │ │ │ │ └── user-administrator-target.xml │ │ │ └── value-policy │ │ │ │ ├── value-policy-result.xml │ │ │ │ ├── value-policy-source.xml │ │ │ │ └── value-policy-target.xml │ │ │ ├── misc │ │ │ ├── role-filters.xml │ │ │ └── role-remove-items.xml │ │ │ ├── object-template │ │ │ ├── object-template.xml │ │ │ ├── user-template.xml │ │ │ └── wrong-template.xml │ │ │ ├── performance │ │ │ └── user-jack.xml │ │ │ ├── processor │ │ │ ├── object1.xml │ │ │ ├── resource-schema-complex.xsd │ │ │ ├── resource-schema-simple.xsd │ │ │ └── serialized │ │ │ │ ├── 0.ser │ │ │ │ ├── 1.ser │ │ │ │ └── 2.ser │ │ │ ├── queryconverter │ │ │ ├── filter-account-by-attributes-and-resource-ref-no-ns.xml │ │ │ ├── filter-account-by-attributes-and-resource-ref.xml │ │ │ ├── filter-account.xml │ │ │ ├── filter-and-generic.xml │ │ │ ├── filter-by-type.xml │ │ │ ├── filter-connector-by-type.xml │ │ │ ├── filter-equals-with-typed-value.xml │ │ │ ├── filter-not-equals-null.xml │ │ │ ├── filter-or-composite.xml │ │ │ ├── filter-user-by-fullName.xml │ │ │ ├── filter-user-by-name.xml │ │ │ ├── filter-user-substring-anchor-start-end-expression-axiom.xml │ │ │ ├── filter-user-substring-anchor-start-end-expression.xml │ │ │ ├── filter-user-substring-employeeType.xml │ │ │ ├── filter-user-substring-expression-axiom.xml │ │ │ ├── filter-user-substring-expression.xml │ │ │ ├── filter-user-substring-fullName.xml │ │ │ ├── test100All.xml │ │ │ ├── test110None.xml │ │ │ ├── test120Undefined.xml │ │ │ ├── test200Equal.xml │ │ │ ├── test210EqualMultiple.xml │ │ │ ├── test220EqualRightHandItem.xml │ │ │ ├── test300Greater.xml │ │ │ ├── test305GreaterLesserMatchingNorm.xml │ │ │ ├── test305GreaterOrEqual.xml │ │ │ ├── test310AllComparisons.xml │ │ │ ├── test350Substring.xml │ │ │ ├── test360Ref.xml │ │ │ ├── test365RefTwoWay.xml │ │ │ ├── test400OrgFilterRoot.xml │ │ │ ├── test410OrgFilterSubtree.xml │ │ │ ├── test420OrgFilterDirect.xml │ │ │ ├── test430OrgFilterDefaultScope.xml │ │ │ ├── test500InOid.xml │ │ │ ├── test505InOidEmpty.xml │ │ │ ├── test510InOidContainer.xml │ │ │ ├── test590Logicals.xml │ │ │ ├── test595Logicals2.xml │ │ │ ├── test600Type.xml │ │ │ ├── test700Exists.xml │ │ │ └── test900TypeWrong.xml │ │ │ ├── schema-immutability │ │ │ └── resource-dummy-vault.xml │ │ │ ├── schema-registry │ │ │ └── data-schemadir.xml │ │ │ ├── schema │ │ │ ├── extension.xsd │ │ │ ├── extension2.xsd │ │ │ └── schema-extension.xml │ │ │ ├── serialization │ │ │ └── role-with-raw-path.xml │ │ │ ├── simulations │ │ │ ├── test1-base.xml │ │ │ ├── test1-delta.xml │ │ │ ├── test1-expected-sum-collapsed.xml │ │ │ └── test1-expected-sum.xml │ │ │ ├── testdata │ │ │ ├── attribute-description-1.xml │ │ │ └── attribute-description-2.xml │ │ │ ├── traces │ │ │ ├── trace-assign-dummy.zip │ │ │ ├── trace-modify-cost-center.zip │ │ │ ├── trace-modify-employee-type-buccaneer.zip │ │ │ ├── trace-modify-employee-type.zip │ │ │ ├── trace-modify-given-name.zip │ │ │ ├── trace-modify-telephone-number.zip │ │ │ └── trace-reconcile-user.zip │ │ │ ├── util │ │ │ ├── object-change-modify-activation.xml │ │ │ ├── object-change-modify-password-hack.xml │ │ │ ├── object-change-modify-password.xml │ │ │ ├── user-8859-2.xml │ │ │ └── user-utf8.xml │ │ │ ├── validator │ │ │ ├── expected │ │ │ │ ├── archetype.xml │ │ │ │ ├── case.xml │ │ │ │ ├── resource.xml │ │ │ │ ├── role.xml │ │ │ │ ├── security-policy.xml │ │ │ │ ├── system-configuration.xml │ │ │ │ ├── task-livesync.xml │ │ │ │ ├── task-non-iterative.xml │ │ │ │ └── task-recomputation.xml │ │ │ ├── processor │ │ │ │ ├── archetype.xml │ │ │ │ ├── case.xml │ │ │ │ ├── resource.xml │ │ │ │ ├── role.xml │ │ │ │ ├── security-policy.xml │ │ │ │ ├── system-configuration.xml │ │ │ │ ├── task-livesync.xml │ │ │ │ ├── task-non-iterative.xml │ │ │ │ └── task-recomputation.xml │ │ │ ├── role-one-legacy.xml │ │ │ ├── role-one.xml │ │ │ ├── role-two.xml │ │ │ └── role.xml │ │ │ └── xmljson │ │ │ ├── model-intest-resource-dummy.xml │ │ │ ├── resource-async-inbound.xml │ │ │ ├── role-mid-6321.xml │ │ │ ├── task-delete-dummy-shadows.skip.xml │ │ │ ├── task-reconcile-dummy-filter.skip.xml │ │ │ └── user-template-complex.xml │ ├── testng-perf.xml │ └── testng-unit.xml └── test-util │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── test │ │ │ │ ├── amqp │ │ │ │ └── EmbeddedBroker.java │ │ │ │ ├── ldap │ │ │ │ ├── AbstractResourceController.java │ │ │ │ └── OpenDJController.java │ │ │ │ └── util │ │ │ │ ├── AbstractSpringTest.java │ │ │ │ ├── ActualReturningAssert.java │ │ │ │ ├── Counter.java │ │ │ │ ├── DerbyController.java │ │ │ │ ├── InfraTestMixin.java │ │ │ │ ├── LogfileTestTailer.java │ │ │ │ ├── Lsof.java │ │ │ │ ├── MidPointAsserts.java │ │ │ │ ├── MidPointTestConstants.java │ │ │ │ ├── MultithreadRunner.java │ │ │ │ ├── OperationResultAssert.java │ │ │ │ ├── ParallelTestThread.java │ │ │ │ ├── TestReportUtil.java │ │ │ │ └── TestUtil.java │ │ └── resources │ │ │ ├── amqp │ │ │ └── default-qpid-config.json │ │ │ └── test-data │ │ │ ├── ldif │ │ │ ├── entries4000-389ds.ldif │ │ │ ├── example-4000.ldif │ │ │ └── example.ldif │ │ │ ├── opendj-4000.template │ │ │ ├── config │ │ │ │ ├── MakeLDIF │ │ │ │ │ ├── cities │ │ │ │ │ ├── example.template │ │ │ │ │ ├── first.names │ │ │ │ │ ├── last.names │ │ │ │ │ ├── states │ │ │ │ │ └── streets │ │ │ │ ├── admin-backend.ldif │ │ │ │ ├── admin-backend.ldif.old │ │ │ │ ├── admin-keystore │ │ │ │ ├── admin-keystore.pin │ │ │ │ ├── admin-truststore │ │ │ │ ├── ads-truststore │ │ │ │ ├── ads-truststore.pin │ │ │ │ ├── archived-configs │ │ │ │ │ ├── config-20150306180837Z.gz │ │ │ │ │ ├── config-20150306180838Z.gz │ │ │ │ │ ├── config-20150306180847Z-2.gz │ │ │ │ │ ├── config-20150306180847Z-3.gz │ │ │ │ │ ├── config-20150306180847Z-4.gz │ │ │ │ │ ├── config-20150306180847Z-5.gz │ │ │ │ │ ├── config-20150306180847Z-6.gz │ │ │ │ │ ├── config-20150306180847Z-7.gz │ │ │ │ │ ├── config-20150306180847Z-8.gz │ │ │ │ │ ├── config-20150306180847Z-9.gz │ │ │ │ │ ├── config-20150306180847Z.gz │ │ │ │ │ ├── config-20150309121334Z.gz │ │ │ │ │ ├── config-20150309121447Z.gz │ │ │ │ │ ├── config-20150309121449Z.gz │ │ │ │ │ ├── config-20150309121523Z.gz │ │ │ │ │ ├── config-20150309121529Z.gz │ │ │ │ │ └── config-20150309121757Z.gz │ │ │ │ ├── buildinfo │ │ │ │ ├── config.ldif │ │ │ │ ├── config.ldif.startok │ │ │ │ ├── http-config.json │ │ │ │ ├── java.properties │ │ │ │ ├── messages │ │ │ │ │ ├── account-disabled.template │ │ │ │ │ ├── account-enabled.template │ │ │ │ │ ├── account-expired.template │ │ │ │ │ ├── account-idle-locked.template │ │ │ │ │ ├── account-permanently-locked.template │ │ │ │ │ ├── account-reset-locked.template │ │ │ │ │ ├── account-temporarily-locked.template │ │ │ │ │ ├── account-unlocked.template │ │ │ │ │ ├── password-changed.template │ │ │ │ │ ├── password-expired.template │ │ │ │ │ ├── password-expiring.template │ │ │ │ │ └── password-reset.template │ │ │ │ ├── schema │ │ │ │ │ ├── 00-core.ldif │ │ │ │ │ ├── 01-pwpolicy.ldif │ │ │ │ │ ├── 02-config.ldif │ │ │ │ │ ├── 03-changelog.ldif │ │ │ │ │ ├── 03-pwpolicyextension.ldif │ │ │ │ │ ├── 03-rfc2713.ldif │ │ │ │ │ ├── 03-rfc2714.ldif │ │ │ │ │ ├── 03-rfc2739.ldif │ │ │ │ │ ├── 03-rfc2926.ldif │ │ │ │ │ ├── 03-rfc3112.ldif │ │ │ │ │ ├── 03-rfc3712.ldif │ │ │ │ │ ├── 03-uddiv3.ldif │ │ │ │ │ ├── 04-rfc2307bis.ldif │ │ │ │ │ ├── 05-rfc4876.ldif │ │ │ │ │ ├── 05-samba.ldif │ │ │ │ │ ├── 05-solaris.ldif │ │ │ │ │ ├── 06-compat.ldif │ │ │ │ │ └── 99-user.ldif │ │ │ │ ├── tasks.ldif │ │ │ │ ├── tasks.ldif.save │ │ │ │ ├── tools.properties │ │ │ │ ├── upgrade │ │ │ │ │ ├── schema.ldif.-1 │ │ │ │ │ └── schema.ldif.current │ │ │ │ └── wordlist.txt │ │ │ ├── db │ │ │ │ └── userRoot │ │ │ │ │ ├── 00000000.jdb │ │ │ │ │ ├── je.config.csv │ │ │ │ │ ├── je.info.0 │ │ │ │ │ ├── je.lck │ │ │ │ │ └── je.stat.csv │ │ │ ├── locks │ │ │ │ ├── backend-adminRoot.lock │ │ │ │ ├── backend-ads-truststore.lock │ │ │ │ ├── backend-backup.lock │ │ │ │ ├── backend-monitor.lock │ │ │ │ ├── backend-replicationChanges.lock │ │ │ │ ├── backend-schema.lock │ │ │ │ ├── backend-tasks.lock │ │ │ │ ├── backend-userRoot.lock │ │ │ │ └── server.lock │ │ │ └── logs │ │ │ │ ├── access │ │ │ │ ├── errors │ │ │ │ ├── replication │ │ │ │ └── server.out │ │ │ ├── opendj.template.ri │ │ │ ├── config │ │ │ │ ├── MakeLDIF │ │ │ │ │ ├── cities │ │ │ │ │ ├── example.template │ │ │ │ │ ├── first.names │ │ │ │ │ ├── last.names │ │ │ │ │ ├── states │ │ │ │ │ └── streets │ │ │ │ ├── admin-backend.ldif │ │ │ │ ├── admin-backend.ldif.old │ │ │ │ ├── admin-keystore │ │ │ │ ├── admin-keystore.pin │ │ │ │ ├── admin-truststore │ │ │ │ ├── ads-truststore │ │ │ │ ├── ads-truststore.pin │ │ │ │ ├── archived-configs │ │ │ │ │ ├── config-20150306180837Z.gz │ │ │ │ │ ├── config-20150306180838Z.gz │ │ │ │ │ ├── config-20150306180847Z-2.gz │ │ │ │ │ ├── config-20150306180847Z-3.gz │ │ │ │ │ ├── config-20150306180847Z-4.gz │ │ │ │ │ ├── config-20150306180847Z-5.gz │ │ │ │ │ ├── config-20150306180847Z-6.gz │ │ │ │ │ ├── config-20150306180847Z-7.gz │ │ │ │ │ ├── config-20150306180847Z-8.gz │ │ │ │ │ ├── config-20150306180847Z-9.gz │ │ │ │ │ ├── config-20150306180847Z.gz │ │ │ │ │ ├── config-20150306181208Z.gz │ │ │ │ │ ├── config-20150306181505Z.gz │ │ │ │ │ ├── config-20150306181507Z.gz │ │ │ │ │ └── config-20150306181728Z.gz │ │ │ │ ├── buildinfo │ │ │ │ ├── config.ldif │ │ │ │ ├── config.ldif.startok │ │ │ │ ├── http-config.json │ │ │ │ ├── java.properties │ │ │ │ ├── messages │ │ │ │ │ ├── account-disabled.template │ │ │ │ │ ├── account-enabled.template │ │ │ │ │ ├── account-expired.template │ │ │ │ │ ├── account-idle-locked.template │ │ │ │ │ ├── account-permanently-locked.template │ │ │ │ │ ├── account-reset-locked.template │ │ │ │ │ ├── account-temporarily-locked.template │ │ │ │ │ ├── account-unlocked.template │ │ │ │ │ ├── password-changed.template │ │ │ │ │ ├── password-expired.template │ │ │ │ │ ├── password-expiring.template │ │ │ │ │ └── password-reset.template │ │ │ │ ├── schema │ │ │ │ │ ├── 00-core.ldif │ │ │ │ │ ├── 01-pwpolicy.ldif │ │ │ │ │ ├── 02-config.ldif │ │ │ │ │ ├── 03-changelog.ldif │ │ │ │ │ ├── 03-pwpolicyextension.ldif │ │ │ │ │ ├── 03-rfc2713.ldif │ │ │ │ │ ├── 03-rfc2714.ldif │ │ │ │ │ ├── 03-rfc2739.ldif │ │ │ │ │ ├── 03-rfc2926.ldif │ │ │ │ │ ├── 03-rfc3112.ldif │ │ │ │ │ ├── 03-rfc3712.ldif │ │ │ │ │ ├── 03-uddiv3.ldif │ │ │ │ │ ├── 04-rfc2307bis.ldif │ │ │ │ │ ├── 05-rfc4876.ldif │ │ │ │ │ ├── 05-samba.ldif │ │ │ │ │ ├── 05-solaris.ldif │ │ │ │ │ ├── 06-compat.ldif │ │ │ │ │ └── 99-user.ldif │ │ │ │ ├── tasks.ldif │ │ │ │ ├── tasks.ldif.save │ │ │ │ ├── tools.properties │ │ │ │ ├── upgrade │ │ │ │ │ ├── schema.ldif.-1 │ │ │ │ │ └── schema.ldif.current │ │ │ │ └── wordlist.txt │ │ │ ├── db │ │ │ │ └── userRoot │ │ │ │ │ ├── 00000000.jdb │ │ │ │ │ ├── je.config.csv │ │ │ │ │ ├── je.info.0 │ │ │ │ │ ├── je.lck │ │ │ │ │ └── je.stat.csv │ │ │ ├── locks │ │ │ │ ├── backend-adminRoot.lock │ │ │ │ ├── backend-ads-truststore.lock │ │ │ │ ├── backend-backup.lock │ │ │ │ ├── backend-monitor.lock │ │ │ │ ├── backend-replicationChanges.lock │ │ │ │ ├── backend-schema.lock │ │ │ │ ├── backend-tasks.lock │ │ │ │ ├── backend-userRoot.lock │ │ │ │ └── server.lock │ │ │ └── logs │ │ │ │ ├── access │ │ │ │ ├── errors │ │ │ │ ├── replication │ │ │ │ └── server.out │ │ │ └── opendj.template │ │ │ ├── config │ │ │ ├── MakeLDIF │ │ │ │ ├── cities │ │ │ │ ├── example.template │ │ │ │ ├── first.names │ │ │ │ ├── last.names │ │ │ │ ├── states │ │ │ │ └── streets │ │ │ ├── admin-backend.ldif │ │ │ ├── admin-backend.ldif.old │ │ │ ├── admin-keystore │ │ │ ├── admin-keystore.pin │ │ │ ├── admin-truststore │ │ │ ├── ads-truststore │ │ │ ├── ads-truststore.pin │ │ │ ├── archived-configs │ │ │ │ ├── config-20150306180837Z.gz │ │ │ │ ├── config-20150306180838Z.gz │ │ │ │ ├── config-20150306180847Z-2.gz │ │ │ │ ├── config-20150306180847Z-3.gz │ │ │ │ ├── config-20150306180847Z-4.gz │ │ │ │ ├── config-20150306180847Z-5.gz │ │ │ │ ├── config-20150306180847Z-6.gz │ │ │ │ ├── config-20150306180847Z-7.gz │ │ │ │ ├── config-20150306180847Z-8.gz │ │ │ │ ├── config-20150306180847Z-9.gz │ │ │ │ ├── config-20150306180847Z.gz │ │ │ │ ├── config-20150306181208Z.gz │ │ │ │ ├── config-20150306181505Z.gz │ │ │ │ ├── config-20150306181507Z.gz │ │ │ │ └── config-20150306181728Z.gz │ │ │ ├── buildinfo │ │ │ ├── config.ldif │ │ │ ├── config.ldif.startok │ │ │ ├── http-config.json │ │ │ ├── java.properties │ │ │ ├── messages │ │ │ │ ├── account-disabled.template │ │ │ │ ├── account-enabled.template │ │ │ │ ├── account-expired.template │ │ │ │ ├── account-idle-locked.template │ │ │ │ ├── account-permanently-locked.template │ │ │ │ ├── account-reset-locked.template │ │ │ │ ├── account-temporarily-locked.template │ │ │ │ ├── account-unlocked.template │ │ │ │ ├── password-changed.template │ │ │ │ ├── password-expired.template │ │ │ │ ├── password-expiring.template │ │ │ │ └── password-reset.template │ │ │ ├── schema │ │ │ │ ├── 00-core.ldif │ │ │ │ ├── 01-pwpolicy.ldif │ │ │ │ ├── 02-config.ldif │ │ │ │ ├── 03-changelog.ldif │ │ │ │ ├── 03-pwpolicyextension.ldif │ │ │ │ ├── 03-rfc2713.ldif │ │ │ │ ├── 03-rfc2714.ldif │ │ │ │ ├── 03-rfc2739.ldif │ │ │ │ ├── 03-rfc2926.ldif │ │ │ │ ├── 03-rfc3112.ldif │ │ │ │ ├── 03-rfc3712.ldif │ │ │ │ ├── 03-uddiv3.ldif │ │ │ │ ├── 04-rfc2307bis.ldif │ │ │ │ ├── 05-rfc4876.ldif │ │ │ │ ├── 05-samba.ldif │ │ │ │ ├── 05-solaris.ldif │ │ │ │ ├── 06-compat.ldif │ │ │ │ └── 99-user.ldif │ │ │ ├── tasks.ldif │ │ │ ├── tasks.ldif.save │ │ │ ├── tools.properties │ │ │ ├── upgrade │ │ │ │ ├── schema.ldif.-1 │ │ │ │ └── schema.ldif.current │ │ │ └── wordlist.txt │ │ │ ├── db │ │ │ └── userRoot │ │ │ │ ├── 00000000.jdb │ │ │ │ ├── je.config.csv │ │ │ │ ├── je.info.0 │ │ │ │ ├── je.lck │ │ │ │ └── je.stat.csv │ │ │ ├── locks │ │ │ ├── backend-adminRoot.lock │ │ │ ├── backend-ads-truststore.lock │ │ │ ├── backend-backup.lock │ │ │ ├── backend-monitor.lock │ │ │ ├── backend-replicationChanges.lock │ │ │ ├── backend-schema.lock │ │ │ ├── backend-tasks.lock │ │ │ ├── backend-userRoot.lock │ │ │ └── server.lock │ │ │ └── logs │ │ │ ├── access │ │ │ ├── errors │ │ │ ├── replication │ │ │ └── server.out │ └── test │ │ ├── java │ │ └── com │ │ │ └── evolveum │ │ │ └── midpoint │ │ │ └── test │ │ │ └── util │ │ │ └── DerbyControllerTest.java │ │ └── resources │ │ └── standard │ │ ├── XMLSchema.dtd │ │ └── XMLSchema.xsd │ └── testng-unit.xml ├── install-dist.adoc ├── model ├── authentication-api │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── evolveum │ │ │ └── midpoint │ │ │ └── authentication │ │ │ └── api │ │ │ ├── AuthModule.java │ │ │ ├── AuthenticationChannel.java │ │ │ ├── AuthenticationModuleState.java │ │ │ ├── AutheticationFailedData.java │ │ │ ├── IdentityProvider.java │ │ │ ├── LoginFormModuleFactory.java │ │ │ ├── MidpointSessionRegistry.java │ │ │ ├── ModuleFactory.java │ │ │ ├── ModuleWebSecurityConfiguration.java │ │ │ ├── RemoveUnusedSecurityFilterEvent.java │ │ │ ├── RemoveUnusedSecurityFilterPublisher.java │ │ │ ├── ResetPasswordChannelFactory.java │ │ │ ├── authorization │ │ │ ├── AuthorizationAction.java │ │ │ ├── AuthorizationActionValue.java │ │ │ ├── DescriptorLoader.java │ │ │ ├── EndPointsUrlMapping.java │ │ │ ├── PageDescriptor.java │ │ │ └── Url.java │ │ │ ├── config │ │ │ ├── ArchetypeSelectionModuleAuthentication.java │ │ │ ├── AttributeVerificationModuleAuthentication.java │ │ │ ├── CorrelationModuleAuthentication.java │ │ │ ├── CredentialModuleAuthentication.java │ │ │ ├── FocusIdentificationModuleAuthentication.java │ │ │ ├── MidpointAuthentication.java │ │ │ ├── ModuleAuthentication.java │ │ │ ├── NodeAuthenticationToken.java │ │ │ └── RemoteModuleAuthentication.java │ │ │ ├── evaluator │ │ │ ├── AuthenticationEvaluator.java │ │ │ └── context │ │ │ │ ├── AbstractAuthenticationContext.java │ │ │ │ ├── AttributeVerificationAuthenticationContext.java │ │ │ │ ├── FocusIdentificationAuthenticationContext.java │ │ │ │ ├── NodeAuthenticationContext.java │ │ │ │ ├── NonceAuthenticationContext.java │ │ │ │ ├── PasswordAuthenticationContext.java │ │ │ │ ├── PreAuthenticationContext.java │ │ │ │ └── SecurityQuestionsAuthenticationContext.java │ │ │ └── util │ │ │ ├── AuthConstants.java │ │ │ ├── AuthUtil.java │ │ │ └── AuthenticationModuleNameConstants.java │ │ └── resources │ │ └── ctx-security.xml ├── authentication-impl │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── evolveum │ │ │ │ │ └── midpoint │ │ │ │ │ └── authentication │ │ │ │ │ └── impl │ │ │ │ │ ├── FocusAuthenticationResultRecorder.java │ │ │ │ │ ├── MidpointAuthenticationTrustResolverImpl.java │ │ │ │ │ ├── MidpointAutowiredBeanFactoryObjectPostProcessor.java │ │ │ │ │ ├── MidpointBeanPostProcessor.java │ │ │ │ │ ├── MidpointProviderManager.java │ │ │ │ │ ├── MidpointSecurityContext.java │ │ │ │ │ ├── NotShowedAuthenticationServiceException.java │ │ │ │ │ ├── WicketRedirectStrategy.java │ │ │ │ │ ├── authorization │ │ │ │ │ ├── DescriptorLoaderImpl.java │ │ │ │ │ └── evaluator │ │ │ │ │ │ ├── MidPointGuiAuthorizationEvaluator.java │ │ │ │ │ │ ├── MidpointAllowAllAuthorizationEvaluator.java │ │ │ │ │ │ └── MidpointHttpAuthorizationEvaluator.java │ │ │ │ │ ├── channel │ │ │ │ │ ├── ActuatorAuthenticationChannel.java │ │ │ │ │ ├── AuthenticationChannelImpl.java │ │ │ │ │ ├── GuiAuthenticationChannel.java │ │ │ │ │ ├── IdentityRecoveryAuthenticationChannel.java │ │ │ │ │ ├── InvitationAuthenticationChannel.java │ │ │ │ │ ├── ResetPasswordAuthenticationChannel.java │ │ │ │ │ ├── RestAuthenticationChannel.java │ │ │ │ │ └── SelfRegistrationAuthenticationChannel.java │ │ │ │ │ ├── configuration │ │ │ │ │ ├── InitialSecurityConfiguration.java │ │ │ │ │ ├── MidpointSecurityContextHolderStrategy.java │ │ │ │ │ └── SecurityConfigurer.java │ │ │ │ │ ├── entry │ │ │ │ │ └── point │ │ │ │ │ │ ├── HttpAuthenticationEntryPoint.java │ │ │ │ │ │ ├── HttpSecurityQuestionsAuthenticationEntryPoint.java │ │ │ │ │ │ ├── RemoteAuthenticationEntryPoint.java │ │ │ │ │ │ └── WicketLoginUrlAuthenticationEntryPoint.java │ │ │ │ │ ├── evaluator │ │ │ │ │ ├── AttributeVerificationEvaluatorImpl.java │ │ │ │ │ ├── AuthenticationEvaluatorImpl.java │ │ │ │ │ ├── CredentialsAuthenticationEvaluatorImpl.java │ │ │ │ │ ├── NodeAuthenticationEvaluatorImpl.java │ │ │ │ │ ├── NonceAuthenticationEvaluatorImpl.java │ │ │ │ │ ├── PasswordAuthenticationEvaluatorImpl.java │ │ │ │ │ ├── PreAuthenticatedEvaluatorImpl.java │ │ │ │ │ └── SecurityQuestionAuthenticationEvaluatorImpl.java │ │ │ │ │ ├── factory │ │ │ │ │ ├── channel │ │ │ │ │ │ ├── AbstractChannelFactory.java │ │ │ │ │ │ ├── ActuatorChannelFactory.java │ │ │ │ │ │ ├── AuthChannelRegistryImpl.java │ │ │ │ │ │ ├── DefaultChannelFactory.java │ │ │ │ │ │ ├── GuiChannelFactory.java │ │ │ │ │ │ ├── IdentityRecoveryChannelFactory.java │ │ │ │ │ │ ├── InvitationChannelFactory.java │ │ │ │ │ │ ├── ResetPasswordChannelFactoryImpl.java │ │ │ │ │ │ ├── RestChannelFactory.java │ │ │ │ │ │ └── SelfRegistrationChannelFactory.java │ │ │ │ │ └── module │ │ │ │ │ │ ├── AbstractCredentialModuleFactory.java │ │ │ │ │ │ ├── AbstractModuleFactory.java │ │ │ │ │ │ ├── ArchetypeSelectionModuleFactory.java │ │ │ │ │ │ ├── AttributeVerificationModuleFactory.java │ │ │ │ │ │ ├── AuthModuleRegistryImpl.java │ │ │ │ │ │ ├── CorrelationModuleFactory.java │ │ │ │ │ │ ├── DuoModuleFactory.java │ │ │ │ │ │ ├── FocusIdentificationModuleFactory.java │ │ │ │ │ │ ├── HintAuthenticationModuleFactory.java │ │ │ │ │ │ ├── HttpBasicModuleFactory.java │ │ │ │ │ │ ├── HttpClusterModuleFactory.java │ │ │ │ │ │ ├── HttpHeaderModuleFactory.java │ │ │ │ │ │ ├── HttpSecurityQuestionModuleFactory.java │ │ │ │ │ │ ├── LdapModuleFactory.java │ │ │ │ │ │ ├── LoginFormModuleFactory.java │ │ │ │ │ │ ├── MailNonceModuleFactory.java │ │ │ │ │ │ ├── OidcClientModuleFactory.java │ │ │ │ │ │ ├── OidcResourceServerModuleFactory.java │ │ │ │ │ │ ├── OtherModuleFactory.java │ │ │ │ │ │ ├── RemoteModuleFactory.java │ │ │ │ │ │ ├── Saml2ModuleFactory.java │ │ │ │ │ │ └── SecurityQuestionFormModuleFactory.java │ │ │ │ │ ├── filter │ │ │ │ │ ├── ArchetypeSelectionAuthenticationFilter.java │ │ │ │ │ ├── AttributeVerificationAuthenticationFilter.java │ │ │ │ │ ├── AuthenticationWrapper.java │ │ │ │ │ ├── CorrelationAuthenticationFilter.java │ │ │ │ │ ├── FinishAuthenticationFilter.java │ │ │ │ │ ├── FocusIdentificationAuthenticationFilter.java │ │ │ │ │ ├── HintAuthenticationFilter.java │ │ │ │ │ ├── HttpAuthenticationFilter.java │ │ │ │ │ ├── HttpBasicAuthenticationFilter.java │ │ │ │ │ ├── HttpClusterAuthenticationFilter.java │ │ │ │ │ ├── HttpSecurityQuestionsAuthenticationFilter.java │ │ │ │ │ ├── LdapAuthenticationFilter.java │ │ │ │ │ ├── MailNonceAuthenticationFilter.java │ │ │ │ │ ├── MidpointAnonymousAuthenticationFilter.java │ │ │ │ │ ├── MidpointAuthFilter.java │ │ │ │ │ ├── MidpointExceptionTranslationFilter.java │ │ │ │ │ ├── MidpointFocusVerificationFilter.java │ │ │ │ │ ├── MidpointRequestHeaderAuthenticationFilter.java │ │ │ │ │ ├── MidpointUsernamePasswordAuthenticationFilter.java │ │ │ │ │ ├── PreLogoutFilter.java │ │ │ │ │ ├── RedirectForLoginPagesWithAuthenticationFilter.java │ │ │ │ │ ├── RefuseUnauthenticatedRequestFilter.java │ │ │ │ │ ├── RemoteAuthenticationFilter.java │ │ │ │ │ ├── RemoteModuleAuthorizationFilter.java │ │ │ │ │ ├── SecurityQuestionsAuthenticationFilter.java │ │ │ │ │ ├── SequenceAuditFilter.java │ │ │ │ │ ├── TransformExceptionFilter.java │ │ │ │ │ ├── UseCsrfFilterOnlyForAuthenticatedRequest.java │ │ │ │ │ ├── configurers │ │ │ │ │ │ ├── AuthFilterConfigurer.java │ │ │ │ │ │ ├── MidpointAttributeConfigurer.java │ │ │ │ │ │ ├── MidpointExceptionHandlingConfigurer.java │ │ │ │ │ │ ├── MidpointFormLoginConfigurer.java │ │ │ │ │ │ └── RemoteModuleConfigurer.java │ │ │ │ │ ├── duo │ │ │ │ │ │ ├── DuoAuthenticationFilter.java │ │ │ │ │ │ ├── DuoAuthorizationRequestRedirectFilter.java │ │ │ │ │ │ └── DuoFilterConfigurer.java │ │ │ │ │ ├── ldap │ │ │ │ │ │ ├── AuditedAuthenticationException.java │ │ │ │ │ │ ├── LdapDirContextAdapter.java │ │ │ │ │ │ └── MidpointPrincipalContextMapper.java │ │ │ │ │ ├── oidc │ │ │ │ │ │ ├── OidcAuthorizationRequestRedirectFilter.java │ │ │ │ │ │ ├── OidcBearerTokenAuthenticationFilter.java │ │ │ │ │ │ ├── OidcClientLogoutSuccessHandler.java │ │ │ │ │ │ ├── OidcLoginAuthenticationFilter.java │ │ │ │ │ │ ├── OidcLoginConfigurer.java │ │ │ │ │ │ ├── OidcUserTokenService.java │ │ │ │ │ │ └── OpaqueTokenUserDetailsIntrospector.java │ │ │ │ │ └── saml │ │ │ │ │ │ ├── MidpointAssertingPartyMetadataConverter.java │ │ │ │ │ │ ├── MidpointMetadataRelyingPartyRegistrationResolver.java │ │ │ │ │ │ ├── MidpointSaml2LoginConfigurer.java │ │ │ │ │ │ ├── MidpointSaml2LogoutRequestResolver.java │ │ │ │ │ │ ├── MidpointSaml2LogoutRequestSuccessHandler.java │ │ │ │ │ │ ├── MidpointSaml2WebSsoAuthenticationFilter.java │ │ │ │ │ │ └── MidpointSaml2WebSsoAuthenticationRequestFilter.java │ │ │ │ │ ├── handler │ │ │ │ │ ├── AuditedAccessDeniedHandler.java │ │ │ │ │ ├── AuditedLogoutHandler.java │ │ │ │ │ ├── BasicMidPointAuthenticationSuccessHandler.java │ │ │ │ │ ├── CorrelationAuthenticationSuccessHandler.java │ │ │ │ │ ├── MidPointAuthenticationSuccessHandler.java │ │ │ │ │ ├── MidpointAccessDeniedHandler.java │ │ │ │ │ └── MidpointAuthenticationFailureHandler.java │ │ │ │ │ ├── module │ │ │ │ │ ├── authentication │ │ │ │ │ │ ├── ArchetypeSelectionModuleAuthenticationImpl.java │ │ │ │ │ │ ├── AttributeVerificationModuleAuthenticationImpl.java │ │ │ │ │ │ ├── CorrelationModuleAuthenticationImpl.java │ │ │ │ │ │ ├── CredentialModuleAuthenticationImpl.java │ │ │ │ │ │ ├── DuoModuleAuthentication.java │ │ │ │ │ │ ├── FocusIdentificationModuleAuthenticationImpl.java │ │ │ │ │ │ ├── HintAuthenticationModuleAuthentication.java │ │ │ │ │ │ ├── HttpHeaderModuleAuthentication.java │ │ │ │ │ │ ├── HttpModuleAuthentication.java │ │ │ │ │ │ ├── LdapModuleAuthentication.java │ │ │ │ │ │ ├── LoginFormModuleAuthenticationImpl.java │ │ │ │ │ │ ├── MailNonceModuleAuthenticationImpl.java │ │ │ │ │ │ ├── ModuleAuthenticationImpl.java │ │ │ │ │ │ ├── NodeAuthenticationTokenImpl.java │ │ │ │ │ │ ├── OidcClientModuleAuthenticationImpl.java │ │ │ │ │ │ ├── OidcResourceServerModuleAuthentication.java │ │ │ │ │ │ ├── OtherModuleAuthentication.java │ │ │ │ │ │ ├── RemoteModuleAuthenticationImpl.java │ │ │ │ │ │ ├── Saml2ModuleAuthenticationImpl.java │ │ │ │ │ │ ├── SecurityQuestionFormModuleAuthentication.java │ │ │ │ │ │ └── token │ │ │ │ │ │ │ ├── ArchetypeSelectionAuthenticationToken.java │ │ │ │ │ │ │ ├── AttributeVerificationToken.java │ │ │ │ │ │ │ ├── ClusterAuthenticationToken.java │ │ │ │ │ │ │ ├── CorrelationVerificationToken.java │ │ │ │ │ │ │ ├── DuoRequestToken.java │ │ │ │ │ │ │ ├── FocusVerificationToken.java │ │ │ │ │ │ │ ├── HintAuthenticationToken.java │ │ │ │ │ │ │ ├── LdapAuthenticationToken.java │ │ │ │ │ │ │ ├── MailNonceAuthenticationToken.java │ │ │ │ │ │ │ └── SecurityQuestionsAuthenticationToken.java │ │ │ │ │ ├── configuration │ │ │ │ │ │ ├── DuoModuleWebSecurityConfiguration.java │ │ │ │ │ │ ├── HttpHeaderModuleWebSecurityConfiguration.java │ │ │ │ │ │ ├── JwtOidcResourceServerConfiguration.java │ │ │ │ │ │ ├── LdapModuleWebSecurityConfiguration.java │ │ │ │ │ │ ├── LoginFormModuleWebSecurityConfiguration.java │ │ │ │ │ │ ├── ModuleWebSecurityConfigurationImpl.java │ │ │ │ │ │ ├── OidcAdditionalConfiguration.java │ │ │ │ │ │ ├── OidcClientModuleWebSecurityConfiguration.java │ │ │ │ │ │ ├── OpaqueTokenOidcResourceServerConfiguration.java │ │ │ │ │ │ ├── RemoteModuleWebSecurityConfiguration.java │ │ │ │ │ │ ├── SamlAdditionalConfiguration.java │ │ │ │ │ │ └── SamlModuleWebSecurityConfiguration.java │ │ │ │ │ └── configurer │ │ │ │ │ │ ├── ArchetypeSelectionModuleWebSecurityConfigurer.java │ │ │ │ │ │ ├── AttributeVerificationModuleWebSecurityConfigurer.java │ │ │ │ │ │ ├── CorrelationModuleWebSecurityConfigurer.java │ │ │ │ │ │ ├── DuoModuleWebSecurityConfigurer.java │ │ │ │ │ │ ├── FocusIdentificationModuleWebSecurityConfigurer.java │ │ │ │ │ │ ├── HintModuleWebSecurityConfigurer.java │ │ │ │ │ │ ├── HttpBasicModuleWebSecurityConfigurer.java │ │ │ │ │ │ ├── HttpClusterModuleWebSecurityConfigurer.java │ │ │ │ │ │ ├── HttpHeaderModuleWebSecurityConfigurer.java │ │ │ │ │ │ ├── HttpSecurityQuestionsModuleWebSecurityConfigurer.java │ │ │ │ │ │ ├── LdapWebSecurityConfigurer.java │ │ │ │ │ │ ├── LoginFormModuleWebSecurityConfigurer.java │ │ │ │ │ │ ├── MailNonceFormModuleWebSecurityConfigurer.java │ │ │ │ │ │ ├── ModuleWebSecurityConfigurer.java │ │ │ │ │ │ ├── OidcClientModuleWebSecurityConfigurer.java │ │ │ │ │ │ ├── OidcResourceServerModuleWebSecurityConfigurer.java │ │ │ │ │ │ ├── RemoteModuleWebSecurityConfigurer.java │ │ │ │ │ │ ├── SamlModuleWebSecurityConfigurer.java │ │ │ │ │ │ └── SecurityQuestionsFormModuleWebSecurityConfigurer.java │ │ │ │ │ ├── provider │ │ │ │ │ ├── AbstractAuthenticationProvider.java │ │ │ │ │ ├── AbstractCredentialProvider.java │ │ │ │ │ ├── ArchetypeSelectionAuthenticationProvider.java │ │ │ │ │ ├── AttributeVerificationProvider.java │ │ │ │ │ ├── ClusterProvider.java │ │ │ │ │ ├── CorrelationProvider.java │ │ │ │ │ ├── DuoProvider.java │ │ │ │ │ ├── FocusIdentificationProvider.java │ │ │ │ │ ├── HintAuthenticationProvider.java │ │ │ │ │ ├── MailNonceProvider.java │ │ │ │ │ ├── MidPointLdapAuthenticationProvider.java │ │ │ │ │ ├── MidpointAbstractAuthenticationProvider.java │ │ │ │ │ ├── OidcClientProvider.java │ │ │ │ │ ├── OidcResourceServerProvider.java │ │ │ │ │ ├── PasswordProvider.java │ │ │ │ │ ├── PreAuthenticatedProvider.java │ │ │ │ │ ├── RemoteModuleProvider.java │ │ │ │ │ ├── Saml2Provider.java │ │ │ │ │ └── SecurityQuestionProvider.java │ │ │ │ │ ├── session │ │ │ │ │ ├── MidpointHttpServletRequest.java │ │ │ │ │ ├── MidpointRegisterSessionAuthenticationStrategy.java │ │ │ │ │ ├── MidpointSessionRegistryImpl.java │ │ │ │ │ ├── RemoveUnusedSecurityFilterListener.java │ │ │ │ │ ├── SessionAndRequestScope.java │ │ │ │ │ └── SessionAndRequestScopeImpl.java │ │ │ │ │ └── util │ │ │ │ │ ├── AuthModuleImpl.java │ │ │ │ │ ├── AuthSequenceUtil.java │ │ │ │ │ ├── AuthenticationSequenceModuleCreator.java │ │ │ │ │ ├── ModuleType.java │ │ │ │ │ └── RequestState.java │ │ │ └── resources │ │ │ │ └── ctx-authentication.xml │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── authentication │ │ │ │ ├── TestAuthSequenceUtil.java │ │ │ │ ├── TestIntegrationSecurity.java │ │ │ │ └── evaluator │ │ │ │ ├── TestAbstractAuthenticationEvaluator.java │ │ │ │ ├── TestNonceAuthenticationEvaluator.java │ │ │ │ ├── TestPasswordAuthenticationEvaluator.java │ │ │ │ └── TestSecurityQuestionsAuthenticationEvaluator.java │ │ │ └── resources │ │ │ ├── common │ │ │ ├── role-authorization-1.xml │ │ │ ├── role-authorization-2.xml │ │ │ ├── role-blue.xml │ │ │ ├── role-red.xml │ │ │ ├── role-superuser.xml │ │ │ ├── role-ui-allow-all.xml │ │ │ ├── role-ui-deny-all.xml │ │ │ ├── role-ui-deny-allow.xml │ │ │ ├── role-yellow.xml │ │ │ ├── security-policy.xml │ │ │ ├── system-configuration.xml │ │ │ ├── task-trigger-scanner-on-demand.xml │ │ │ ├── user-administrator.xml │ │ │ ├── user-guybrush.xml │ │ │ ├── user-jack.xml │ │ │ └── user-painter.xml │ │ │ ├── ctx-authentication-test-main.xml │ │ │ └── logback-test.xml │ ├── testng-integration.xml │ └── testng-unit.xml ├── cases-api │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── evolveum │ │ └── midpoint │ │ └── cases │ │ └── api │ │ ├── AuditingConstants.java │ │ ├── CaseEngine.java │ │ ├── CaseEngineOperation.java │ │ ├── CaseManager.java │ │ ├── events │ │ ├── CaseEventCreationListener.java │ │ ├── FutureNotificationEvent.java │ │ ├── WorkItemAllocationChangeOperationInfo.java │ │ ├── WorkItemOperationInfo.java │ │ └── WorkItemOperationSourceInfo.java │ │ ├── extensions │ │ ├── AuditingExtension.java │ │ ├── EngineExtension.java │ │ ├── StageClosingResult.java │ │ ├── StageOpeningResult.java │ │ └── WorkItemCompletionResult.java │ │ ├── request │ │ ├── CancelCaseRequest.java │ │ ├── ClaimWorkItemsRequest.java │ │ ├── CompleteWorkItemsRequest.java │ │ ├── DelegateWorkItemsRequest.java │ │ ├── OpenCaseRequest.java │ │ ├── ReleaseWorkItemsRequest.java │ │ └── Request.java │ │ ├── temporary │ │ ├── ComputationMode.java │ │ └── VariablesProvider.java │ │ └── util │ │ ├── PerformerCommentsFormatter.java │ │ └── QueryUtils.java ├── cases-impl │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── evolveum │ │ │ └── midpoint │ │ │ └── cases │ │ │ └── impl │ │ │ ├── CaseManagerImpl.java │ │ │ ├── TimedActionTriggerHandler.java │ │ │ ├── WorkItemManager.java │ │ │ ├── engine │ │ │ ├── CaseBeans.java │ │ │ ├── CaseEngineImpl.java │ │ │ ├── CaseEngineOperationImpl.java │ │ │ ├── actions │ │ │ │ ├── Action.java │ │ │ │ ├── ActionFactory.java │ │ │ │ ├── CancelCaseAction.java │ │ │ │ ├── ClaimWorkItemsAction.java │ │ │ │ ├── CloseCaseAction.java │ │ │ │ ├── CloseStageAction.java │ │ │ │ ├── CompleteWorkItemsAction.java │ │ │ │ ├── DelegateWorkItemsAction.java │ │ │ │ ├── InternalAction.java │ │ │ │ ├── OpenCaseAction.java │ │ │ │ ├── OpenStageAction.java │ │ │ │ ├── ReleaseWorkItemsAction.java │ │ │ │ └── RequestedAction.java │ │ │ ├── events │ │ │ │ ├── PendingAuditRecords.java │ │ │ │ ├── PendingNotificationEvents.java │ │ │ │ └── package-info.java │ │ │ ├── extension │ │ │ │ ├── CorrelationCaseEngineExtension.java │ │ │ │ ├── DefaultAuditingExtension.java │ │ │ │ ├── DefaultEngineExtension.java │ │ │ │ ├── DefaultStageClosingResult.java │ │ │ │ ├── DefaultStageOpeningResult.java │ │ │ │ ├── DefaultWorkItemCompletionResult.java │ │ │ │ └── ManualProvisioningCaseEngineExtension.java │ │ │ └── helpers │ │ │ │ ├── SimpleStageOpeningHelper.java │ │ │ │ ├── TriggerHelper.java │ │ │ │ └── WorkItemHelper.java │ │ │ ├── helpers │ │ │ ├── AuthorizationHelper.java │ │ │ ├── CaseCleaner.java │ │ │ ├── CaseExpressionEvaluationHelper.java │ │ │ ├── CaseManagementHelper.java │ │ │ ├── CaseMiscHelper.java │ │ │ ├── NotificationHelper.java │ │ │ └── PerformerCommentsFormatterImpl.java │ │ │ └── util │ │ │ └── StateUtil.java │ │ └── resources │ │ └── ctx-cases.xml ├── certification-api │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── evolveum │ │ └── midpoint │ │ └── certification │ │ └── api │ │ ├── AccessCertificationApiConstants.java │ │ ├── AccessCertificationEventListener.java │ │ ├── CertificationManager.java │ │ └── OutcomeUtils.java ├── certification-impl │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── evolveum │ │ │ │ │ └── midpoint │ │ │ │ │ └── certification │ │ │ │ │ └── impl │ │ │ │ │ ├── AccCertCaseOperationsHelper.java │ │ │ │ │ ├── AccCertCloserHelper.java │ │ │ │ │ ├── AccCertEventHelper.java │ │ │ │ │ ├── AccCertExpressionHelper.java │ │ │ │ │ ├── AccCertGeneralHelper.java │ │ │ │ │ ├── AccCertOpenerHelper.java │ │ │ │ │ ├── AccCertQueryHelper.java │ │ │ │ │ ├── AccCertResponseComputationHelper.java │ │ │ │ │ ├── AccCertReviewersHelper.java │ │ │ │ │ ├── AccCertTimedActionTriggerHandler.java │ │ │ │ │ ├── AccCertUpdateHelper.java │ │ │ │ │ ├── AccCertUtil.java │ │ │ │ │ ├── AccessCertificationCampaignReiterationTriggerHandler.java │ │ │ │ │ ├── AccessCertificationCloseStageApproachingTriggerHandler.java │ │ │ │ │ ├── AccessCertificationCloseStageTriggerHandler.java │ │ │ │ │ ├── AccessCertificationClosingTaskHandler.java │ │ │ │ │ ├── AccessCertificationConstants.java │ │ │ │ │ ├── CertificationHook.java │ │ │ │ │ ├── CertificationManagerImpl.java │ │ │ │ │ ├── ModificationsToExecute.java │ │ │ │ │ ├── WorkItemInContext.java │ │ │ │ │ ├── handlers │ │ │ │ │ ├── BaseCertificationHandler.java │ │ │ │ │ ├── CertificationHandler.java │ │ │ │ │ ├── DirectAssignmentCertificationHandler.java │ │ │ │ │ └── ExclusionCertificationHandler.java │ │ │ │ │ ├── outcomeStrategies │ │ │ │ │ ├── AcceptedIfNotDeniedStrategy.java │ │ │ │ │ ├── AllMustAcceptStrategy.java │ │ │ │ │ ├── BaseOutcomeStrategy.java │ │ │ │ │ ├── OneAcceptAcceptsStrategy.java │ │ │ │ │ ├── OneDenyDeniesStrategy.java │ │ │ │ │ ├── OutcomeStrategy.java │ │ │ │ │ └── ResponsesSummary.java │ │ │ │ │ └── task │ │ │ │ │ ├── AccessCertificationCampaignActivityHandler.java │ │ │ │ │ ├── AccessCertificationCampaignWorkDefinition.java │ │ │ │ │ ├── AccessCertificationStageManagementRun.java │ │ │ │ │ ├── CertificationTaskLauncher.java │ │ │ │ │ ├── campaignCreation │ │ │ │ │ └── AccessCertificationCampaignCreationTaskHandler.java │ │ │ │ │ ├── closeCurrentStage │ │ │ │ │ ├── AccessCertificationCloseCurrentStageActivityHandler.java │ │ │ │ │ ├── AccessCertificationCloseCurrentStageRun.java │ │ │ │ │ └── AccessCertificationCloseCurrentStageWorkDefinition.java │ │ │ │ │ ├── openNextStage │ │ │ │ │ ├── AccessCertificationOpenNextStageActivityHandler.java │ │ │ │ │ ├── AccessCertificationOpenNextStageRun.java │ │ │ │ │ └── AccessCertificationOpenNextStageWorkDefinition.java │ │ │ │ │ ├── reiterateCampaign │ │ │ │ │ ├── AccessCertificationReiterateCampaignActivityHandler.java │ │ │ │ │ ├── AccessCertificationReiterateCampaignRun.java │ │ │ │ │ └── AccessCertificationReiterateCampaignWorkDefinition.java │ │ │ │ │ ├── remediation │ │ │ │ │ ├── AccessCertificationRemediationActivityHandler.java │ │ │ │ │ ├── AccessCertificationRemediationRun.java │ │ │ │ │ ├── AccessCertificationRemediationTaskHandler.java │ │ │ │ │ └── AccessCertificationRemediationWorkDefinition.java │ │ │ │ │ └── startCampaign │ │ │ │ │ ├── AccessCertificationStartCampaignActivityHandler.java │ │ │ │ │ ├── AccessCertificationStartCampaignRun.java │ │ │ │ │ └── AccessCertificationStartCampaignWorkDefinition.java │ │ │ └── resources │ │ │ │ └── ctx-certification.xml │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── certification │ │ │ │ └── test │ │ │ │ ├── AbstractCertificationTest.java │ │ │ │ ├── AbstractUninitializedCertificationTest.java │ │ │ │ ├── AccessCertificationEventListenerStub.java │ │ │ │ ├── TestAdHocCertification.java │ │ │ │ ├── TestCertificationBasic.java │ │ │ │ ├── TestCertificationNotifications.java │ │ │ │ ├── TestCriticalRolesCertification.java │ │ │ │ ├── TestEscalation.java │ │ │ │ ├── TestManualEscalation.java │ │ │ │ ├── TestRoleInducementCertification.java │ │ │ │ ├── TestSoDCertification.java │ │ │ │ └── complex │ │ │ │ └── TestPolicyDrivenRoleLifecycle.java │ │ │ └── resources │ │ │ ├── adhoc │ │ │ ├── adhoc-certification-assignment.xml │ │ │ ├── adhoc-certification-modification.xml │ │ │ ├── org-laboratory.xml │ │ │ ├── user-empty.xml │ │ │ └── user-indigo.xml │ │ │ ├── common │ │ │ ├── certification-of-critical-roles.xml │ │ │ ├── certification-of-eroot-user-assignments-escalations.xml │ │ │ ├── certification-of-eroot-user-assignments-notifications.xml │ │ │ ├── certification-of-eroot-user-assignments.xml │ │ │ ├── certification-of-role-inducements.xml │ │ │ ├── metarole-cxo.xml │ │ │ ├── org-security-team.xml │ │ │ ├── orgs-and-users.xml │ │ │ ├── resource-dummy-black.xml │ │ │ ├── resource-dummy.xml │ │ │ ├── role-ceo.xml │ │ │ ├── role-coo.xml │ │ │ ├── role-cto.xml │ │ │ ├── role-eroot-user-assignment-campaign-owner.xml │ │ │ ├── role-reviewer.xml │ │ │ ├── role-superuser.xml │ │ │ ├── system-configuration.xml │ │ │ ├── task-trigger-scanner-manual.xml │ │ │ ├── user-administrator-deputy-no-assignments.xml │ │ │ ├── user-administrator-deputy-none.xml │ │ │ ├── user-administrator-plain.xml │ │ │ ├── user-administrator.xml │ │ │ ├── user-assignment-more-reviewers-certification.xml │ │ │ ├── user-bob-deputy-full.xml │ │ │ ├── user-bob-deputy-no-assignments.xml │ │ │ ├── user-bob-deputy-no-privileges.xml │ │ │ ├── user-bob.xml │ │ │ └── user-jack.xml │ │ │ ├── complex │ │ │ ├── messages.properties │ │ │ ├── role-correct-high-risk.xml │ │ │ ├── role-correct.xml │ │ │ ├── role-empty.xml │ │ │ ├── role-high-risk-empty.xml │ │ │ ├── system-configuration.xml │ │ │ └── user-jack.xml │ │ │ ├── ctx-certification-test-main.xml │ │ │ ├── logback-test.xml │ │ │ ├── schema │ │ │ └── piracy.xsd │ │ │ └── sod │ │ │ ├── a-test-2a.xml │ │ │ ├── a-test-2b.xml │ │ │ ├── a-test-2c.xml │ │ │ ├── a-test-3a.xml │ │ │ ├── a-test-3b.xml │ │ │ ├── a-test-3x.xml │ │ │ ├── a-test-3y.xml │ │ │ └── sod-certification.xml │ ├── testng-integration.xml │ └── testng-unit.xml ├── model-api │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── evolveum │ │ └── midpoint │ │ └── model │ │ └── api │ │ ├── AccessCertificationService.java │ │ ├── ActivityCustomization.java │ │ ├── ActivitySubmissionOptions.java │ │ ├── AssignmentCandidatesSpecification.java │ │ ├── AssignmentObjectRelation.java │ │ ├── BulkAction.java │ │ ├── BulkActionExecutionOptions.java │ │ ├── BulkActionExecutionResult.java │ │ ├── BulkActionsService.java │ │ ├── CaseService.java │ │ ├── CollectionStats.java │ │ ├── DataModelVisualizer.java │ │ ├── MetadataItemProcessingSpec.java │ │ ├── ModelAuditRecorder.java │ │ ├── ModelAuditService.java │ │ ├── ModelAuthorizationAction.java │ │ ├── ModelCompareOptions.java │ │ ├── ModelDiagnosticService.java │ │ ├── ModelExecuteOptions.java │ │ ├── ModelInteractionService.java │ │ ├── ModelPublicConstants.java │ │ ├── ModelService.java │ │ ├── ObjectTreeDeltas.java │ │ ├── PipelineItem.java │ │ ├── ProgressInformation.java │ │ ├── ProgressListener.java │ │ ├── RoleSelectionSpecification.java │ │ ├── TaskService.java │ │ ├── authentication │ │ ├── ClusterwideUserSessionManager.java │ │ ├── CompiledDashboardType.java │ │ ├── CompiledGuiProfile.java │ │ ├── CompiledObjectCollectionView.java │ │ ├── CompiledShadowCollectionView.java │ │ ├── GuiProfileCompilable.java │ │ ├── GuiProfileCompilerRegistry.java │ │ ├── GuiProfiledPrincipal.java │ │ └── GuiProfiledPrincipalManager.java │ │ ├── context │ │ ├── AssignmentPath.java │ │ ├── AssignmentPathSegment.java │ │ ├── AssociatedPolicyRule.java │ │ ├── EvaluatedAlwaysTrueTrigger.java │ │ ├── EvaluatedAssignment.java │ │ ├── EvaluatedAssignmentTarget.java │ │ ├── EvaluatedCollectionStatsTrigger.java │ │ ├── EvaluatedCompositeTrigger.java │ │ ├── EvaluatedCustomConstraintTrigger.java │ │ ├── EvaluatedExclusionRequirementTrigger.java │ │ ├── EvaluatedExclusionTrigger.java │ │ ├── EvaluatedHasAssignmentTrigger.java │ │ ├── EvaluatedModificationTrigger.java │ │ ├── EvaluatedMultiplicityTrigger.java │ │ ├── EvaluatedOrphanedTrigger.java │ │ ├── EvaluatedPolicyRule.java │ │ ├── EvaluatedPolicyRuleTrigger.java │ │ ├── EvaluatedRequirementTrigger.java │ │ ├── EvaluatedResourceObjectConstruction.java │ │ ├── EvaluatedSituationTrigger.java │ │ ├── EvaluatedStateTrigger.java │ │ ├── EvaluatedTimeValidityTrigger.java │ │ ├── EvaluatedTransitionTrigger.java │ │ ├── EvaluationOrder.java │ │ ├── Mapping.java │ │ ├── ModelContext.java │ │ ├── ModelElementContext.java │ │ ├── ModelProjectionContext.java │ │ ├── ModelState.java │ │ ├── PolicyRuleExternalizationOptions.java │ │ ├── PredefinedPolicySituation.java │ │ ├── ProjectionContextFilter.java │ │ ├── ProjectionContextKey.java │ │ ├── ProjectionContextKeyFactory.java │ │ ├── SynchronizationIntent.java │ │ └── SynchronizationPolicyDecision.java │ │ ├── correlation │ │ ├── AbstractCorrelationResult.java │ │ ├── CompleteCorrelationResult.java │ │ ├── CorrelationCaseDescription.java │ │ ├── CorrelationContext.java │ │ ├── CorrelationErrorDetails.java │ │ ├── CorrelationPropertyDefinition.java │ │ ├── CorrelationService.java │ │ ├── SimplifiedCorrelationResult.java │ │ └── TemplateCorrelationConfiguration.java │ │ ├── correlator │ │ ├── CandidateOwner.java │ │ ├── CandidateOwners.java │ │ ├── CompositeCorrelationExplanation.java │ │ ├── Confidence.java │ │ ├── CorrelationExplanation.java │ │ ├── CorrelationResult.java │ │ ├── Correlator.java │ │ ├── CorrelatorConfiguration.java │ │ ├── CorrelatorContext.java │ │ ├── CorrelatorFactory.java │ │ ├── CorrelatorFactoryRegistry.java │ │ ├── ItemsCorrelationExplanation.java │ │ └── idmatch │ │ │ ├── IdMatchObject.java │ │ │ ├── IdMatchService.java │ │ │ ├── MatchingRequest.java │ │ │ ├── MatchingResult.java │ │ │ └── PotentialMatch.java │ │ ├── expr │ │ ├── MidpointFunctions.java │ │ ├── OptimizingTriggerCreator.java │ │ └── OrgStructFunctions.java │ │ ├── hooks │ │ ├── ChangeHook.java │ │ ├── HookOperationMode.java │ │ ├── HookRegistry.java │ │ └── ReadHook.java │ │ ├── identities │ │ ├── IdentityItemConfiguration.java │ │ └── IdentityManagementConfiguration.java │ │ ├── indexing │ │ ├── IndexedItemValueNormalizer.java │ │ ├── IndexingConfiguration.java │ │ ├── IndexingItemConfiguration.java │ │ └── ValueNormalizer.java │ │ ├── interaction │ │ ├── DashboardService.java │ │ └── DashboardWidget.java │ │ ├── mining │ │ └── RoleAnalysisService.java │ │ ├── simulation │ │ ├── ProcessedObject.java │ │ └── SimulationResultManager.java │ │ ├── trigger │ │ ├── MultipleTriggersHandler.java │ │ ├── TriggerHandler.java │ │ └── TriggerHandlerRegistry.java │ │ ├── util │ │ ├── AssignmentPathUtil.java │ │ ├── AuthenticationEvaluatorUtil.java │ │ ├── ClockworkInspector.java │ │ ├── ClusterServiceConsts.java │ │ ├── DashboardUtils.java │ │ ├── DeputyUtils.java │ │ ├── DiagnosticContextManager.java │ │ ├── EvaluatedPolicyRuleUtil.java │ │ ├── MappingInspector.java │ │ ├── MergeDeltas.java │ │ ├── ModelContextUtil.java │ │ ├── ReferenceResolver.java │ │ ├── ResourceUtils.java │ │ └── SmartIntegrationConstants.java │ │ ├── validator │ │ ├── Issue.java │ │ ├── ResourceValidator.java │ │ ├── Scope.java │ │ ├── StringLimitationResult.java │ │ └── ValidationResult.java │ │ └── visualizer │ │ ├── ActionType.java │ │ ├── LocalizationCustomizationContext.java │ │ ├── ModelContextVisualization.java │ │ ├── Name.java │ │ ├── Visualization.java │ │ ├── VisualizationDeltaItem.java │ │ ├── VisualizationItem.java │ │ ├── VisualizationItemValue.java │ │ └── localization │ │ ├── LocalizableObject.java │ │ ├── LocalizationPart.java │ │ ├── LocalizationPartsCombiner.java │ │ ├── LocalizationPartsWrapper.java │ │ ├── WrapableLocalization.java │ │ └── WrapableLocalizationImpl.java ├── model-common │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── evolveum │ │ │ │ │ └── midpoint │ │ │ │ │ └── model │ │ │ │ │ └── common │ │ │ │ │ ├── ConstantsManager.java │ │ │ │ │ ├── GlobalRuleWithId.java │ │ │ │ │ ├── LinkManager.java │ │ │ │ │ ├── MarkManager.java │ │ │ │ │ ├── ModelCommonBeans.java │ │ │ │ │ ├── archetypes │ │ │ │ │ ├── ArchetypeDeterminer.java │ │ │ │ │ ├── ArchetypeManager.java │ │ │ │ │ └── ArchetypePolicyMerger.java │ │ │ │ │ ├── expression │ │ │ │ │ ├── ExpressionProfileManager.java │ │ │ │ │ ├── ModelExpressionEnvironment.java │ │ │ │ │ ├── ModelExpressionThreadLocalHolder.java │ │ │ │ │ ├── evaluator │ │ │ │ │ │ ├── AbstractSearchExpressionEvaluator.java │ │ │ │ │ │ ├── AssignmentTargetSearchExpressionEvaluator.java │ │ │ │ │ │ ├── AssignmentTargetSearchExpressionEvaluatorFactory.java │ │ │ │ │ │ ├── AssociationFromLinkExpressionEvaluator.java │ │ │ │ │ │ ├── AssociationFromLinkExpressionEvaluatorFactory.java │ │ │ │ │ │ ├── AssociationTargetSearchExpressionEvaluator.java │ │ │ │ │ │ ├── AssociationTargetSearchExpressionEvaluatorFactory.java │ │ │ │ │ │ ├── ConstExpressionEvaluator.java │ │ │ │ │ │ ├── ConstExpressionEvaluatorFactory.java │ │ │ │ │ │ ├── FunctionExpressionEvaluator.java │ │ │ │ │ │ ├── FunctionExpressionEvaluatorFactory.java │ │ │ │ │ │ ├── GenerateExpressionEvaluator.java │ │ │ │ │ │ ├── GenerateExpressionEvaluatorFactory.java │ │ │ │ │ │ ├── ProportionalExpressionEvaluator.java │ │ │ │ │ │ ├── ProportionalExpressionEvaluatorFactory.java │ │ │ │ │ │ ├── ReferenceAttributeFromLinkExpressionEvaluator.java │ │ │ │ │ │ ├── ReferenceAttributeTargetSearchExpressionEvaluator.java │ │ │ │ │ │ ├── ReferenceSearchExpressionEvaluator.java │ │ │ │ │ │ ├── ReferenceSearchExpressionEvaluatorFactory.java │ │ │ │ │ │ ├── ShadowOwnerReferenceSearchExpressionEvaluator.java │ │ │ │ │ │ ├── ShadowOwnerReferenceSearchExpressionEvaluatorFactory.java │ │ │ │ │ │ ├── caching │ │ │ │ │ │ │ ├── AbstractSearchExpressionEvaluatorCache.java │ │ │ │ │ │ │ ├── AssociationSearchExpressionEvaluatorCache.java │ │ │ │ │ │ │ ├── AssociationSearchQueryKey.java │ │ │ │ │ │ │ ├── AssociationSearchQueryResult.java │ │ │ │ │ │ │ ├── QueryKey.java │ │ │ │ │ │ │ └── QueryResult.java │ │ │ │ │ │ ├── filter │ │ │ │ │ │ │ ├── FilterExpressionEvaluation.java │ │ │ │ │ │ │ ├── FilterExpressionEvaluator.java │ │ │ │ │ │ │ └── FilterExpressionEvaluatorFactory.java │ │ │ │ │ │ ├── path │ │ │ │ │ │ │ ├── IdiResolutionContext.java │ │ │ │ │ │ │ ├── PathExpressionEvaluation.java │ │ │ │ │ │ │ ├── PathExpressionEvaluator.java │ │ │ │ │ │ │ ├── PathExpressionEvaluatorFactory.java │ │ │ │ │ │ │ ├── ResolutionContext.java │ │ │ │ │ │ │ └── ValueResolutionContext.java │ │ │ │ │ │ └── transformation │ │ │ │ │ │ │ ├── AbstractValueTransformationExpressionEvaluator.java │ │ │ │ │ │ │ ├── CombinatorialEvaluation.java │ │ │ │ │ │ │ ├── SingleShotEvaluation.java │ │ │ │ │ │ │ ├── TransformationalEvaluation.java │ │ │ │ │ │ │ ├── ValueTransformationContext.java │ │ │ │ │ │ │ └── ValueTupleTransformation.java │ │ │ │ │ ├── functions │ │ │ │ │ │ ├── BasicExpressionFunctions.java │ │ │ │ │ │ ├── FunctionLibrary.java │ │ │ │ │ │ ├── FunctionLibraryBinding.java │ │ │ │ │ │ ├── FunctionLibraryManager.java │ │ │ │ │ │ ├── FunctionLibraryUtil.java │ │ │ │ │ │ ├── LibraryFunctionExecutor.java │ │ │ │ │ │ ├── LogExpressionFunctions.java │ │ │ │ │ │ └── ParsedFullName.java │ │ │ │ │ └── script │ │ │ │ │ │ ├── AbstractCachingScriptEvaluator.java │ │ │ │ │ │ ├── AbstractScriptEvaluator.java │ │ │ │ │ │ ├── ScriptCache.java │ │ │ │ │ │ ├── ScriptEvaluator.java │ │ │ │ │ │ ├── ScriptExpression.java │ │ │ │ │ │ ├── ScriptExpressionEvaluationContext.java │ │ │ │ │ │ ├── ScriptExpressionEvaluator.java │ │ │ │ │ │ ├── ScriptExpressionEvaluatorFactory.java │ │ │ │ │ │ ├── ScriptExpressionFactory.java │ │ │ │ │ │ ├── groovy │ │ │ │ │ │ ├── GroovyScriptEvaluator.java │ │ │ │ │ │ └── SandboxTypeCheckingExtension.java │ │ │ │ │ │ ├── jsr223 │ │ │ │ │ │ └── Jsr223ScriptEvaluator.java │ │ │ │ │ │ └── velocity │ │ │ │ │ │ └── VelocityScriptEvaluator.java │ │ │ │ │ ├── mapping │ │ │ │ │ ├── AbstractMappingBuilder.java │ │ │ │ │ ├── AbstractMappingImpl.java │ │ │ │ │ ├── MappingBuilder.java │ │ │ │ │ ├── MappingEvaluationEnvironment.java │ │ │ │ │ ├── MappingEvaluationState.java │ │ │ │ │ ├── MappingFactory.java │ │ │ │ │ ├── MappingImpl.java │ │ │ │ │ ├── MappingParser.java │ │ │ │ │ ├── MappingPreExpression.java │ │ │ │ │ ├── MappingTimeConstraintsEvaluation.java │ │ │ │ │ ├── PrismValueDeltaSetTripleProducer.java │ │ │ │ │ └── metadata │ │ │ │ │ │ ├── ConsolidationMetadataComputation.java │ │ │ │ │ │ ├── ItemValueMetadataProcessingSpec.java │ │ │ │ │ │ ├── MetadataComputationInput.java │ │ │ │ │ │ ├── MetadataItemProcessingSpecImpl.java │ │ │ │ │ │ ├── MetadataMappingBuilder.java │ │ │ │ │ │ ├── MetadataMappingEvaluator.java │ │ │ │ │ │ ├── MetadataMappingImpl.java │ │ │ │ │ │ ├── ProcessingUtil.java │ │ │ │ │ │ ├── TransformationalMetadataComputation.java │ │ │ │ │ │ ├── ValueMetadataComputation.java │ │ │ │ │ │ └── builtin │ │ │ │ │ │ ├── BaseBuiltinMetadataMapping.java │ │ │ │ │ │ ├── BuiltinMetadataMapping.java │ │ │ │ │ │ ├── BuiltinMetadataMappingsRegistry.java │ │ │ │ │ │ ├── CreateTimestampBuiltinMapping.java │ │ │ │ │ │ ├── ProvenanceBuiltinMapping.java │ │ │ │ │ │ └── TransformationBuiltinMapping.java │ │ │ │ │ ├── stringpolicy │ │ │ │ │ ├── AbstractValuePolicyOriginResolver.java │ │ │ │ │ ├── CharacterClass.java │ │ │ │ │ ├── FocusValuePolicyOriginResolver.java │ │ │ │ │ ├── ObjectBasedValuePolicyOriginResolver.java │ │ │ │ │ ├── ObjectValuePolicyEvaluator.java │ │ │ │ │ ├── ShadowValuePolicyOriginResolver.java │ │ │ │ │ ├── StringPolicy.java │ │ │ │ │ ├── StringPolicyUtils.java │ │ │ │ │ ├── ValueChecker.java │ │ │ │ │ ├── ValueGenerator.java │ │ │ │ │ ├── ValuePolicyOriginResolver.java │ │ │ │ │ └── ValuePolicyProcessor.java │ │ │ │ │ └── util │ │ │ │ │ ├── DefaultColumnUtils.java │ │ │ │ │ ├── ObjectTemplateIncludeProcessor.java │ │ │ │ │ ├── PopulatorUtil.java │ │ │ │ │ └── ProfilingModelInspector.java │ │ │ └── resources │ │ │ │ └── ctx-model-common.xml │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── model │ │ │ │ └── common │ │ │ │ ├── AbstractModelCommonTest.java │ │ │ │ ├── expression │ │ │ │ ├── ExpressionTestUtil.java │ │ │ │ ├── TestExpression.java │ │ │ │ ├── TestExpressionProfileSafe.java │ │ │ │ ├── TestExpressionUtil.java │ │ │ │ └── script │ │ │ │ │ ├── AbstractScriptTest.java │ │ │ │ │ ├── Poison.java │ │ │ │ │ ├── TestExpressionFunctions.java │ │ │ │ │ ├── TestGroovyExpressions.java │ │ │ │ │ ├── TestGroovyExpressionsSandbox.java │ │ │ │ │ ├── TestJavaScriptExpressions.java │ │ │ │ │ ├── TestPythonExpressions.java │ │ │ │ │ ├── TestScriptCaching.java │ │ │ │ │ └── TestVelocityExpressions.java │ │ │ │ └── mapping │ │ │ │ ├── MappingTestEvaluator.java │ │ │ │ ├── TestMappingComplex.java │ │ │ │ ├── TestMappingDomain.java │ │ │ │ ├── TestMappingDynamicSimple.java │ │ │ │ ├── TestMappingDynamicSysVar.java │ │ │ │ ├── TestMappingMetadata.java │ │ │ │ ├── TestMappingStatic.java │ │ │ │ └── TestMappingTime.java │ │ │ └── resources │ │ │ ├── common │ │ │ └── system-configuration.xml │ │ │ ├── expression │ │ │ ├── expression │ │ │ │ ├── account-jack-dummy.xml │ │ │ │ ├── expression-asis.xml │ │ │ │ ├── expression-const.xml │ │ │ │ ├── expression-iteration-condition.xml │ │ │ │ ├── expression-path.xml │ │ │ │ ├── expression-script-groovy-simple.xml │ │ │ │ ├── expression-script-groovy-system-allow.xml │ │ │ │ ├── expression-script-groovy-system-deny.xml │ │ │ │ ├── expression-script-javascript.xml │ │ │ │ ├── expression-value.xml │ │ │ │ └── user-jack.xml │ │ │ ├── functions │ │ │ │ ├── account-jack.xml │ │ │ │ ├── resource-opendj.xml │ │ │ │ └── user-jack.xml │ │ │ ├── groovy │ │ │ │ ├── expression-func-concatname.xml │ │ │ │ ├── expression-func.xml │ │ │ │ ├── expression-list-exec.xml │ │ │ │ ├── expression-list.xml │ │ │ │ ├── expression-objectref-variables-explicit.xml │ │ │ │ ├── expression-objectref-variables-polystring.xml │ │ │ │ ├── expression-objectref-variables.xml │ │ │ │ ├── expression-poison-drink.xml │ │ │ │ ├── expression-poison-look.xml │ │ │ │ ├── expression-poison-smell-dynamic.xml │ │ │ │ ├── expression-poison-smell-reflection.xml │ │ │ │ ├── expression-poison-smell-tricky.xml │ │ │ │ ├── expression-poison-smell-very-dynamic.xml │ │ │ │ ├── expression-poison-smell.xml │ │ │ │ ├── expression-polystring-equals-1.xml │ │ │ │ ├── expression-polystring-equals-2.xml │ │ │ │ ├── expression-polystring-equals-stringify-1.xml │ │ │ │ ├── expression-polystring-equals-stringify-2.xml │ │ │ │ ├── expression-simple.xml │ │ │ │ ├── expression-string-exec.xml │ │ │ │ ├── expression-string-variables.xml │ │ │ │ ├── expression-syntax-error.xml │ │ │ │ ├── expression-user-extension-ship-path.xml │ │ │ │ ├── expression-user-extension-ship.xml │ │ │ │ ├── expression-user-given-name.xml │ │ │ │ └── expression-user-stringify-full-name.xml │ │ │ ├── javascript │ │ │ │ ├── expression-func-concatname.xml │ │ │ │ ├── expression-func.xml │ │ │ │ ├── expression-list.xml │ │ │ │ ├── expression-objectref-variables-polystring.xml │ │ │ │ ├── expression-objectref-variables.xml │ │ │ │ ├── expression-simple.xml │ │ │ │ ├── expression-string-variables.xml │ │ │ │ ├── expression-user-extension-ship-path.xml │ │ │ │ ├── expression-user-extension-ship.xml │ │ │ │ ├── expression-user-given-name.xml │ │ │ │ └── expression-user-stringify-full-name.xml │ │ │ ├── python │ │ │ │ ├── expression-func-concatname.xml │ │ │ │ ├── expression-func.xml │ │ │ │ ├── expression-list.xml │ │ │ │ ├── expression-objectref-variables-polystring.xml │ │ │ │ ├── expression-objectref-variables.xml │ │ │ │ ├── expression-simple.xml │ │ │ │ ├── expression-string-variables.xml │ │ │ │ ├── expression-user-extension-ship-path.xml │ │ │ │ ├── expression-user-extension-ship.xml │ │ │ │ ├── expression-user-given-name.xml │ │ │ │ └── expression-user-stringify-full-name.xml │ │ │ └── velocity │ │ │ │ ├── expression-func-concatname.xml │ │ │ │ ├── expression-func.xml │ │ │ │ ├── expression-list.xml │ │ │ │ ├── expression-objectref-variables-polystring.xml │ │ │ │ ├── expression-objectref-variables.xml │ │ │ │ ├── expression-polystring-equals-1.xml │ │ │ │ ├── expression-polystring-equals-2.xml │ │ │ │ ├── expression-polystring-equals-stringify-1.xml │ │ │ │ ├── expression-polystring-equals-stringify-2.xml │ │ │ │ ├── expression-simple.xml │ │ │ │ ├── expression-string-variables.xml │ │ │ │ ├── expression-user-extension-ship-path.xml │ │ │ │ ├── expression-user-extension-ship.xml │ │ │ │ ├── expression-user-given-name.xml │ │ │ │ └── expression-user-stringify-full-name.xml │ │ │ ├── keystore.jceks │ │ │ ├── logback-test.xml │ │ │ ├── mapping │ │ │ ├── account-inbound-mapping.xml │ │ │ ├── account-jack.xml │ │ │ ├── mapping-asis-fullname-metadata-range-all.xml │ │ │ ├── mapping-asis-fullname-metadata-range.xml │ │ │ ├── mapping-asis-fullname-metadata.xml │ │ │ ├── mapping-asis-password.xml │ │ │ ├── mapping-asis-system-variables-polystring-norm.xml │ │ │ ├── mapping-asis-system-variables-polystring-orig.xml │ │ │ ├── mapping-asis.xml │ │ │ ├── mapping-complex-captain.xml │ │ │ ├── mapping-condition-nonempty.xml │ │ │ ├── mapping-const-foo.xml │ │ │ ├── mapping-const-fullname-metadata.xml │ │ │ ├── mapping-domain.xml │ │ │ ├── mapping-generate-fullname-metadata.xml │ │ │ ├── mapping-generate-policy-bad.xml │ │ │ ├── mapping-generate-policy-empty.xml │ │ │ ├── mapping-generate-policy-numeric.xml │ │ │ ├── mapping-generate-policy.xml │ │ │ ├── mapping-generate.xml │ │ │ ├── mapping-inbound.xml │ │ │ ├── mapping-npe.xml │ │ │ ├── mapping-path-enum.xml │ │ │ ├── mapping-path-extension-variable.xml │ │ │ ├── mapping-path-fullname-metadata.xml │ │ │ ├── mapping-path-system-variables-namespace.xml │ │ │ ├── mapping-path-system-variables-nosource.xml │ │ │ ├── mapping-path-system-variables-polystring-long.xml │ │ │ ├── mapping-path-system-variables-polystring-short.xml │ │ │ ├── mapping-path-system-variables.xml │ │ │ ├── mapping-script-custom-enum.xml │ │ │ ├── mapping-script-date-groovy.xml │ │ │ ├── mapping-script-extra-variables.xml │ │ │ ├── mapping-script-fullname-metadata.xml │ │ │ ├── mapping-script-fullname.xml │ │ │ ├── mapping-script-list-absolute-groovy.xml │ │ │ ├── mapping-script-list-relative-groovy.xml │ │ │ ├── mapping-script-simple-groovy.xml │ │ │ ├── mapping-script-system-variables-condition-empty-function.xml │ │ │ ├── mapping-script-system-variables-condition-empty-single-function.xml │ │ │ ├── mapping-script-system-variables-condition-empty-single.xml │ │ │ ├── mapping-script-system-variables-condition-empty.xml │ │ │ ├── mapping-script-system-variables-condition-groovy.xml │ │ │ ├── mapping-script-system-variables-condition-sourcecontext-groovy.xml │ │ │ ├── mapping-script-system-variables-employee-number.xml │ │ │ ├── mapping-script-system-variables-employee-type.xml │ │ │ ├── mapping-script-system-variables-password-decrypt.xml │ │ │ ├── mapping-script-system-variables-password.xml │ │ │ ├── mapping-script-system-variables-polystring-groovy-norm.xml │ │ │ ├── mapping-script-system-variables-polystring-groovy-op.xml │ │ │ ├── mapping-script-system-variables-polystring-groovy-orig.xml │ │ │ ├── mapping-script-system-variables-polystring-groovy.xml │ │ │ ├── mapping-script-transform.xml │ │ │ ├── mapping-script-variables-groovy.xml │ │ │ ├── mapping-time-deferred-delete.xml │ │ │ ├── mapping-time-from-to.xml │ │ │ ├── mapping-value-boolean-false.xml │ │ │ ├── mapping-value-boolean-true.xml │ │ │ ├── mapping-value-condition-false.xml │ │ │ ├── mapping-value-condition-true.xml │ │ │ ├── mapping-value-fullname-metadata.xml │ │ │ ├── mapping-value-multi-deep.xml │ │ │ ├── mapping-value-multi-shallow.xml │ │ │ ├── mapping-value-single-deep.xml │ │ │ ├── mapping-value-single-enum.xml │ │ │ ├── mapping-value-single-shallow.xml │ │ │ ├── password-policy.xml │ │ │ ├── template-provenance.xml │ │ │ ├── user-jack-metadata.xml │ │ │ └── user-jack.xml │ │ │ ├── objects │ │ │ ├── c0c010c0-d34d-b33f-f00d-111111111111.xml │ │ │ ├── c0c010c0-d34d-b33f-f00d-111111111112.xml │ │ │ ├── c0c010c0-d34d-b33f-f00d-999111111122.xml │ │ │ ├── c0c010c0-d34d-b33f-f00d-999888111111.xml │ │ │ ├── c0c010c0-d34d-b33f-f00d-999888111112.xml │ │ │ ├── c0c010c0-d34d-b33f-f00d-999888111113.xml │ │ │ └── c0c010c0-d34d-b33f-f00d-999888111114.xml │ │ │ └── schema │ │ │ └── extension.xsd │ └── testng-unit.xml ├── model-impl │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── evolveum │ │ │ │ │ └── midpoint │ │ │ │ │ └── model │ │ │ │ │ └── impl │ │ │ │ │ ├── ClusterCacheListener.java │ │ │ │ │ ├── FocusComputer.java │ │ │ │ │ ├── ModelBeans.java │ │ │ │ │ ├── ModelCrudService.java │ │ │ │ │ ├── ModelObjectResolver.java │ │ │ │ │ ├── PolicyDecision.java │ │ │ │ │ ├── PrismConfigurationUpdater.java │ │ │ │ │ ├── ResourceObjectProcessingContext.java │ │ │ │ │ ├── ResourceObjectProcessingContextImpl.java │ │ │ │ │ ├── cleanup │ │ │ │ │ ├── CleanupActivityHandler.java │ │ │ │ │ ├── CleanupPartialActivityRun.java │ │ │ │ │ ├── CleanupWorkDefinition.java │ │ │ │ │ └── ShadowRefreshActivityHandler.java │ │ │ │ │ ├── controller │ │ │ │ │ ├── AuditController.java │ │ │ │ │ ├── AuthorizationDiagEvaluation.java │ │ │ │ │ ├── CollectionProcessor.java │ │ │ │ │ ├── DashboardServiceImpl.java │ │ │ │ │ ├── FilterGizmoAssignableRoles.java │ │ │ │ │ ├── MappingDiagEvaluator.java │ │ │ │ │ ├── ModelController.java │ │ │ │ │ ├── ModelDiagController.java │ │ │ │ │ ├── ModelInteractionServiceImpl.java │ │ │ │ │ ├── ObjectMerger.java │ │ │ │ │ ├── RawChangesExecutor.java │ │ │ │ │ ├── ResolveOptionExecutor.java │ │ │ │ │ ├── ResourceSchemaLoader.java │ │ │ │ │ ├── RoleSelectionSpecEntry.java │ │ │ │ │ ├── SchemaTransformer.java │ │ │ │ │ ├── SelfTestData.java │ │ │ │ │ ├── tasks │ │ │ │ │ │ └── ActivityExecutor.java │ │ │ │ │ └── transformer │ │ │ │ │ │ ├── DataAccessProcessor.java │ │ │ │ │ │ ├── DataPolicyProcessor.java │ │ │ │ │ │ └── DefinitionAccessProcessor.java │ │ │ │ │ ├── correlation │ │ │ │ │ ├── CorrelationCaseDescriber.java │ │ │ │ │ ├── CorrelationCaseManager.java │ │ │ │ │ ├── CorrelationServiceImpl.java │ │ │ │ │ ├── CorrelatorContextCreator.java │ │ │ │ │ └── TemplateCorrelationConfigurationImpl.java │ │ │ │ │ ├── correlator │ │ │ │ │ ├── BaseCorrelator.java │ │ │ │ │ ├── CorrelatorFactoryRegistryImpl.java │ │ │ │ │ ├── CorrelatorUtil.java │ │ │ │ │ ├── composite │ │ │ │ │ │ ├── CompositeCorrelator.java │ │ │ │ │ │ └── CompositeCorrelatorFactory.java │ │ │ │ │ ├── expression │ │ │ │ │ │ ├── ExpressionCorrelator.java │ │ │ │ │ │ └── ExpressionCorrelatorFactory.java │ │ │ │ │ ├── filter │ │ │ │ │ │ ├── FilterCorrelator.java │ │ │ │ │ │ └── FilterCorrelatorFactory.java │ │ │ │ │ ├── idmatch │ │ │ │ │ │ ├── IdMatchCorrelator.java │ │ │ │ │ │ ├── IdMatchCorrelatorFactory.java │ │ │ │ │ │ ├── IdMatchObjectCreator.java │ │ │ │ │ │ ├── IdMatchServiceImpl.java │ │ │ │ │ │ ├── constants │ │ │ │ │ │ │ ├── ResponseType.java │ │ │ │ │ │ │ └── ServicePath.java │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── PersonRequest.java │ │ │ │ │ │ │ └── ServerResponse.java │ │ │ │ │ │ └── operations │ │ │ │ │ │ │ ├── AbstractRequest.java │ │ │ │ │ │ │ ├── ApacheDeleteRequest.java │ │ │ │ │ │ │ ├── ApacheGetRequest.java │ │ │ │ │ │ │ ├── ApachePostRequest.java │ │ │ │ │ │ │ ├── ApachePutRequest.java │ │ │ │ │ │ │ ├── ApacheResponseHandler.java │ │ │ │ │ │ │ ├── AuthenticationProvider.java │ │ │ │ │ │ │ └── Client.java │ │ │ │ │ ├── items │ │ │ │ │ │ ├── CorrelationItem.java │ │ │ │ │ │ ├── CorrelationItems.java │ │ │ │ │ │ ├── ItemsCorrelator.java │ │ │ │ │ │ └── ItemsCorrelatorFactory.java │ │ │ │ │ ├── noop │ │ │ │ │ │ ├── NoOpCorrelator.java │ │ │ │ │ │ └── NoOpCorrelatorFactory.java │ │ │ │ │ └── tasks │ │ │ │ │ │ ├── CorrelationActivityHandler.java │ │ │ │ │ │ ├── CorrelationActivityRun.java │ │ │ │ │ │ ├── CorrelationDefinitionProvider.java │ │ │ │ │ │ ├── CorrelationDefinitionProviderFactory.java │ │ │ │ │ │ ├── CorrelationWorkDefinition.java │ │ │ │ │ │ └── ResourceCorrelationDefinitionProvider.java │ │ │ │ │ ├── dataModel │ │ │ │ │ ├── DataModel.java │ │ │ │ │ ├── DataModelVisualizerImpl.java │ │ │ │ │ ├── dot │ │ │ │ │ │ ├── DotAdHocDataItem.java │ │ │ │ │ │ ├── DotDataItem.java │ │ │ │ │ │ ├── DotMappingRelation.java │ │ │ │ │ │ ├── DotModel.java │ │ │ │ │ │ ├── DotOtherRelation.java │ │ │ │ │ │ ├── DotRelation.java │ │ │ │ │ │ ├── DotRepositoryDataItem.java │ │ │ │ │ │ └── DotResourceDataItem.java │ │ │ │ │ └── model │ │ │ │ │ │ ├── AdHocDataItem.java │ │ │ │ │ │ ├── DataItem.java │ │ │ │ │ │ ├── MappingRelation.java │ │ │ │ │ │ ├── Relation.java │ │ │ │ │ │ ├── RepositoryDataItem.java │ │ │ │ │ │ └── ResourceDataItem.java │ │ │ │ │ ├── expr │ │ │ │ │ ├── AssociationConstructionExpressionEvaluator.java │ │ │ │ │ ├── AssociationConstructionExpressionEvaluatorFactory.java │ │ │ │ │ ├── AssociationSynchronizationExpressionEvaluator.java │ │ │ │ │ ├── AssociationSynchronizationExpressionEvaluatorFactory.java │ │ │ │ │ ├── AssociationSynchronizationResult.java │ │ │ │ │ ├── ComplexAttributeSynchronizationExpressionEvaluator.java │ │ │ │ │ ├── ComplexAttributeSynchronizationExpressionEvaluatorFactory.java │ │ │ │ │ ├── LinkedObjectsFunctions.java │ │ │ │ │ ├── MidpointFunctionsImpl.java │ │ │ │ │ ├── OrgStructFunctionsImpl.java │ │ │ │ │ ├── SequentialValueExpressionEvaluator.java │ │ │ │ │ ├── SequentialValueExpressionEvaluatorFactory.java │ │ │ │ │ ├── SpringApplicationContextHolder.java │ │ │ │ │ └── triggerSetter │ │ │ │ │ │ ├── CreatedTrigger.java │ │ │ │ │ │ ├── OptimizingTriggerCreatorImpl.java │ │ │ │ │ │ ├── TriggerCreatorGlobalState.java │ │ │ │ │ │ └── TriggerHolderSpecification.java │ │ │ │ │ ├── hooks │ │ │ │ │ └── HookRegistryImpl.java │ │ │ │ │ ├── importer │ │ │ │ │ └── ObjectImporter.java │ │ │ │ │ ├── integrity │ │ │ │ │ ├── objects │ │ │ │ │ │ ├── ObjectInfo.java │ │ │ │ │ │ ├── ObjectIntegrityCheckActivityHandler.java │ │ │ │ │ │ ├── ObjectStatistics.java │ │ │ │ │ │ └── ObjectTypeStatistics.java │ │ │ │ │ └── shadows │ │ │ │ │ │ ├── ContextMapKey.java │ │ │ │ │ │ ├── DefaultDuplicateShadowsResolver.java │ │ │ │ │ │ ├── DuplicateShadowsResolver.java │ │ │ │ │ │ ├── DuplicateShadowsTreatmentInstruction.java │ │ │ │ │ │ ├── ObjectTypeContext.java │ │ │ │ │ │ ├── ShadowCheckConfiguration.java │ │ │ │ │ │ ├── ShadowCheckResult.java │ │ │ │ │ │ ├── ShadowIntegrityCheckActivityHandler.java │ │ │ │ │ │ ├── ShadowIntegrityCheckActivityRun.java │ │ │ │ │ │ ├── ShadowIntegrityCheckItemProcessor.java │ │ │ │ │ │ ├── ShadowIntegrityCheckWorkDefinition.java │ │ │ │ │ │ └── ShadowStatistics.java │ │ │ │ │ ├── lens │ │ │ │ │ ├── AssignmentIdStore.java │ │ │ │ │ ├── AssignmentPathVariables.java │ │ │ │ │ ├── AssociationSearchExpressionCacheInvalidator.java │ │ │ │ │ ├── ChangeExecutionResult.java │ │ │ │ │ ├── ChangeExecutor.java │ │ │ │ │ ├── Clockwork.java │ │ │ │ │ ├── ClockworkAbortedException.java │ │ │ │ │ ├── ClockworkAuditHelper.java │ │ │ │ │ ├── ClockworkClick.java │ │ │ │ │ ├── ClockworkConflictResolver.java │ │ │ │ │ ├── ClockworkHookHelper.java │ │ │ │ │ ├── ClockworkMedic.java │ │ │ │ │ ├── ClockworkRequestAuthorizer.java │ │ │ │ │ ├── ConflictDetectedException.java │ │ │ │ │ ├── ContextFactory.java │ │ │ │ │ ├── DeltaExecutionPreprocessor.java │ │ │ │ │ ├── ElementState.java │ │ │ │ │ ├── EvaluatedPolicyRuleImpl.java │ │ │ │ │ ├── ExecutedDeltas.java │ │ │ │ │ ├── FailableLensFunction.java │ │ │ │ │ ├── FocusGoneException.java │ │ │ │ │ ├── ItemLoadedStatus.java │ │ │ │ │ ├── ItemValueWithOrigin.java │ │ │ │ │ ├── IvwoConsolidator.java │ │ │ │ │ ├── IvwoConsolidatorBuilder.java │ │ │ │ │ ├── LensContext.java │ │ │ │ │ ├── LensContextPlaceholder.java │ │ │ │ │ ├── LensElementContext.java │ │ │ │ │ ├── LensExpressionUtil.java │ │ │ │ │ ├── LensFocusContext.java │ │ │ │ │ ├── LensMetadataUtil.java │ │ │ │ │ ├── LensObjectDeltaOperation.java │ │ │ │ │ ├── LensOwnerResolver.java │ │ │ │ │ ├── LensProjectionContext.java │ │ │ │ │ ├── LensUtil.java │ │ │ │ │ ├── LoginAssignmentCollector.java │ │ │ │ │ ├── MagicAssignment.java │ │ │ │ │ ├── ObjectDeltaWaves.java │ │ │ │ │ ├── OperationExecutionRecorderForClockwork.java │ │ │ │ │ ├── OperationalDataManager.java │ │ │ │ │ ├── PersonaKey.java │ │ │ │ │ ├── PersonaProcessor.java │ │ │ │ │ ├── PolicyRulesContext.java │ │ │ │ │ ├── ProjectionContextKeyFactoryImpl.java │ │ │ │ │ ├── ProjectorComponentRunnable.java │ │ │ │ │ ├── RememberedElementState.java │ │ │ │ │ ├── SimpleOperationName.java │ │ │ │ │ ├── StrengthSelector.java │ │ │ │ │ ├── TemporaryContainerIdStore.java │ │ │ │ │ ├── assignments │ │ │ │ │ │ ├── AbstractEvaluation.java │ │ │ │ │ │ ├── AssignmentEvaluator.java │ │ │ │ │ │ ├── AssignmentPathImpl.java │ │ │ │ │ │ ├── AssignmentPathSegmentImpl.java │ │ │ │ │ │ ├── AssignmentSpec.java │ │ │ │ │ │ ├── AssignmentTargetEvaluationInformation.java │ │ │ │ │ │ ├── ConditionEvaluator.java │ │ │ │ │ │ ├── ConditionState.java │ │ │ │ │ │ ├── EvaluatedAssignmentImpl.java │ │ │ │ │ │ ├── EvaluatedAssignmentTargetCache.java │ │ │ │ │ │ ├── EvaluatedAssignmentTargetImpl.java │ │ │ │ │ │ ├── EvaluationContext.java │ │ │ │ │ │ ├── EvaluationOrderImpl.java │ │ │ │ │ │ ├── ForeignPolicyRuleImpl.java │ │ │ │ │ │ ├── MemberOfEngine.java │ │ │ │ │ │ ├── PathSegmentEvaluation.java │ │ │ │ │ │ ├── PayloadEvaluation.java │ │ │ │ │ │ ├── TargetAssignmentEvaluation.java │ │ │ │ │ │ ├── TargetEvaluation.java │ │ │ │ │ │ ├── TargetInducementEvaluation.java │ │ │ │ │ │ ├── TargetMembershipCollector.java │ │ │ │ │ │ ├── TargetPayloadEvaluation.java │ │ │ │ │ │ ├── TargetsEvaluation.java │ │ │ │ │ │ ├── UndefinedEvaluationOrderImpl.java │ │ │ │ │ │ └── Util.java │ │ │ │ │ ├── construction │ │ │ │ │ │ ├── AbstractConstruction.java │ │ │ │ │ │ ├── AbstractConstructionBuilder.java │ │ │ │ │ │ ├── AssignedConstructionBuilder.java │ │ │ │ │ │ ├── AssignedResourceObjectConstruction.java │ │ │ │ │ │ ├── AssociationMapper.java │ │ │ │ │ │ ├── AssociationValuesTripleComputation.java │ │ │ │ │ │ ├── AttributeMapper.java │ │ │ │ │ │ ├── ConstructionCollector.java │ │ │ │ │ │ ├── ConstructionEvaluation.java │ │ │ │ │ │ ├── ConstructionResourceResolver.java │ │ │ │ │ │ ├── ConstructionTargetKey.java │ │ │ │ │ │ ├── EvaluatedAbstractConstruction.java │ │ │ │ │ │ ├── EvaluatedAssignedResourceObjectConstructionImpl.java │ │ │ │ │ │ ├── EvaluatedConstructionPack.java │ │ │ │ │ │ ├── EvaluatedPersonaConstructionImpl.java │ │ │ │ │ │ ├── EvaluatedPlainResourceObjectConstructionImpl.java │ │ │ │ │ │ ├── EvaluatedResourceObjectConstructionImpl.java │ │ │ │ │ │ ├── PersonaConstruction.java │ │ │ │ │ │ ├── PersonaConstructionBuilder.java │ │ │ │ │ │ ├── PlainResourceObjectConstruction.java │ │ │ │ │ │ ├── PlainResourceObjectConstructionBuilder.java │ │ │ │ │ │ ├── ResolvedConstructionResource.java │ │ │ │ │ │ ├── ResourceObjectConstruction.java │ │ │ │ │ │ ├── ResourceObjectConstructionBuilder.java │ │ │ │ │ │ └── ShadowItemMapper.java │ │ │ │ │ ├── executor │ │ │ │ │ │ ├── ChangeModeApplication.java │ │ │ │ │ │ ├── DeltaExecution.java │ │ │ │ │ │ ├── ElementChangeExecution.java │ │ │ │ │ │ ├── FocusChangeExecution.java │ │ │ │ │ │ ├── ItemChangeApplicationModeConfiguration.java │ │ │ │ │ │ ├── LinkUpdater.java │ │ │ │ │ │ ├── ProjectionChangeExecution.java │ │ │ │ │ │ └── ScriptExecutor.java │ │ │ │ │ ├── identities │ │ │ │ │ │ ├── IdentitiesManager.java │ │ │ │ │ │ ├── IdentityItemConfigurationImpl.java │ │ │ │ │ │ └── IdentityManagementConfigurationImpl.java │ │ │ │ │ ├── indexing │ │ │ │ │ │ ├── IndexedItemValueNormalizerImpl.java │ │ │ │ │ │ ├── IndexingConfigurationImpl.java │ │ │ │ │ │ ├── IndexingItemConfigurationImpl.java │ │ │ │ │ │ ├── IndexingManager.java │ │ │ │ │ │ ├── ItemNormalizer.java │ │ │ │ │ │ └── NormalizationStep.java │ │ │ │ │ ├── projector │ │ │ │ │ │ ├── ActivationProcessor.java │ │ │ │ │ │ ├── AssignmentOrigin.java │ │ │ │ │ │ ├── AttributeEqualsCheckerFactory.java │ │ │ │ │ │ ├── ComplexConstructionConsumer.java │ │ │ │ │ │ ├── Components.java │ │ │ │ │ │ ├── ConsolidationProcessor.java │ │ │ │ │ │ ├── ConstructionProcessor.java │ │ │ │ │ │ ├── DependencyProcessor.java │ │ │ │ │ │ ├── EvaluatedConstructionMappingExtractor.java │ │ │ │ │ │ ├── OutboundProcessor.java │ │ │ │ │ │ ├── ProjectionValuesProcessor.java │ │ │ │ │ │ ├── Projector.java │ │ │ │ │ │ ├── ProjectorProcessor.java │ │ │ │ │ │ ├── PropertyValueMatcher.java │ │ │ │ │ │ ├── ReconciliationProcessor.java │ │ │ │ │ │ ├── ShadowConstraintsChecker.java │ │ │ │ │ │ ├── SmartAssignmentCollection.java │ │ │ │ │ │ ├── SmartAssignmentElement.java │ │ │ │ │ │ ├── SmartAssignmentKey.java │ │ │ │ │ │ ├── credentials │ │ │ │ │ │ │ ├── CredentialPolicyEvaluator.java │ │ │ │ │ │ │ ├── CredentialsProcessor.java │ │ │ │ │ │ │ ├── NoncePolicyEvaluator.java │ │ │ │ │ │ │ ├── PasswordPolicyEvaluator.java │ │ │ │ │ │ │ ├── ProjectionCredentialsProcessor.java │ │ │ │ │ │ │ └── SecurityQuestionsPolicyEvaluator.java │ │ │ │ │ │ ├── focus │ │ │ │ │ │ │ ├── AssignmentHolderProcessor.java │ │ │ │ │ │ │ ├── AssignmentProcessor.java │ │ │ │ │ │ │ ├── AssignmentTripleEvaluator.java │ │ │ │ │ │ │ ├── AutoAssignMappingCollector.java │ │ │ │ │ │ │ ├── DeltaSetTripleIvwoMap.java │ │ │ │ │ │ │ ├── FocalMappingSetEvaluation.java │ │ │ │ │ │ │ ├── FocalMappingSetEvaluationBuilder.java │ │ │ │ │ │ │ ├── FocusActivationProcessor.java │ │ │ │ │ │ │ ├── FocusConstraintsChecker.java │ │ │ │ │ │ │ ├── FocusLifecycleProcessor.java │ │ │ │ │ │ │ ├── InboundProcessor.java │ │ │ │ │ │ │ ├── ItemLimitationsChecker.java │ │ │ │ │ │ │ ├── IterationHelper.java │ │ │ │ │ │ │ ├── MappingSorter.java │ │ │ │ │ │ │ ├── ObjectTemplateProcessor.java │ │ │ │ │ │ │ ├── ProjectionMappingSetEvaluator.java │ │ │ │ │ │ │ ├── ProjectionValueMetadataCreator.java │ │ │ │ │ │ │ ├── PruningOperation.java │ │ │ │ │ │ │ ├── TemplateMappingsEvaluation.java │ │ │ │ │ │ │ ├── consolidation │ │ │ │ │ │ │ │ └── DeltaSetTripleMapConsolidation.java │ │ │ │ │ │ │ └── inbounds │ │ │ │ │ │ │ │ ├── AbstractInboundsProcessing.java │ │ │ │ │ │ │ │ ├── DefaultSingleShadowInboundsProcessingContextImpl.java │ │ │ │ │ │ │ │ ├── FullInboundsProcessing.java │ │ │ │ │ │ │ │ ├── InboundSourceData.java │ │ │ │ │ │ │ │ ├── MappingEvaluationRequest.java │ │ │ │ │ │ │ │ ├── MappingEvaluationRequestsMap.java │ │ │ │ │ │ │ │ ├── SingleShadowInboundsProcessing.java │ │ │ │ │ │ │ │ ├── SingleShadowInboundsProcessingContext.java │ │ │ │ │ │ │ │ ├── StopProcessingProjectionException.java │ │ │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ │ │ └── prep │ │ │ │ │ │ │ │ ├── ApplicabilityEvaluator.java │ │ │ │ │ │ │ │ ├── FullInboundsContext.java │ │ │ │ │ │ │ │ ├── FullInboundsSource.java │ │ │ │ │ │ │ │ ├── FullInboundsTarget.java │ │ │ │ │ │ │ │ ├── InboundMappingContextSpecification.java │ │ │ │ │ │ │ │ ├── InboundsContext.java │ │ │ │ │ │ │ │ ├── InboundsSource.java │ │ │ │ │ │ │ │ ├── InboundsTarget.java │ │ │ │ │ │ │ │ ├── LimitedInboundsContext.java │ │ │ │ │ │ │ │ ├── LimitedInboundsSource.java │ │ │ │ │ │ │ │ ├── LimitedInboundsTarget.java │ │ │ │ │ │ │ │ ├── MappedSourceItem.java │ │ │ │ │ │ │ │ ├── MappedSourceItems.java │ │ │ │ │ │ │ │ ├── SingleShadowInboundsPreparation.java │ │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── loader │ │ │ │ │ │ │ ├── ContextLoadOperation.java │ │ │ │ │ │ │ ├── ContextLoader.java │ │ │ │ │ │ │ ├── FocusLoadOperation.java │ │ │ │ │ │ │ ├── MissingShadowContextRefresher.java │ │ │ │ │ │ │ ├── ProjectionFullLoadOperation.java │ │ │ │ │ │ │ ├── ProjectionUpdateOperation.java │ │ │ │ │ │ │ └── ProjectionsLoadOperation.java │ │ │ │ │ │ ├── mappings │ │ │ │ │ │ │ ├── AssignedFocusMappingEvaluationRequest.java │ │ │ │ │ │ │ ├── AutoassignRoleMappingEvaluationRequest.java │ │ │ │ │ │ │ ├── FixedTargetSpecification.java │ │ │ │ │ │ │ ├── FocalMappingEvaluationRequest.java │ │ │ │ │ │ │ ├── LoadedStateProvider.java │ │ │ │ │ │ │ ├── MappingEvaluator.java │ │ │ │ │ │ │ ├── MappingEvaluatorParams.java │ │ │ │ │ │ │ ├── MappingInitializer.java │ │ │ │ │ │ │ ├── MappingLoader.java │ │ │ │ │ │ │ ├── MappingOutputProcessor.java │ │ │ │ │ │ │ ├── MappingOutputStruct.java │ │ │ │ │ │ │ ├── MappingTimeEval.java │ │ │ │ │ │ │ ├── NextRecompute.java │ │ │ │ │ │ │ ├── ProjectionMappingLoader.java │ │ │ │ │ │ │ ├── TargetObjectSpecification.java │ │ │ │ │ │ │ ├── TemplateMappingEvaluationRequest.java │ │ │ │ │ │ │ └── predefinedActivationMapping │ │ │ │ │ │ │ │ ├── DelayedDeleteEvaluator.java │ │ │ │ │ │ │ │ ├── DisableInsteadOfDeleteEvaluator.java │ │ │ │ │ │ │ │ ├── PreProvisionEvaluator.java │ │ │ │ │ │ │ │ ├── PredefinedActivationMappingEvaluator.java │ │ │ │ │ │ │ │ └── TimeConstraintEvaluation.java │ │ │ │ │ │ ├── policy │ │ │ │ │ │ │ ├── AssignmentPolicyRuleEvaluationContext.java │ │ │ │ │ │ │ ├── AssignmentPolicyRuleEvaluator.java │ │ │ │ │ │ │ ├── ObjectPolicyRuleEvaluationContext.java │ │ │ │ │ │ │ ├── ObjectPolicyRulesEvaluator.java │ │ │ │ │ │ │ ├── ObjectState.java │ │ │ │ │ │ │ ├── PolicyRuleCounterUpdater.java │ │ │ │ │ │ │ ├── PolicyRuleEnforcer.java │ │ │ │ │ │ │ ├── PolicyRuleEvaluationContext.java │ │ │ │ │ │ │ ├── PolicyRuleEvaluator.java │ │ │ │ │ │ │ ├── PolicyRuleProcessor.java │ │ │ │ │ │ │ ├── PolicyRulesCollector.java │ │ │ │ │ │ │ ├── PolicyStateRecorder.java │ │ │ │ │ │ │ ├── PolicyStatementProcessor.java │ │ │ │ │ │ │ ├── evaluators │ │ │ │ │ │ │ │ ├── AlwaysTrueConstraintEvaluator.java │ │ │ │ │ │ │ │ ├── AssignmentModificationConstraintEvaluator.java │ │ │ │ │ │ │ │ ├── CompositeConstraintEvaluator.java │ │ │ │ │ │ │ │ ├── ConstraintEvaluatorHelper.java │ │ │ │ │ │ │ │ ├── ConstraintReferenceMatcher.java │ │ │ │ │ │ │ │ ├── CustomConstraintEvaluator.java │ │ │ │ │ │ │ │ ├── ExclusionRequirementConstraintEvaluator.java │ │ │ │ │ │ │ │ ├── HasAssignmentConstraintEvaluator.java │ │ │ │ │ │ │ │ ├── ModificationConstraintEvaluator.java │ │ │ │ │ │ │ │ ├── MultiplicityConstraintEvaluator.java │ │ │ │ │ │ │ │ ├── ObjectModificationConstraintEvaluator.java │ │ │ │ │ │ │ │ ├── OrphanedConstraintEvaluator.java │ │ │ │ │ │ │ │ ├── PolicyConstraintEvaluator.java │ │ │ │ │ │ │ │ ├── PolicyConstraintsEvaluator.java │ │ │ │ │ │ │ │ ├── PolicySituationConstraintEvaluator.java │ │ │ │ │ │ │ │ ├── StateConstraintEvaluator.java │ │ │ │ │ │ │ │ └── TransitionConstraintEvaluator.java │ │ │ │ │ │ │ └── scriptExecutor │ │ │ │ │ │ │ │ ├── AbstractSingleRunTaskCreator.java │ │ │ │ │ │ │ │ ├── ActionContext.java │ │ │ │ │ │ │ │ ├── AsynchronousScriptExecutor.java │ │ │ │ │ │ │ │ ├── FullDataBasedObjectSet.java │ │ │ │ │ │ │ │ ├── IterativeScriptingTaskCreator.java │ │ │ │ │ │ │ │ ├── LinkSourceFinder.java │ │ │ │ │ │ │ │ ├── LinkTargetFinder.java │ │ │ │ │ │ │ │ ├── ObjectSet.java │ │ │ │ │ │ │ │ ├── PartlyReferenceBasedObjectSet.java │ │ │ │ │ │ │ │ ├── PolicyRuleScriptExecutor.java │ │ │ │ │ │ │ │ ├── QueryBasedObjectSet.java │ │ │ │ │ │ │ │ ├── ReferenceBasedObjectSet.java │ │ │ │ │ │ │ │ ├── ScriptingTaskCreator.java │ │ │ │ │ │ │ │ ├── SingleRunNoInputTaskCreator.java │ │ │ │ │ │ │ │ ├── SingleRunTaskCreator.java │ │ │ │ │ │ │ │ └── SynchronousScriptExecutor.java │ │ │ │ │ │ └── util │ │ │ │ │ │ │ ├── ErrorHandlingUtil.java │ │ │ │ │ │ │ ├── ProcessorExecution.java │ │ │ │ │ │ │ ├── ProcessorMethod.java │ │ │ │ │ │ │ ├── ProcessorMethodRef.java │ │ │ │ │ │ │ ├── ProjectionAwareProcessorMethodRef.java │ │ │ │ │ │ │ ├── SimplifiedProcessorMethodRef.java │ │ │ │ │ │ │ └── SkipWhenFocusDeleted.java │ │ │ │ │ └── tasks │ │ │ │ │ │ └── TaskOperationalDataManager.java │ │ │ │ │ ├── migrator │ │ │ │ │ └── Migrator.java │ │ │ │ │ ├── mining │ │ │ │ │ ├── RoleAnalysisDataServiceUtils.java │ │ │ │ │ ├── RoleAnalysisServiceImpl.java │ │ │ │ │ ├── RoleAnalysisServiceUtils.java │ │ │ │ │ ├── algorithm │ │ │ │ │ │ ├── BaseAction.java │ │ │ │ │ │ ├── cluster │ │ │ │ │ │ │ ├── action │ │ │ │ │ │ │ │ ├── clustering │ │ │ │ │ │ │ │ │ ├── AdvancedClustering.java │ │ │ │ │ │ │ │ │ ├── Clusterable.java │ │ │ │ │ │ │ │ │ ├── OutlierClustering.java │ │ │ │ │ │ │ │ │ ├── RoleBasedClustering.java │ │ │ │ │ │ │ │ │ ├── StandardClustering.java │ │ │ │ │ │ │ │ │ └── UserBasedClustering.java │ │ │ │ │ │ │ │ ├── context │ │ │ │ │ │ │ │ │ ├── ClusteringActionExecutor.java │ │ │ │ │ │ │ │ │ └── ClusteringBehavioralResolver.java │ │ │ │ │ │ │ │ └── util │ │ │ │ │ │ │ │ │ ├── ClusteringUtils.java │ │ │ │ │ │ │ │ │ └── outlier │ │ │ │ │ │ │ │ │ ├── OutlierAnalyzeModel.java │ │ │ │ │ │ │ │ │ ├── OutlierAttributeResolver.java │ │ │ │ │ │ │ │ │ ├── OutlierDetectionStrategy.java │ │ │ │ │ │ │ │ │ ├── OutlierDetectionStrategyResolver.java │ │ │ │ │ │ │ │ │ ├── OutliersDetectionUtil.java │ │ │ │ │ │ │ │ │ ├── context │ │ │ │ │ │ │ │ │ ├── OutlierDetectionActionExecutor.java │ │ │ │ │ │ │ │ │ └── OutlierPatternResolver.java │ │ │ │ │ │ │ │ │ ├── explanation │ │ │ │ │ │ │ │ │ ├── AnomalyExplanationUtil.java │ │ │ │ │ │ │ │ │ ├── ExplanationUtil.java │ │ │ │ │ │ │ │ │ └── OutlierExplanationUtil.java │ │ │ │ │ │ │ │ │ ├── inline │ │ │ │ │ │ │ │ │ ├── BasicOutlierDetectionStrategy.java │ │ │ │ │ │ │ │ │ └── OutlierDetectionBasicModel.java │ │ │ │ │ │ │ │ │ └── outline │ │ │ │ │ │ │ │ │ ├── OutlierDetectionOutlineClusterModel.java │ │ │ │ │ │ │ │ │ ├── OutlierDetectionOutlineModel.java │ │ │ │ │ │ │ │ │ └── OutlineOutlierDetectionStrategy.java │ │ │ │ │ │ │ ├── mechanism │ │ │ │ │ │ │ │ ├── AttributeMatchExplanation.java │ │ │ │ │ │ │ │ ├── Cluster.java │ │ │ │ │ │ │ │ ├── ClusterExplanation.java │ │ │ │ │ │ │ │ ├── Clusterable.java │ │ │ │ │ │ │ │ ├── Clusterer.java │ │ │ │ │ │ │ │ ├── ClusteringMode.java │ │ │ │ │ │ │ │ ├── DataPoint.java │ │ │ │ │ │ │ │ ├── DensityBasedClustering.java │ │ │ │ │ │ │ │ ├── DistanceMeasure.java │ │ │ │ │ │ │ │ └── JaccardDistancesMeasure.java │ │ │ │ │ │ │ └── object │ │ │ │ │ │ │ │ ├── ExtensionProperties.java │ │ │ │ │ │ │ │ ├── RoleAnalysisAttributeDefConvert.java │ │ │ │ │ │ │ │ └── SimpleHeatPattern.java │ │ │ │ │ │ └── detection │ │ │ │ │ │ │ ├── DefaultDetectionAction.java │ │ │ │ │ │ │ ├── DefaultPatternResolver.java │ │ │ │ │ │ │ ├── DetectionActionExecutor.java │ │ │ │ │ │ │ ├── DetectionOperation.java │ │ │ │ │ │ │ ├── PatternConfidenceCalculator.java │ │ │ │ │ │ │ └── PatternResolver.java │ │ │ │ │ ├── analysis │ │ │ │ │ │ └── AttributeAnalysisUtil.java │ │ │ │ │ ├── chunk │ │ │ │ │ │ ├── BasePrepareAction.java │ │ │ │ │ │ ├── CompressedMiningStructure.java │ │ │ │ │ │ ├── ExpandedMiningStructure.java │ │ │ │ │ │ ├── MiningChunkUtils.java │ │ │ │ │ │ └── MiningStructure.java │ │ │ │ │ └── utils │ │ │ │ │ │ ├── DebugOutlierDetectionEvaluation.java │ │ │ │ │ │ ├── RoleAnalysisAlgorithmUtils.java │ │ │ │ │ │ └── RoleAnalysisUtils.java │ │ │ │ │ ├── schema │ │ │ │ │ └── transform │ │ │ │ │ │ ├── DefinitionsToTransformable.java │ │ │ │ │ │ ├── DelegatedItem.java │ │ │ │ │ │ ├── PartiallyMutableComplexTypeDefinition.java │ │ │ │ │ │ ├── PartiallyMutableItemDefinition.java │ │ │ │ │ │ ├── TransformableComplexTypeDefinition.java │ │ │ │ │ │ ├── TransformableContainerDefinition.java │ │ │ │ │ │ ├── TransformableDefinition.java │ │ │ │ │ │ ├── TransformableItemDefinition.java │ │ │ │ │ │ ├── TransformableObjectDefinition.java │ │ │ │ │ │ ├── TransformablePropertyDefinition.java │ │ │ │ │ │ └── TransformableReferenceDefinition.java │ │ │ │ │ ├── scripting │ │ │ │ │ ├── ActionExecutor.java │ │ │ │ │ ├── BulkActionExecutorRegistry.java │ │ │ │ │ ├── BulkActionsExecutor.java │ │ │ │ │ ├── ExecutionContext.java │ │ │ │ │ ├── IterativeScriptingActivityHandler.java │ │ │ │ │ ├── NonIterativeScriptingActivityHandler.java │ │ │ │ │ ├── PipelineData.java │ │ │ │ │ ├── VariablesUtil.java │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── AbstractExecuteExecutor.java │ │ │ │ │ │ ├── AbstractObjectBasedActionExecutor.java │ │ │ │ │ │ ├── AddExecutor.java │ │ │ │ │ │ ├── ApplyDefinitionExecutor.java │ │ │ │ │ │ ├── AssignExecutor.java │ │ │ │ │ │ ├── AssignmentOperationsExecutor.java │ │ │ │ │ │ ├── BaseActionExecutor.java │ │ │ │ │ │ ├── DeleteExecutor.java │ │ │ │ │ │ ├── DiscoverConnectorsExecutor.java │ │ │ │ │ │ ├── EnableDisableExecutor.java │ │ │ │ │ │ ├── EvaluateExpressionExecutor.java │ │ │ │ │ │ ├── ExecuteScriptExecutor.java │ │ │ │ │ │ ├── GenerateValueExecutor.java │ │ │ │ │ │ ├── LogExecutor.java │ │ │ │ │ │ ├── ModifyExecutor.java │ │ │ │ │ │ ├── NotifyExecutor.java │ │ │ │ │ │ ├── PurgeSchemaExecutor.java │ │ │ │ │ │ ├── RecomputeExecutor.java │ │ │ │ │ │ ├── ReencryptExecutor.java │ │ │ │ │ │ ├── ResolveExecutor.java │ │ │ │ │ │ ├── ResumeTaskExecutor.java │ │ │ │ │ │ ├── SearchExecutor.java │ │ │ │ │ │ ├── TestResourceExecutor.java │ │ │ │ │ │ ├── UnassignExecutor.java │ │ │ │ │ │ └── ValidateExecutor.java │ │ │ │ │ ├── expressions │ │ │ │ │ │ ├── BaseExpressionEvaluator.java │ │ │ │ │ │ ├── FilterContentEvaluator.java │ │ │ │ │ │ └── SelectEvaluator.java │ │ │ │ │ └── helpers │ │ │ │ │ │ ├── ExpressionHelper.java │ │ │ │ │ │ ├── OperationsHelper.java │ │ │ │ │ │ └── ScriptingDataUtil.java │ │ │ │ │ ├── security │ │ │ │ │ ├── AuthorizationMigrator.java │ │ │ │ │ ├── ClusterwideUserSessionManagerImpl.java │ │ │ │ │ ├── GuiProfileCompiler.java │ │ │ │ │ ├── GuiProfileCompilerRegistryImpl.java │ │ │ │ │ ├── GuiProfiledPrincipalManagerImpl.java │ │ │ │ │ ├── ModelSecurityPolicyFinder.java │ │ │ │ │ ├── RunAsRunner.java │ │ │ │ │ ├── RunAsRunnerFactory.java │ │ │ │ │ └── SecurityHelper.java │ │ │ │ │ ├── simulation │ │ │ │ │ ├── AggregatedMetricsComputation.java │ │ │ │ │ ├── ClosedResultsChecker.java │ │ │ │ │ ├── FullOperationSimulationDataImpl.java │ │ │ │ │ ├── ObjectMetricsComputation.java │ │ │ │ │ ├── OpenResultTransactionsHolder.java │ │ │ │ │ ├── ProcessedObjectImpl.java │ │ │ │ │ ├── ProcessedObjectsWriter.java │ │ │ │ │ ├── SimulationResultImpl.java │ │ │ │ │ ├── SimulationResultManagerImpl.java │ │ │ │ │ ├── SimulationTransactionImpl.java │ │ │ │ │ └── SingleDeltaSimulationDataImpl.java │ │ │ │ │ ├── sync │ │ │ │ │ ├── CorrelationProcessing.java │ │ │ │ │ ├── ItemSynchronizationState.java │ │ │ │ │ ├── PreMappingsEvaluator.java │ │ │ │ │ ├── ProjectionLinkUpdater.java │ │ │ │ │ ├── ShadowUpdater.java │ │ │ │ │ ├── SynchronizationContext.java │ │ │ │ │ ├── SynchronizationContextCreator.java │ │ │ │ │ ├── SynchronizationService.java │ │ │ │ │ ├── SynchronizationServiceImpl.java │ │ │ │ │ ├── SynchronizationServiceRegisterAgent.java │ │ │ │ │ ├── SynchronizationSituation.java │ │ │ │ │ ├── SynchronizationSorterEvaluatorImpl.java │ │ │ │ │ ├── SynchronizationState.java │ │ │ │ │ ├── action │ │ │ │ │ │ ├── AddFocusAction.java │ │ │ │ │ │ ├── BaseAction.java │ │ │ │ │ │ ├── BaseClockworkAction.java │ │ │ │ │ │ ├── CreateCorrelationCaseAction.java │ │ │ │ │ │ ├── DeleteFocusAction.java │ │ │ │ │ │ ├── DeleteResourceObjectAction.java │ │ │ │ │ │ ├── InactivateFocusAction.java │ │ │ │ │ │ ├── InactivateResourceObjectAction.java │ │ │ │ │ │ ├── LinkAction.java │ │ │ │ │ │ ├── StandardActionsRegistrar.java │ │ │ │ │ │ ├── SynchronizationAction.java │ │ │ │ │ │ ├── SynchronizeAction.java │ │ │ │ │ │ └── UnlinkAction.java │ │ │ │ │ ├── reactions │ │ │ │ │ │ ├── ActionDefinitionClass.java │ │ │ │ │ │ ├── ActionInstantiationContext.java │ │ │ │ │ │ ├── ActionUris.java │ │ │ │ │ │ ├── SynchronizationActionExecutor.java │ │ │ │ │ │ └── SynchronizationActionFactory.java │ │ │ │ │ └── tasks │ │ │ │ │ │ ├── NullPostSearchFilterImpl.java │ │ │ │ │ │ ├── PostSearchFilter.java │ │ │ │ │ │ ├── ProcessingScope.java │ │ │ │ │ │ ├── ResourceSearchSpecification.java │ │ │ │ │ │ ├── ResourceSetTaskWorkDefinition.java │ │ │ │ │ │ ├── SyncItemProcessingRequest.java │ │ │ │ │ │ ├── SyncTaskHelper.java │ │ │ │ │ │ ├── Synchronizer.java │ │ │ │ │ │ ├── async │ │ │ │ │ │ ├── AsyncUpdateActivityHandler.java │ │ │ │ │ │ ├── AsyncUpdateActivityRun.java │ │ │ │ │ │ └── AsyncUpdateWorkDefinition.java │ │ │ │ │ │ ├── imp │ │ │ │ │ │ ├── AbstractImportActivityRun.java │ │ │ │ │ │ ├── ImportActivityHandler.java │ │ │ │ │ │ ├── ImportActivityRun.java │ │ │ │ │ │ ├── ImportFromResourceLauncher.java │ │ │ │ │ │ ├── ImportWorkDefinition.java │ │ │ │ │ │ └── reclassification │ │ │ │ │ │ │ ├── ReclassificationActivityHandler.java │ │ │ │ │ │ │ ├── ReclassificationActivityRun.java │ │ │ │ │ │ │ └── ReclassificationWorkDefinition.java │ │ │ │ │ │ ├── recon │ │ │ │ │ │ ├── DebugReconciliationResultListener.java │ │ │ │ │ │ ├── OperationCompletionActivityRun.java │ │ │ │ │ │ ├── PartialReconciliationActivityRun.java │ │ │ │ │ │ ├── ReconciliationActivityHandler.java │ │ │ │ │ │ ├── ReconciliationActivityRun.java │ │ │ │ │ │ ├── ReconciliationLauncher.java │ │ │ │ │ │ ├── ReconciliationResult.java │ │ │ │ │ │ ├── ReconciliationResultListener.java │ │ │ │ │ │ ├── ReconciliationWorkDefinition.java │ │ │ │ │ │ ├── RemainingShadowsActivityRun.java │ │ │ │ │ │ └── ResourceObjectsReconciliationActivityRun.java │ │ │ │ │ │ └── sync │ │ │ │ │ │ ├── ActivityTokenStorageImpl.java │ │ │ │ │ │ ├── LiveSyncActivityHandler.java │ │ │ │ │ │ ├── LiveSyncActivityRun.java │ │ │ │ │ │ └── LiveSyncWorkDefinition.java │ │ │ │ │ ├── tasks │ │ │ │ │ ├── AdvancedActivityRunSupportImpl.java │ │ │ │ │ ├── DeletionActivityHandler.java │ │ │ │ │ ├── ExplicitChangeExecutionActivityHandler.java │ │ │ │ │ ├── IterativeChangeExecutionActivityHandler.java │ │ │ │ │ ├── ModelActivityHandler.java │ │ │ │ │ ├── RecomputationActivityHandler.java │ │ │ │ │ ├── ReindexActivityHandler.java │ │ │ │ │ ├── RepartitionActivityHandler.java │ │ │ │ │ ├── RoleAnalysisClusteringActivityHandler.java │ │ │ │ │ ├── RoleAnalysisPatternDetectionActivityHandler.java │ │ │ │ │ ├── RoleMembershipManagementActivityHandler.java │ │ │ │ │ ├── ShadowCleanupActivityHandler.java │ │ │ │ │ ├── ShadowFetchingPreprocessor.java │ │ │ │ │ ├── cluster │ │ │ │ │ │ ├── AutoScalingActivityHandler.java │ │ │ │ │ │ ├── AutoScalingActivityRun.java │ │ │ │ │ │ ├── AutoScalingWorkDefinition.java │ │ │ │ │ │ └── ReconciliationLatch.java │ │ │ │ │ ├── scanner │ │ │ │ │ │ ├── FocusValidityScanActivityHandler.java │ │ │ │ │ │ ├── FocusValidityScanPartialRun.java │ │ │ │ │ │ ├── FocusValidityScanWorkDefinition.java │ │ │ │ │ │ └── ScanActivityRun.java │ │ │ │ │ ├── simple │ │ │ │ │ │ └── SimpleActivityHandler.java │ │ │ │ │ └── sources │ │ │ │ │ │ ├── ModelAuditItemSource.java │ │ │ │ │ │ ├── ModelContainerableItemSource.java │ │ │ │ │ │ └── ModelObjectSource.java │ │ │ │ │ ├── trigger │ │ │ │ │ ├── CompletedTaskCleanupTriggerHandler.java │ │ │ │ │ ├── ProcessedTriggers.java │ │ │ │ │ ├── RecomputeTriggerHandler.java │ │ │ │ │ ├── ShadowReconcileTriggerHandler.java │ │ │ │ │ ├── SingleTriggerHandler.java │ │ │ │ │ ├── TriggerHandlerRegistryImpl.java │ │ │ │ │ ├── TriggerScanActivityHandler.java │ │ │ │ │ ├── TriggerScanActivityRun.java │ │ │ │ │ ├── TriggerScanItemProcessor.java │ │ │ │ │ ├── TriggerScanWorkDefinition.java │ │ │ │ │ └── UnlockTriggerHandler.java │ │ │ │ │ ├── util │ │ │ │ │ ├── DataModelUtil.java │ │ │ │ │ ├── ModelImplUtils.java │ │ │ │ │ └── ReferenceResolverImpl.java │ │ │ │ │ ├── validator │ │ │ │ │ ├── DuplicateObjectTypeDetector.java │ │ │ │ │ ├── ObjectTypeRecord.java │ │ │ │ │ └── ResourceValidatorImpl.java │ │ │ │ │ └── visualizer │ │ │ │ │ ├── ActivationDescriptionHandler.java │ │ │ │ │ ├── AssignmentDescriptionHandler.java │ │ │ │ │ ├── AssociationDescriptionHandler.java │ │ │ │ │ ├── ClassLoggerDescriptionHandler.java │ │ │ │ │ ├── FallbackDescriptionHandler.java │ │ │ │ │ ├── PasswordDescriptionHandler.java │ │ │ │ │ ├── Resolver.java │ │ │ │ │ ├── ShadowDescriptionHandler.java │ │ │ │ │ ├── VisualizationContext.java │ │ │ │ │ ├── VisualizationDescriptionHandler.java │ │ │ │ │ ├── Visualizer.java │ │ │ │ │ └── output │ │ │ │ │ ├── NameImpl.java │ │ │ │ │ ├── VisualizationDeltaItemImpl.java │ │ │ │ │ ├── VisualizationImpl.java │ │ │ │ │ ├── VisualizationItemImpl.java │ │ │ │ │ └── VisualizationItemValueImpl.java │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ └── cxf │ │ │ │ │ └── org.apache.cxf.Logger │ │ │ │ ├── com │ │ │ │ └── evolveum │ │ │ │ │ └── midpoint │ │ │ │ │ └── security.properties │ │ │ │ └── ctx-model.xml │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── model │ │ │ │ └── impl │ │ │ │ ├── AbstractEmptyInternalModelTest.java │ │ │ │ ├── AbstractInternalModelIntegrationTest.java │ │ │ │ ├── AbstractModelImplementationIntegrationTest.java │ │ │ │ ├── SpringApplicationContextTest.java │ │ │ │ ├── TestBugreports.java │ │ │ │ ├── TestFilterResolver.java │ │ │ │ ├── TestFilterResolverQueryDsl.java │ │ │ │ ├── TestRefinedSchema.java │ │ │ │ ├── TestSchemaContext.java │ │ │ │ ├── controller │ │ │ │ └── DummySystemConfigurationChangeDispatcherImpl.java │ │ │ │ ├── correlator │ │ │ │ ├── CorrelatorTestUtil.java │ │ │ │ ├── TestingAccount.java │ │ │ │ ├── correlation │ │ │ │ │ ├── CorrelationTestingAccount.java │ │ │ │ │ ├── ExpectedMatches.java │ │ │ │ │ ├── TestCandidateOwner.java │ │ │ │ │ ├── TestCorrelators.java │ │ │ │ │ └── TestExpressionCorrelator.java │ │ │ │ ├── matching │ │ │ │ │ ├── AbstractIdMatchServiceTest.java │ │ │ │ │ ├── ExpectedMatchingResult.java │ │ │ │ │ ├── MatchingTestingAccount.java │ │ │ │ │ ├── TestDummyIdMatchServiceImpl.java │ │ │ │ │ └── TestIdMatchServiceImpl.java │ │ │ │ └── tasks │ │ │ │ │ ├── CorrelationDefinitionProviderFactoryTest.java │ │ │ │ │ ├── CorrelationDefinitionUtilTest.java │ │ │ │ │ ├── CorrelationServiceTest.java │ │ │ │ │ └── ResourceCorrelationDefinitionProviderTest.java │ │ │ │ ├── expr │ │ │ │ ├── TestFilterExpression.java │ │ │ │ ├── TestModelExpressions.java │ │ │ │ └── TestQueryExpression.java │ │ │ │ ├── lens │ │ │ │ ├── AbstractAssignmentEvaluatorTest.java │ │ │ │ ├── AbstractLensTest.java │ │ │ │ ├── AbstractTestProjectorPersona.java │ │ │ │ ├── TestAssignedMappings.java │ │ │ │ ├── TestAssignmentEvaluator.java │ │ │ │ ├── TestAssignmentEvaluatorDynamic.java │ │ │ │ ├── TestAssignmentProcessor.java │ │ │ │ ├── TestAssignmentProcessor2.java │ │ │ │ ├── TestClockwork.java │ │ │ │ ├── TestDependencies.java │ │ │ │ ├── TestPasswordPolicy.java │ │ │ │ ├── TestPasswordPolicyProcessor.java │ │ │ │ ├── TestPasswordPolicyProcessorForService.java │ │ │ │ ├── TestPasswordPolicyProcessorForUser.java │ │ │ │ ├── TestPolicyRules.java │ │ │ │ ├── TestPolicyRules2.java │ │ │ │ ├── TestPolicyStateRecording.java │ │ │ │ ├── TestProjectionPolicyRules.java │ │ │ │ ├── TestProjector.java │ │ │ │ ├── TestProjectorPersona.java │ │ │ │ ├── TestProjectorRoleEntitlement.java │ │ │ │ └── TestReconScript.java │ │ │ │ ├── migrator │ │ │ │ └── TestMigrator.java │ │ │ │ ├── mining │ │ │ │ ├── OutlierAttributeResolverTest.java │ │ │ │ └── OutlierExplanationResolverTest.java │ │ │ │ ├── misc │ │ │ │ ├── ShadowAttributeIdSyncStoreReadTest.java │ │ │ │ ├── ShadowIntegrityCheckerTest.java │ │ │ │ ├── TestCaseManagement.java │ │ │ │ ├── TestMiscellaneous.java │ │ │ │ └── TestRelationRegistry.java │ │ │ │ ├── perf │ │ │ │ └── TestPerformance.java │ │ │ │ ├── security │ │ │ │ └── TestGuiProfiledPrincipalManager.java │ │ │ │ ├── spec │ │ │ │ └── expressions │ │ │ │ │ └── TestExpressionSpec.java │ │ │ │ ├── sync │ │ │ │ ├── SynchronizationSituationTest.java │ │ │ │ ├── TestCorrelationDuringResourceLifecycle.java │ │ │ │ └── TestSynchronizationService.java │ │ │ │ ├── util │ │ │ │ ├── RecordingProgressListener.java │ │ │ │ └── mock │ │ │ │ │ ├── MockClockworkHook.java │ │ │ │ │ ├── MockFactory.java │ │ │ │ │ └── MockLensDebugListener.java │ │ │ │ └── visualizer │ │ │ │ ├── TestVisualizer.java │ │ │ │ └── localization │ │ │ │ └── TestWrapableLocalizationImpl.java │ │ │ └── resources │ │ │ ├── account-custom-function.xml │ │ │ ├── account-origin-password-change.xml │ │ │ ├── account-resource-schema-handling-custom-variables.xml │ │ │ ├── account-target-password-change.xml │ │ │ ├── account-xpath-evaluation-extension.xml │ │ │ ├── account-xpath-evaluation-filter.xml │ │ │ ├── account-xpath2.xml │ │ │ ├── common │ │ │ ├── account-elaine-dummy.xml │ │ │ ├── account-guybrush-dummy.xml │ │ │ ├── account-hbarbossa-dummy.xml │ │ │ ├── account-herman-dummy.xml │ │ │ ├── account-herman-opendj.xml │ │ │ ├── account-shadow-calypso-dummy.xml │ │ │ ├── account-shadow-guybrush-dummy.xml │ │ │ ├── account-shadow-jack-dummy.xml │ │ │ ├── entitlement-shadow-pirate-dummy.xml │ │ │ ├── password-policy-global.xml │ │ │ ├── resource-dummy-dependency-filter-querydsl.xml │ │ │ ├── resource-dummy-dependency-filter.xml │ │ │ ├── resource-dummy-deprecated.xml │ │ │ ├── resource-dummy-id.xml │ │ │ ├── resource-dummy.xml │ │ │ ├── role-dummy-account.xml │ │ │ ├── role-dummy-group.xml │ │ │ ├── role-superuser.xml │ │ │ ├── security-policy.xml │ │ │ ├── system-configuration-empty.xml │ │ │ ├── system-configuration.xml │ │ │ ├── user-administrator.xml │ │ │ ├── user-barbossa.xml │ │ │ ├── user-elaine.xml │ │ │ ├── user-guybrush.xml │ │ │ ├── user-jack.xml │ │ │ ├── user-largo.xml │ │ │ └── user-template.xml │ │ │ ├── controller │ │ │ ├── account-no-schema-handling.xml │ │ │ ├── account-no-schema-handling2.xml │ │ │ ├── account-schema-handling.xml │ │ │ ├── account-with-pwd.xml │ │ │ ├── account-without-pwd.xml │ │ │ ├── addObject │ │ │ │ ├── add-resource-correct.xml │ │ │ │ ├── add-user-correct.xml │ │ │ │ ├── add-user-default-accounts.xml │ │ │ │ ├── add-user-with-oid.xml │ │ │ │ ├── add-user-without-name.xml │ │ │ │ ├── expected-account.xml │ │ │ │ ├── expected-add-user-default-accounts.xml │ │ │ │ └── expected-modify-user-default-accounts.xml │ │ │ ├── addUser │ │ │ │ ├── empty-user.xml │ │ │ │ ├── expected-account.xml │ │ │ │ └── expected-user.xml │ │ │ ├── deleteObject │ │ │ │ └── delete-user.xml │ │ │ ├── getObject │ │ │ │ └── get-user-correct.xml │ │ │ ├── listObjects │ │ │ │ ├── list-account-shadow-owner.xml │ │ │ │ ├── resource-object-shadow-list.xml │ │ │ │ └── user-list.xml │ │ │ ├── modify │ │ │ │ ├── account.xml │ │ │ │ ├── change.xml │ │ │ │ └── user.xml │ │ │ └── property-list-type.xml │ │ │ ├── correlator │ │ │ ├── correlation │ │ │ │ ├── expression │ │ │ │ │ ├── resource-dummy.xml │ │ │ │ │ ├── user-x.xml │ │ │ │ │ ├── user-y.xml │ │ │ │ │ └── user-z.xml │ │ │ │ ├── filter-by-employee-number-confirm-by-family-name-except-for-single-result.csv │ │ │ │ ├── filter-by-employee-number-confirm-by-family-name-except-for-single-result.xml │ │ │ │ ├── filter-by-employee-number-confirm-by-family-name.csv │ │ │ │ ├── filter-by-employee-number-confirm-by-family-name.xml │ │ │ │ ├── filter-by-employee-number.csv │ │ │ │ ├── filter-by-employee-number.xml │ │ │ │ ├── id-match.csv │ │ │ │ ├── id-match.xml │ │ │ │ ├── merge │ │ │ │ │ ├── resource-dummy-correlation-in-attribute.xml │ │ │ │ │ ├── resource-dummy-correlation-in-schema-handling.xml │ │ │ │ │ └── resource-dummy-correlation-in-synchronization.xml │ │ │ │ ├── owner-expression.csv │ │ │ │ ├── owner-expression.xml │ │ │ │ ├── owner-ref-expression.csv │ │ │ │ ├── owner-ref-expression.xml │ │ │ │ ├── resource-dummy-correlation.xml │ │ │ │ ├── smart-by-name-fuzzy-fixed-confidence.csv │ │ │ │ ├── smart-by-name-fuzzy-fixed-confidence.xml │ │ │ │ ├── smart-by-name-fuzzy.csv │ │ │ │ ├── smart-by-name-fuzzy.xml │ │ │ │ ├── smart-by-name-with-default-indexing.csv │ │ │ │ ├── smart-by-name-with-default-indexing.xml │ │ │ │ ├── smart-by-name-with-original-indexing.csv │ │ │ │ ├── smart-by-name-with-original-indexing.xml │ │ │ │ ├── smart-multi-rule-complex.csv │ │ │ │ ├── smart-multi-rule-complex.xml │ │ │ │ ├── smart-with-matching-rules.csv │ │ │ │ ├── smart-with-matching-rules.xml │ │ │ │ ├── task │ │ │ │ │ ├── account.csv │ │ │ │ │ ├── dummy-resource.xml │ │ │ │ │ ├── item-correlator.xml │ │ │ │ │ └── users.xml │ │ │ │ ├── user-template-complex.xml │ │ │ │ ├── user-template-default-indexing.xml │ │ │ │ ├── user-template-matching-rules-child.xml │ │ │ │ ├── user-template-matching-rules-main.xml │ │ │ │ ├── user-template-original-indexing.xml │ │ │ │ ├── users-smart-basic.xml │ │ │ │ ├── users-smart-matching-rules.xml │ │ │ │ └── users-traditional.xml │ │ │ └── matching │ │ │ │ ├── accounts.csv │ │ │ │ └── resource-dummy-matching.xml │ │ │ ├── ctx-model-test-main.xml │ │ │ ├── ctx-model-test-no-repo.xml │ │ │ ├── ctx-model-unit-test.xml │ │ │ ├── expr │ │ │ ├── account-xpath-evaluation-without-resource.xml │ │ │ ├── account-xpath-evaluation.xml │ │ │ ├── account.xml │ │ │ ├── expression-aql-constant-filter.xml │ │ │ ├── expression-aql-employeeType-filter-defaults.xml │ │ │ ├── expression-aql-employeeType-none-filter.xml │ │ │ ├── expression-aql-linkref-object-reference-type-filter-defaults.xml │ │ │ ├── expression-aql-name-multivalue-filter.xml │ │ │ ├── expression-aql-name-value-filter.xml │ │ │ ├── expression-employeeType-all-filter.xml │ │ │ ├── expression-employeeType-empty-filter.xml │ │ │ ├── expression-employeeType-error.xml │ │ │ ├── expression-employeeType-filter-defaults.xml │ │ │ ├── expression-employeeType-none-filter.xml │ │ │ ├── expression-employeeType-undefined-filter.xml │ │ │ ├── expression-linkref-filter-defaults.xml │ │ │ ├── expression-linkref-object-reference-type-filter-defaults.xml │ │ │ ├── expression-name-multivalue-filter.xml │ │ │ ├── expression-testCustomFunctionGood.xml │ │ │ ├── expression-testCustomFunctionUntyped.xml │ │ │ ├── expression-testCustomFunctionUntypedNullValue.xml │ │ │ ├── expression-testCustomFunctionWrongParameter.xml │ │ │ ├── expression-testGetLinkedShadowKindIntentFullname.xml │ │ │ ├── expression-testGetLinkedShadowKindIntentFullnameRepo.xml │ │ │ ├── expression-testGetLinkedShadowKindIntentUsername.xml │ │ │ ├── expression-testGetLinkedShadowKindIntentUsernameRepo.xml │ │ │ ├── expression-testGetLinkedShadowName.xml │ │ │ ├── expression-testGetLinkedShadowNameRepo.xml │ │ │ ├── expression-testGetManagersOids.xml │ │ │ ├── expression-testGetOrgByName.xml │ │ │ ├── expression-testGetUserByOid.xml │ │ │ ├── expression-testHello.xml │ │ │ ├── expression-testIsUniquePropertyValue.xml │ │ │ ├── function-library.xml │ │ │ ├── orgstruct.xml │ │ │ └── user-new.xml │ │ │ ├── lens │ │ │ ├── account-before-script.xml │ │ │ ├── archetype-admin.xml │ │ │ ├── assignment-direct-expression.xml │ │ │ ├── assignment-direct.xml │ │ │ ├── assignment-role-engineer.xml │ │ │ ├── assignment-role-manager.xml │ │ │ ├── assignment-role-visitor.xml │ │ │ ├── dependencies │ │ │ │ ├── account-elaine-template.xml │ │ │ │ ├── resource-dummy-a.xml │ │ │ │ ├── resource-dummy-b.xml │ │ │ │ ├── resource-dummy-c.xml │ │ │ │ ├── resource-dummy-d.xml │ │ │ │ ├── resource-dummy-p.xml │ │ │ │ ├── resource-dummy-r.xml │ │ │ │ ├── resource-dummy-x.xml │ │ │ │ ├── resource-dummy-y.xml │ │ │ │ └── resource-dummy-z.xml │ │ │ ├── focusMappings │ │ │ │ ├── metametarole-mmr1.1.1.xml │ │ │ │ ├── metametarole-mmr1.1.2.xml │ │ │ │ ├── metametarole-mmr1.1.3.xml │ │ │ │ ├── metametarole-mmr1.2.1.xml │ │ │ │ ├── metametarole-mmr1.2.2.xml │ │ │ │ ├── metametarole-mmr1.2.3.xml │ │ │ │ ├── metametarole-mmr1.3.1.xml │ │ │ │ ├── metametarole-mmr1.3.2.xml │ │ │ │ ├── metametarole-mmr2.1.1.xml │ │ │ │ ├── metametarole-mmr2.2.1.xml │ │ │ │ ├── metametarole-mmr2.3.1.xml │ │ │ │ ├── metametarole-mmr2.4.1.xml │ │ │ │ ├── metametarole-mmr3.1.1.xml │ │ │ │ ├── metarole-bearable.xml │ │ │ │ ├── metarole-mr1.1.xml │ │ │ │ ├── metarole-mr1.2.xml │ │ │ │ ├── metarole-mr1.3.xml │ │ │ │ ├── metarole-mr2.1.xml │ │ │ │ ├── metarole-mr2.2.xml │ │ │ │ ├── metarole-mr2.3.xml │ │ │ │ ├── metarole-mr2.4.xml │ │ │ │ ├── metarole-mr3.1.xml │ │ │ │ ├── metarole-mr3.2.xml │ │ │ │ ├── metarole-mr3.3.xml │ │ │ │ ├── metarole-mr4.1.xml │ │ │ │ ├── metarole-mr5.1.xml │ │ │ │ ├── metarole-mr6.1.xml │ │ │ │ ├── role-organizer.xml │ │ │ │ ├── role-propagator.xml │ │ │ │ ├── role-r1.xml │ │ │ │ ├── role-r2.xml │ │ │ │ ├── role-r3.xml │ │ │ │ ├── role-r4.xml │ │ │ │ ├── role-r5.xml │ │ │ │ ├── role-r6.xml │ │ │ │ ├── role-simple.xml │ │ │ │ ├── service-ring.xml │ │ │ │ ├── service-sting.xml │ │ │ │ ├── user-adam.xml │ │ │ │ ├── user-benjamin.xml │ │ │ │ ├── user-frodo.xml │ │ │ │ └── user-jim.xml │ │ │ ├── org-brethren.xml │ │ │ ├── policy │ │ │ │ ├── projection │ │ │ │ │ ├── resource-dummy-event-marks.xml │ │ │ │ │ └── system-configuration.xml │ │ │ │ ├── role-ambiguous-reference.xml │ │ │ │ ├── role-chained-references.xml │ │ │ │ ├── role-cyclic-references.xml │ │ │ │ ├── role-immutable-inducements.xml │ │ │ │ ├── role-no-inducements-add-delete-via-expression.xml │ │ │ │ ├── role-no-inducements-add-delete.xml │ │ │ │ ├── role-person.xml │ │ │ │ ├── role-rum-drinker.xml │ │ │ │ ├── role-rum-manager.xml │ │ │ │ ├── role-rum-spirit.xml │ │ │ │ ├── role-student.xml │ │ │ │ ├── role-temporary.xml │ │ │ │ ├── role-unresolvable-references.xml │ │ │ │ ├── state │ │ │ │ │ ├── a-test-2a.xml │ │ │ │ │ ├── a-test-2b.xml │ │ │ │ │ ├── a-test-2c.xml │ │ │ │ │ ├── a-test-3a.xml │ │ │ │ │ ├── a-test-3b.xml │ │ │ │ │ ├── a-test-3x.xml │ │ │ │ │ ├── a-test-3y.xml │ │ │ │ │ ├── a-test-wrong.xml │ │ │ │ │ ├── metarole-common-rules.xml │ │ │ │ │ ├── user-bob.xml │ │ │ │ │ └── user-eve.xml │ │ │ │ ├── user-frank.xml │ │ │ │ ├── user-joe.xml │ │ │ │ └── user-peter.xml │ │ │ ├── ppolicy │ │ │ │ ├── password-policy-all-ignored-for-generation.xml │ │ │ │ ├── password-policy-complex.xml │ │ │ │ ├── password-policy-gen-numeric-accepting-alphas.xml │ │ │ │ ├── password-policy-long.xml │ │ │ │ ├── password-policy-minimal.xml │ │ │ │ ├── password-policy-numeric.xml │ │ │ │ ├── password-policy-props.xml │ │ │ │ ├── password-policy-required-char-ignored-for-generation.xml │ │ │ │ ├── password-policy-tri.xml │ │ │ │ ├── password-policy-username.xml │ │ │ │ ├── service-printer.xml │ │ │ │ ├── value-policy-generate-empty.xml │ │ │ │ ├── value-policy-generate-without-limit-with-unique.xml │ │ │ │ ├── value-policy-generate.xml │ │ │ │ ├── value-policy-must-be-first.xml │ │ │ │ └── value-policy-random-pin.xml │ │ │ ├── resource-dummy-empty.xml │ │ │ ├── resource-specific-1.xml │ │ │ ├── resource-template.xml │ │ │ ├── role-constable.xml │ │ │ ├── role-corp-auth.xml │ │ │ ├── role-corp-contractor.xml │ │ │ ├── role-corp-customer.xml │ │ │ ├── role-corp-employee.xml │ │ │ ├── role-corp-engineer.xml │ │ │ ├── role-corp-generic-metarole-dynamic.xml │ │ │ ├── role-corp-generic-metarole.xml │ │ │ ├── role-corp-job-metarole-dynamic.xml │ │ │ ├── role-corp-job-metarole.xml │ │ │ ├── role-corp-manager.xml │ │ │ ├── role-corp-visitor.xml │ │ │ ├── role-judge-record-only.xml │ │ │ ├── role-judge.xml │ │ │ ├── role-localized.xml │ │ │ ├── role-metarole-sod-notification.xml │ │ │ ├── role-mutineer.xml │ │ │ ├── role-persona-archetype-admin.xml │ │ │ ├── role-pirate-record-only.xml │ │ │ ├── role-pirate.xml │ │ │ ├── role-thief.xml │ │ │ ├── task-reconcile-dummy.xml │ │ │ ├── template-dynamic-org-assignment.xml │ │ │ ├── user-barbossa-modify-add-assignment-account-dummy-attr.xml │ │ │ ├── user-barbossa-modify-assignment-replace-ac.xml │ │ │ ├── user-barbossa-modify-delete-assignment-account-dummy-attr.xml │ │ │ ├── user-drake.xml │ │ │ ├── user-jack-modify-add-assignment-account-dummy-attr.xml │ │ │ ├── user-jack-modify-add-assignment-account-dummy.xml │ │ │ ├── user-jack-modify-add-assignment-role-engineer.xml │ │ │ ├── user-jack-modify-delete-assignment-account-dummy.xml │ │ │ ├── user-jack-modify-set-cost-center.xml │ │ │ └── user-localized.xml │ │ │ ├── localization │ │ │ ├── Midpoint.properties │ │ │ └── Midpoint_sk.properties │ │ │ ├── logback-test.xml │ │ │ ├── migrator │ │ │ ├── after │ │ │ │ ├── object-template.xml │ │ │ │ └── resource.xml │ │ │ ├── before │ │ │ │ ├── object-template.xml │ │ │ │ └── resource.xml │ │ │ └── user-migrate-credentials.xml │ │ │ ├── misc │ │ │ ├── case1.xml │ │ │ ├── case2.xml │ │ │ ├── case3.xml │ │ │ ├── resource-dummy-for-checker.xml │ │ │ ├── resource-dummy-generate-object-classes.xml │ │ │ ├── shadow-1.xml │ │ │ ├── shadow-2-duplicate.xml │ │ │ ├── shadow-2.xml │ │ │ ├── sysconfig-added-custom-relations.xml │ │ │ ├── sysconfig-overridden-org-manager.xml │ │ │ ├── sysconfig-replaced-all-relations.xml │ │ │ ├── task-shadow-integrity-check.xml │ │ │ ├── template-a1.xml │ │ │ ├── template-a2.xml │ │ │ ├── template-a3.xml │ │ │ ├── template-b1.xml │ │ │ ├── template-b2a.xml │ │ │ ├── template-b2b.xml │ │ │ ├── user1.xml │ │ │ └── user2.xml │ │ │ ├── perf │ │ │ ├── archetype-person.xml │ │ │ ├── object-template-person.xml │ │ │ ├── role-can-read-all.xml │ │ │ ├── role-can-read-almost-all.xml │ │ │ ├── role-can-read-few.xml │ │ │ ├── user-can-read-all.xml │ │ │ ├── user-can-read-almost-all.xml │ │ │ └── user-can-read-few.xml │ │ │ ├── refinedschema │ │ │ ├── task-reconcile-dummy-kind-intent-objectclass.xml │ │ │ ├── task-reconcile-dummy-kind-intent.xml │ │ │ └── task-reconcile-dummy-objectclass.xml │ │ │ ├── schema │ │ │ ├── big-user-extension.xsd │ │ │ ├── correlation.xsd │ │ │ └── piracy.xsd │ │ │ ├── spec │ │ │ └── expressions │ │ │ │ ├── fullName-from-parts.xml │ │ │ │ └── givenName-to-uppercase.xml │ │ │ ├── sync │ │ │ ├── action │ │ │ │ ├── account │ │ │ │ │ ├── group-change.xml │ │ │ │ │ └── user.xml │ │ │ │ └── user │ │ │ │ │ ├── existing-user-change.xml │ │ │ │ │ ├── existing-user.xml │ │ │ │ │ ├── new-user.xml │ │ │ │ │ └── user-template.xml │ │ │ ├── change-correct.xml │ │ │ ├── change-without-object.xml │ │ │ ├── change-without-resource.xml │ │ │ ├── resource-dummy-active.xml │ │ │ ├── resource-dummy-broken.xml │ │ │ ├── resource-dummy-limited.xml │ │ │ ├── resource-dummy-proposed.xml │ │ │ ├── shadow-pirates-dummy.xml │ │ │ └── task-import-dummy-broken.xml │ │ │ ├── user-custom-function.xml │ │ │ ├── user-default-accounts.xml │ │ │ ├── user-modify-action.xml │ │ │ ├── user-password-change.xml │ │ │ ├── user-template-create-account.xml │ │ │ ├── user-unlink-account-action.xml │ │ │ ├── user-xpath2.xml │ │ │ └── user.xml │ └── testng-unit.xml ├── model-intest │ ├── pom.xml │ ├── src │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── model │ │ │ │ └── intest │ │ │ │ ├── AbstractConfiguredModelIntegrationTest.java │ │ │ │ ├── AbstractEmptyModelIntegrationTest.java │ │ │ │ ├── AbstractInitializedModelIntegrationTest.java │ │ │ │ ├── CommonArchetypes.java │ │ │ │ ├── CommonTasks.java │ │ │ │ ├── DelayingProgressListener.java │ │ │ │ ├── TestAccessesValueMetadata.java │ │ │ │ ├── TestActivation.java │ │ │ │ ├── TestAssignmentsProcessing.java │ │ │ │ ├── TestAudit.java │ │ │ │ ├── TestBasicValueMetadata.java │ │ │ │ ├── TestCaseIgnore.java │ │ │ │ ├── TestConnectorDummyFake.java │ │ │ │ ├── TestConnectorMultiInstance.java │ │ │ │ ├── TestConsistencySimple.java │ │ │ │ ├── TestCustomRelations.java │ │ │ │ ├── TestDeputy.java │ │ │ │ ├── TestDiscoveryBoundaries.java │ │ │ │ ├── TestEntitlements.java │ │ │ │ ├── TestExpressionProfileSemiSafe.java │ │ │ │ ├── TestExpressionProfiles.java │ │ │ │ ├── TestFunctions.java │ │ │ │ ├── TestIdentities.java │ │ │ │ ├── TestInbounds.java │ │ │ │ ├── TestIndexing.java │ │ │ │ ├── TestInitialObjects.java │ │ │ │ ├── TestIntent.java │ │ │ │ ├── TestIteration.java │ │ │ │ ├── TestLifecycle.java │ │ │ │ ├── TestLifecycleBasic.java │ │ │ │ ├── TestLinkedObjects.java │ │ │ │ ├── TestLoggingConfiguration.java │ │ │ │ ├── TestMemberRecompute.java │ │ │ │ ├── TestMerge.java │ │ │ │ ├── TestModelCrudService.java │ │ │ │ ├── TestModelServiceContract.java │ │ │ │ ├── TestModelServiceContractCaching.java │ │ │ │ ├── TestModelVisualization.java │ │ │ │ ├── TestNotifications.java │ │ │ │ ├── TestObjectMarks.java │ │ │ │ ├── TestOptimizingTriggerCreator.java │ │ │ │ ├── TestPreviewChanges.java │ │ │ │ ├── TestRaceConditions.java │ │ │ │ ├── TestResources.java │ │ │ │ ├── TestRunAs.java │ │ │ │ ├── TestSchemalessResource.java │ │ │ │ ├── TestScriptHooks.java │ │ │ │ ├── TestSecretProviders.java │ │ │ │ ├── TestShadowCaching.java │ │ │ │ ├── TestStrangeCases.java │ │ │ │ ├── TestTolerantAttributes.java │ │ │ │ ├── TestTriggerTask.java │ │ │ │ ├── TestUserTemplate.java │ │ │ │ ├── TestUserTemplateWithRanges.java │ │ │ │ ├── TestValueMetadata.java │ │ │ │ ├── TestVolatility.java │ │ │ │ ├── archetypes │ │ │ │ ├── AbstractArchetypesTest.java │ │ │ │ ├── TestArchetypeInheritance.java │ │ │ │ ├── TestArchetypes.java │ │ │ │ └── TestCollections.java │ │ │ │ ├── associations │ │ │ │ └── TestAssociations.java │ │ │ │ ├── async │ │ │ │ ├── MockAsyncUpdateSource.java │ │ │ │ ├── TestAsyncUpdateGrouperJson.java │ │ │ │ ├── TestAsyncUpdateTaskMechanics.java │ │ │ │ ├── TestAsyncUpdateUcf.java │ │ │ │ └── TestNotifyChange.java │ │ │ │ ├── complexAttributes │ │ │ │ └── TestComplexAttributes.java │ │ │ │ ├── dummys │ │ │ │ ├── DummyAdTrivialScenario.java │ │ │ │ ├── DummyDmsScenario.java │ │ │ │ ├── DummyHrScenarioExtended.java │ │ │ │ ├── ScenariosConstants.java │ │ │ │ └── package-info.java │ │ │ │ ├── gensync │ │ │ │ ├── AbstractGenericSyncTest.java │ │ │ │ ├── TestAssociationInbound.java │ │ │ │ ├── TestEditSchema.java │ │ │ │ └── TestRoleEntitlement.java │ │ │ │ ├── importer │ │ │ │ ├── AbstractImportTest.java │ │ │ │ ├── JsonImportTest.java │ │ │ │ ├── XmlImportTest.java │ │ │ │ └── YamlImportTest.java │ │ │ │ ├── manual │ │ │ │ ├── AbstractDirectManualResourceTest.java │ │ │ │ ├── AbstractGroupingManualResourceTest.java │ │ │ │ ├── AbstractManualResourceTest.java │ │ │ │ ├── BackingStore.java │ │ │ │ ├── CsvBackingStore.java │ │ │ │ ├── CsvDisablingBackingStore.java │ │ │ │ ├── DummyItsm.java │ │ │ │ ├── DummyItsmIntegrationConnectorConfiguration.java │ │ │ │ ├── DummyItsmIntegrationConnectorInstance.java │ │ │ │ ├── DummyItsmTicket.java │ │ │ │ ├── DummyItsmTicketStatus.java │ │ │ │ ├── TestDummyItsmIntegration.java │ │ │ │ ├── TestManual.java │ │ │ │ ├── TestManualCapabilities.java │ │ │ │ ├── TestManualGrouping.java │ │ │ │ ├── TestSemiManual.java │ │ │ │ ├── TestSemiManualDisable.java │ │ │ │ ├── TestSemiManualDisableSlowProposed.java │ │ │ │ ├── TestSemiManualGrouping.java │ │ │ │ ├── TestSemiManualGroupingProposed.java │ │ │ │ └── TestSemiManualSlowProposed.java │ │ │ │ ├── mapping │ │ │ │ ├── AbstractMappingTest.java │ │ │ │ ├── TestMapping.java │ │ │ │ ├── TestMappingAdvanced.java │ │ │ │ ├── TestMappingAutoInbound.java │ │ │ │ ├── TestMappingChaining.java │ │ │ │ └── TestMappingInbound.java │ │ │ │ ├── mining │ │ │ │ └── TestRoleAnalysis.java │ │ │ │ ├── misc │ │ │ │ ├── AbstractMiscTest.java │ │ │ │ ├── TestMigration.java │ │ │ │ ├── TestMisc.java │ │ │ │ ├── TestQueries.java │ │ │ │ ├── TestTracing.java │ │ │ │ ├── TestUuidNonUniqueName.java │ │ │ │ └── ValueDisplayUtilTest.java │ │ │ │ ├── multi │ │ │ │ ├── TestMultiAccount.java │ │ │ │ ├── TestMultiConnectorResources.java │ │ │ │ └── TestMultiResource.java │ │ │ │ ├── negative │ │ │ │ ├── TestAssignmentErrors.java │ │ │ │ └── TestBrokenResources.java │ │ │ │ ├── orgstruct │ │ │ │ ├── AbstractOrgStructCaribbeanTest.java │ │ │ │ ├── TestOrgStruct.java │ │ │ │ ├── TestOrgStructCaribbeanArchetype.java │ │ │ │ ├── TestOrgStructCaribbeanDirect.java │ │ │ │ ├── TestOrgStructCaribbeanMeta.java │ │ │ │ └── TestOrgStructMeta.java │ │ │ │ ├── password │ │ │ │ ├── AbstractPasswordTest.java │ │ │ │ ├── TestPasswordDefault.java │ │ │ │ ├── TestPasswordDefaultHashing.java │ │ │ │ └── TestPasswordNone.java │ │ │ │ ├── persona │ │ │ │ ├── AbstractPersonaTest.java │ │ │ │ ├── TestPersona.java │ │ │ │ └── TestPersonaPassword.java │ │ │ │ ├── rbac │ │ │ │ ├── AbstractRbacTest.java │ │ │ │ ├── TestAssignmentValidity.java │ │ │ │ ├── TestAutoassign.java │ │ │ │ ├── TestGlobalPolicyActivation.java │ │ │ │ ├── TestMetaMeta.java │ │ │ │ ├── TestPolicyActions.java │ │ │ │ ├── TestPolicyRules.java │ │ │ │ ├── TestRbac.java │ │ │ │ ├── TestRbacLightInitialProjection.java │ │ │ │ ├── TestRbacNoInbounds.java │ │ │ │ └── TestSegregationOfDuties.java │ │ │ │ ├── scripting │ │ │ │ ├── AbstractBasicScriptingTest.java │ │ │ │ ├── TestScriptingBasicLegacy.java │ │ │ │ └── TestScriptingBasicNew.java │ │ │ │ ├── security │ │ │ │ ├── AbstractEmptySecurityTest.java │ │ │ │ ├── AbstractInitializedSecurityTest.java │ │ │ │ ├── TestSecurityAdvanced.java │ │ │ │ ├── TestSecurityBasic.java │ │ │ │ ├── TestSecurityGovernance.java │ │ │ │ ├── TestSecurityItemValues.java │ │ │ │ ├── TestSecurityMedium.java │ │ │ │ ├── TestSecurityMultitenant.java │ │ │ │ ├── TestSecurityPrincipal.java │ │ │ │ └── TestSecurityValueMetadata.java │ │ │ │ ├── simulation │ │ │ │ ├── AbstractBasicSimulationExecutionTest.java │ │ │ │ ├── AbstractSimulationsTest.java │ │ │ │ ├── TestDevelopmentSimulations.java │ │ │ │ ├── TestPreviewChangesCoD.java │ │ │ │ ├── TestPreviewSequences.java │ │ │ │ ├── TestProductionSimulations.java │ │ │ │ ├── TestRealExecution.java │ │ │ │ └── TestSimulationTasksAdvanced.java │ │ │ │ ├── smart │ │ │ │ ├── DummyAdSmartAssociationsScenario.java │ │ │ │ ├── DummyBasicScenario.java │ │ │ │ ├── DummyDirectoryScenario.java │ │ │ │ ├── DummyHrScenario.java │ │ │ │ ├── TestSmartAssociation.java │ │ │ │ ├── TestSmartIntegrationService.java │ │ │ │ ├── TestSmartIntegrationServiceStory.java │ │ │ │ └── conndev │ │ │ │ │ ├── ConnectorBootstrapOnlineStoryTest.java │ │ │ │ │ └── ConnectorBootstrapStoryTest.java │ │ │ │ ├── sync │ │ │ │ ├── AbstractInboundSyncTest.java │ │ │ │ ├── AbstractSynchronizationStoryTest.java │ │ │ │ ├── MiscSyncTest.java │ │ │ │ ├── SequenceChecker.java │ │ │ │ ├── TestImportRecon.java │ │ │ │ ├── TestImportReconAuthorizations.java │ │ │ │ ├── TestInboundLiveSyncTask.java │ │ │ │ ├── TestInboundReconTask.java │ │ │ │ ├── TestOpportunisticSynchronization.java │ │ │ │ ├── TestParallelDiscovery.java │ │ │ │ ├── TestParallelSynchronization.java │ │ │ │ ├── TestRecomputeTask.java │ │ │ │ ├── TestSyncStoryUsingLiveSync.java │ │ │ │ ├── TestSyncStoryUsingReconciliation.java │ │ │ │ ├── TestSyncStoryUsingReconciliationMultiNode.java │ │ │ │ ├── TestSyncStoryUsingReconciliationMultithreaded.java │ │ │ │ ├── TestSyncStoryUsingReconciliationPlain.java │ │ │ │ ├── TestSyncStoryUsingReconciliationWithSubtasks.java │ │ │ │ ├── TestUuid.java │ │ │ │ ├── TestValidityRecomputeTask.java │ │ │ │ ├── TestValidityRecomputeTaskPartitionedMultipleTasks.java │ │ │ │ └── TestValidityRecomputeTaskPartitionedSingleTask.java │ │ │ │ ├── tasks │ │ │ │ ├── AbstractResourceDummyInterruptedSync.java │ │ │ │ ├── DummyInterruptedSyncImpreciseResource.java │ │ │ │ ├── DummyInterruptedSyncResource.java │ │ │ │ ├── TestAutoScalingTask.java │ │ │ │ ├── TestCleanupTask.java │ │ │ │ ├── TestLiveSyncTask.java │ │ │ │ ├── TestLiveSyncTaskMultithreaded.java │ │ │ │ ├── TestMiscTasks.java │ │ │ │ ├── TestNoOpTask.java │ │ │ │ ├── TestProgressReporting.java │ │ │ │ ├── TestReconTask.java │ │ │ │ ├── TestReconTaskMultiNode.java │ │ │ │ ├── TestShadowReclassification.java │ │ │ │ ├── TestTaskActivityPolicies.java │ │ │ │ ├── TestTaskReporting.java │ │ │ │ ├── TestTasks.java │ │ │ │ ├── TestThresholds.java │ │ │ │ ├── TestThresholdsMultiNode.java │ │ │ │ ├── TestThresholdsSingleTask.java │ │ │ │ ├── TestThresholdsSingleTaskMultipleThreads.java │ │ │ │ ├── TestThresholdsSingleThread.java │ │ │ │ └── package-info.java │ │ │ │ └── util │ │ │ │ ├── CheckingProgressListener.java │ │ │ │ ├── DelayingProgressListener.java │ │ │ │ ├── MockMultipleTriggersHandler.java │ │ │ │ ├── MockTriggerHandler.java │ │ │ │ └── StaticHookRecorder.java │ │ │ └── resources │ │ │ ├── activation │ │ │ ├── resource-dummy-coral.xml │ │ │ ├── resource-dummy-fixed-existence.xml │ │ │ ├── resource-dummy-full-validity.xml │ │ │ ├── resource-dummy-khaki.xml │ │ │ └── resource-dummy-precreate.xml │ │ │ ├── archetypes │ │ │ ├── archetype-auxiliary-manager.xml │ │ │ ├── archetype-business-role.xml │ │ │ ├── archetype-contractor.xml │ │ │ ├── archetype-inherited-child.xml │ │ │ ├── archetype-inherited-parent.xml │ │ │ ├── archetype-liveSync-task.xml │ │ │ ├── archetype-recon-task.xml │ │ │ ├── archetype-resource-operation-task.xml │ │ │ ├── archetype-student.xml │ │ │ ├── archetype-task-basic.xml │ │ │ ├── archetype-test.xml │ │ │ ├── collection-active-employees.xml │ │ │ ├── collection-active-users.xml │ │ │ ├── resource-dummy-lab.xml │ │ │ ├── resource-dummy-source.xml │ │ │ ├── role-business-bosun.xml │ │ │ ├── role-business-captain.xml │ │ │ ├── role-employee-base.xml │ │ │ ├── role-inherited-archetypes.xml │ │ │ ├── role-lab-access.xml │ │ │ ├── role-user-administrator.xml │ │ │ ├── system-configuration-archetypes.xml │ │ │ ├── user-fraudster.xml │ │ │ ├── user-meathook.xml │ │ │ ├── user-self-made-man.xml │ │ │ ├── user-template-archetypes-global.xml │ │ │ ├── user-template-contractor.xml │ │ │ └── user-wannabe.xml │ │ │ ├── assignments │ │ │ ├── resource-dummy-legalizing.xml │ │ │ ├── role-idempotent.xml │ │ │ └── role-inducing-idempotent.xml │ │ │ ├── associations │ │ │ ├── archetype-ad-role.xml │ │ │ ├── archetype-ad3-role-A.xml │ │ │ ├── archetype-ad3-role-B.xml │ │ │ ├── archetype-app-role.xml │ │ │ ├── archetype-costCenter.xml │ │ │ ├── archetype-document-non-tolerant.xml │ │ │ ├── archetype-document.xml │ │ │ ├── archetype-generic-ad-role.xml │ │ │ ├── archetype-org-with-group-2.xml │ │ │ ├── archetype-org-with-group.xml │ │ │ ├── archetype-person.xml │ │ │ ├── raw-references │ │ │ │ ├── archetype-raw-group.xml │ │ │ │ ├── resource-dummy-raw-references.xml │ │ │ │ ├── shadow-all-users.xml │ │ │ │ ├── shadow-hackers.xml │ │ │ │ └── shadow-wheel.xml │ │ │ ├── removing-unclassified-memberships │ │ │ │ ├── archetype-rum-ad-role.xml │ │ │ │ ├── archetype-rum-admin-role.xml │ │ │ │ ├── archetype-rum-app-role.xml │ │ │ │ └── resource-dummy-removing-unclassified-memberships.xml │ │ │ ├── resource-dummy-ad-more-association-types.xml │ │ │ ├── resource-dummy-ad.xml │ │ │ ├── resource-dummy-ad3-mixed-groups.xml │ │ │ ├── resource-dummy-dms-non-tolerant.xml │ │ │ ├── resource-dummy-dms.xml │ │ │ ├── resource-dummy-hr.xml │ │ │ ├── role-inducing-group-template-2.xml │ │ │ ├── role-inducing-group-template.xml │ │ │ └── system-configuration.xml │ │ │ ├── async │ │ │ ├── grouper-amqp091 │ │ │ │ ├── change-100-banderson-add-supergroup.json │ │ │ │ ├── change-110-alumni-add.json │ │ │ │ ├── change-110a-staff-add.json │ │ │ │ ├── change-200-banderson-add-alumni.json │ │ │ │ ├── change-210-banderson-add-staff.json │ │ │ │ ├── change-220-jlewis685-add-alumni.json │ │ │ │ ├── change-230-jlewis685-add-supergroup.json │ │ │ │ ├── change-240-banderson-add-staff.json │ │ │ │ ├── change-250-banderson-delete-alumni.json │ │ │ │ ├── change-310-staff-delete.json │ │ │ │ ├── resource-grouper-amqp091.xml │ │ │ │ └── task-async-update.xml │ │ │ ├── notify-change │ │ │ │ ├── resource-grouper.xml │ │ │ │ ├── shadow-alumni.xml │ │ │ │ ├── shadow-banderson-with-groups.xml │ │ │ │ ├── shadow-banderson.xml │ │ │ │ ├── shadow-jlewis685.xml │ │ │ │ └── shadow-staff.xml │ │ │ ├── task │ │ │ │ ├── change-template-user-add.xml │ │ │ │ ├── resource-hr-amqp091.xml │ │ │ │ ├── system-configuration.xml │ │ │ │ ├── task-async-update-hr-no-workers.xml │ │ │ │ └── task-async-update-hr-one-worker.xml │ │ │ └── ucf │ │ │ │ ├── change-100-banderson-add.xml │ │ │ │ ├── change-110-alumni-add.xml │ │ │ │ ├── change-110a-staff-add.xml │ │ │ │ ├── change-120-kwhite-identifiers-only.xml │ │ │ │ ├── change-200-banderson-add-alumni-full-shadow.xml │ │ │ │ ├── change-210-banderson-add-staff.xml │ │ │ │ ├── change-220-jlewis685-add-alumni.xml │ │ │ │ ├── change-230-jlewis685-identifiers-only.xml │ │ │ │ ├── change-300-banderson-delete.xml │ │ │ │ ├── change-310-staff-delete.xml │ │ │ │ ├── resource-grouper-ucf-internal.xml │ │ │ │ └── task-async-update.xml │ │ │ ├── caching │ │ │ ├── archetype-person.xml │ │ │ ├── object-template-person.xml │ │ │ ├── resource-dummy-default-caching.xml │ │ │ ├── resource-dummy-hr.xml │ │ │ ├── resource-dummy-target.xml │ │ │ ├── system-configuration.xml │ │ │ ├── task-recompute-persons.xml │ │ │ ├── task-reconcile-hr-persons.xml │ │ │ └── task-reconcile-target-accounts.xml │ │ │ ├── caseignore │ │ │ ├── role-fool.xml │ │ │ ├── role-joker.xml │ │ │ ├── role-upcase-basic.xml │ │ │ └── role-x.xml │ │ │ ├── common │ │ │ ├── account-capsize-dummy-blue.xml │ │ │ ├── account-capsize-dummy-default.xml │ │ │ ├── account-capsize-dummy-red.xml │ │ │ ├── account-elaine-dummy-blue.xml │ │ │ ├── account-elaine-dummy-red.xml │ │ │ ├── account-elaine-dummy.xml │ │ │ ├── account-guybrush-dummy-red.xml │ │ │ ├── account-guybrush-dummy.xml │ │ │ ├── account-herman-dummy.xml │ │ │ ├── account-jack-dummy-black.xml │ │ │ ├── account-jack-dummy-red.xml │ │ │ ├── account-jack-dummy.xml │ │ │ ├── account-shadow-guybrush-dummy.xml │ │ │ ├── account-shadow-jack-dummy.xml │ │ │ ├── archetype-admin.xml │ │ │ ├── archetype-approval-case.xml │ │ │ ├── archetype-employee.xml │ │ │ ├── archetype-persona-role.xml │ │ │ ├── archetype-task-iterative-bulk-action.xml │ │ │ ├── archetype-task-reconciliation.xml │ │ │ ├── archetype-task-single-bulk-action.xml │ │ │ ├── connector-dbtable.json │ │ │ ├── connector-dbtable.xml │ │ │ ├── connector-dbtable.yaml │ │ │ ├── connector-dummy.xml │ │ │ ├── connector-ldap.xml │ │ │ ├── custom-library.xml │ │ │ ├── generic-object-my-config.xml │ │ │ ├── group-pirate-dummy.xml │ │ │ ├── group-shadow-dummy-upcase-joker.xml │ │ │ ├── group-testers-dummy.xml │ │ │ ├── lookup-languages.xml │ │ │ ├── metarole-recompute-members.xml │ │ │ ├── object-template-persona-admin.xml │ │ │ ├── org-monkey-island.xml │ │ │ ├── password-policy-benevolent.xml │ │ │ ├── password-policy-global.xml │ │ │ ├── resource-derby.xml │ │ │ ├── resource-dummy-black.xml │ │ │ ├── resource-dummy-blue-caching.xml │ │ │ ├── resource-dummy-blue.xml │ │ │ ├── resource-dummy-caching.xml │ │ │ ├── resource-dummy-cyan.xml │ │ │ ├── resource-dummy-emerald.xml │ │ │ ├── resource-dummy-fake.xml │ │ │ ├── resource-dummy-green-caching.xml │ │ │ ├── resource-dummy-green.xml │ │ │ ├── resource-dummy-orange.xml │ │ │ ├── resource-dummy-red.xml │ │ │ ├── resource-dummy-relative.xml │ │ │ ├── resource-dummy-schemaless-no-schema.xml │ │ │ ├── resource-dummy-upcase.xml │ │ │ ├── resource-dummy-white.xml │ │ │ ├── resource-dummy-yellow.xml │ │ │ ├── resource-dummy.json │ │ │ ├── resource-dummy.xml │ │ │ ├── resource-dummy.yaml │ │ │ ├── role-admins.xml │ │ │ ├── role-autocratic.xml │ │ │ ├── role-autodidactic.xml │ │ │ ├── role-autographic.xml │ │ │ ├── role-automatic.xml │ │ │ ├── role-autotesters.xml │ │ │ ├── role-buccaneer-green.xml │ │ │ ├── role-captain.xml │ │ │ ├── role-caribbean-pirate.xml │ │ │ ├── role-cyan-sailor.xml │ │ │ ├── role-drinker.xml │ │ │ ├── role-empty.xml │ │ │ ├── role-end-user.xml │ │ │ ├── role-judge.xml │ │ │ ├── role-nice-pirate.xml │ │ │ ├── role-persona-admin.xml │ │ │ ├── role-pirate-green.xml │ │ │ ├── role-pirate-relative.xml │ │ │ ├── role-pirate.xml │ │ │ ├── role-red-sailor.xml │ │ │ ├── role-sailor.xml │ │ │ ├── role-strong-sailor.xml │ │ │ ├── role-superuser.xml │ │ │ ├── role-thief.xml │ │ │ ├── role-useless.xml │ │ │ ├── secrets-provider.properties │ │ │ ├── security-policy-benevolent.xml │ │ │ ├── security-policy.xml │ │ │ ├── service-ship-sea-monkey.xml │ │ │ ├── system-configuration-empty.xml │ │ │ ├── system-configuration-enabled-accesses-metadata.xml │ │ │ ├── system-configuration-with-template.xml │ │ │ ├── system-configuration.xml │ │ │ ├── task-mock-jack.xml │ │ │ ├── task-partitioned-validity-scanner-multiple-tasks.xml │ │ │ ├── task-partitioned-validity-scanner-single-task.xml │ │ │ ├── task-reconcile-dummy.xml │ │ │ ├── task-trigger-scanner-on-demand.xml │ │ │ ├── task-trigger-scanner.xml │ │ │ ├── task-validity-scanner.xml │ │ │ ├── user-administrator.xml │ │ │ ├── user-barbossa.xml │ │ │ ├── user-capsize.xml │ │ │ ├── user-drake.xml │ │ │ ├── user-elaine.xml │ │ │ ├── user-guybrush.xml │ │ │ ├── user-herman.json │ │ │ ├── user-herman.xml │ │ │ ├── user-herman.yaml │ │ │ ├── user-jack.xml │ │ │ ├── user-largo.xml │ │ │ ├── user-nooid.xml │ │ │ ├── user-rapp.xml │ │ │ ├── user-rebeka-enduser.xml │ │ │ ├── user-template-carthesian.xml │ │ │ ├── user-template-complex-include.xml │ │ │ ├── user-template-complex.xml │ │ │ ├── user-template-inbounds.xml │ │ │ ├── user-template-org-assignment.xml │ │ │ ├── user-template-schema-constraints.xml │ │ │ ├── user-template.xml │ │ │ ├── user-three-headed-monkey.xml │ │ │ └── user-will.xml │ │ │ ├── complex-attributes │ │ │ ├── archetype-person.xml │ │ │ └── resource-dummy-address-book.xml │ │ │ ├── consistency-simple │ │ │ ├── archetype-person.xml │ │ │ ├── resource-mapping-strengths.xml │ │ │ ├── resource-source.xml │ │ │ ├── resource-target-1.xml │ │ │ ├── resource-target-2.xml │ │ │ └── user-jim.xml │ │ │ ├── contract │ │ │ ├── account-blackbeard-dummy.xml │ │ │ ├── user-blackbeard-account-dummy.xml │ │ │ └── user-morgan-assignment-dummy.xml │ │ │ ├── crud │ │ │ ├── account-jack-dummy-maroon-no-delete.xml │ │ │ ├── resource-dummy-maroon-no-delete.xml │ │ │ └── resource-dummy-maroon.xml │ │ │ ├── ctx-model-intest-test-main.xml │ │ │ ├── custom-relations │ │ │ ├── system-configuration.xml │ │ │ ├── user-abraham.xml │ │ │ └── user-isaac.xml │ │ │ ├── discovery │ │ │ ├── metarole.xml │ │ │ ├── resource-9899.xml │ │ │ ├── role-a.xml │ │ │ └── role-b.xml │ │ │ ├── entitlements │ │ │ ├── account-guybrush-dead.xml │ │ │ ├── group-chess-dead.xml │ │ │ ├── group-landlubers.xml │ │ │ ├── group-mapmakers-dead.xml │ │ │ ├── group-swashbucklers-blue.xml │ │ │ ├── group-swashbucklers.xml │ │ │ ├── metarole-art.xml │ │ │ ├── metarole-sport.xml │ │ │ ├── resource-dummy-wild-associations.xml │ │ │ ├── role-basketball-and-music-search-in-repository.xml │ │ │ ├── role-basketball-and-music-search-on-resource.xml │ │ │ ├── role-basketball.xml │ │ │ ├── role-brute.xml │ │ │ ├── role-chess.xml │ │ │ ├── role-crew-of-guybrush.xml │ │ │ ├── role-landluber.xml │ │ │ ├── role-mapmaker-landluber.xml │ │ │ ├── role-mapmaker.xml │ │ │ ├── role-music.xml │ │ │ ├── role-org-grouping-repo.xml │ │ │ ├── role-org-grouping.xml │ │ │ ├── role-swashbuckler-blue.xml │ │ │ ├── role-swashbuckler.xml │ │ │ ├── role-thug.xml │ │ │ └── role-wimp.xml │ │ │ ├── file-secret-provider │ │ │ └── file-secret │ │ │ ├── functions │ │ │ └── function-library-testlib.xml │ │ │ ├── gensync │ │ │ ├── account-crew.xml │ │ │ ├── account-jdoe.xml │ │ │ ├── lookup-languages-replacement.xml │ │ │ ├── lookup-role-type.xml │ │ │ ├── object-template-role.xml │ │ │ ├── resource-dummy-purple.xml │ │ │ ├── role-meta-dummygroup.xml │ │ │ ├── role-prisoner.xml │ │ │ ├── role-swashbuckler.xml │ │ │ ├── role-test-mate.xml │ │ │ ├── system-configuration.xml │ │ │ ├── user-jdoe.xml │ │ │ └── user-otis.xml │ │ │ ├── identities │ │ │ ├── archetype-person.xml │ │ │ ├── object-template-person.xml │ │ │ ├── resource-multi.xml │ │ │ ├── resource-single.xml │ │ │ ├── user-alice-green.xml │ │ │ └── user-john-smith.xml │ │ │ ├── importer │ │ │ ├── import-bad.json │ │ │ ├── import-bad.xml │ │ │ ├── import-bad.yaml │ │ │ ├── import-ref.json │ │ │ ├── import-ref.xml │ │ │ ├── import-ref.yaml │ │ │ ├── import-task.json │ │ │ ├── import-task.xml │ │ │ ├── import-task.yaml │ │ │ ├── import-users-overwrite.json │ │ │ ├── import-users-overwrite.xml │ │ │ ├── import-users-overwrite.yaml │ │ │ ├── import-users.json │ │ │ ├── import-users.xml │ │ │ ├── import-users.yaml │ │ │ ├── resource-derby.json │ │ │ ├── resource-derby.xml │ │ │ ├── resource-derby.yaml │ │ │ ├── resource-dummy-changed.json │ │ │ ├── resource-dummy-changed.xml │ │ │ ├── resource-dummy-changed.yaml │ │ │ ├── resource-dummy-runtime-resolution.json │ │ │ ├── resource-dummy-runtime-resolution.xml │ │ │ ├── resource-dummy-runtime-resolution.yaml │ │ │ ├── role-one-legacy.json │ │ │ ├── role-one-legacy.xml │ │ │ ├── role-one-legacy.yaml │ │ │ ├── user-constrained-wrong.json │ │ │ ├── user-constrained-wrong.xml │ │ │ └── user-constrained-wrong.yaml │ │ │ ├── inbounds │ │ │ ├── resource-dummy-bidirectional.xml │ │ │ └── resource-dummy-inbounds.xml │ │ │ ├── indexing │ │ │ ├── archetype-person.xml │ │ │ ├── template-person.xml │ │ │ └── user-mary.xml │ │ │ ├── intents │ │ │ └── resource-dummy-intents.xml │ │ │ ├── iteration │ │ │ ├── account-alfred.xml │ │ │ ├── metarole-dummy-associations.xml │ │ │ ├── resource-dummy-associate.xml │ │ │ ├── resource-dummy-associations.xml │ │ │ ├── resource-dummy-dark-violet.xml │ │ │ ├── resource-dummy-fuchsia.xml │ │ │ ├── resource-dummy-magenta.xml │ │ │ ├── resource-dummy-pink.xml │ │ │ ├── resource-dummy-violet.xml │ │ │ ├── role-cs-101.xml │ │ │ ├── task-dumy-dark-violet-livesync.xml │ │ │ ├── user-alfred.xml │ │ │ ├── user-jupiter.xml │ │ │ ├── user-template-iteration-associate.xml │ │ │ ├── user-template-iteration-but-constant-name.xml │ │ │ ├── user-template-iteration-random.xml │ │ │ ├── user-template-iteration-unique-email.xml │ │ │ ├── user-template-iteration.xml │ │ │ └── user-template-simple-iteration.xml │ │ │ ├── lifecycle-basic │ │ │ ├── archetype-active.xml │ │ │ ├── archetype-assigned-in-draft.xml │ │ │ ├── archetype-draft.xml │ │ │ ├── resource-archetype-active.xml │ │ │ ├── resource-archetype-assigned-in-draft.xml │ │ │ ├── resource-archetype-draft.xml │ │ │ ├── resource-direct-active.xml │ │ │ ├── resource-direct-assigned-in-draft.xml │ │ │ ├── resource-direct-draft.xml │ │ │ ├── resource-role-active.xml │ │ │ ├── resource-role-assigned-in-draft.xml │ │ │ ├── resource-role-draft.xml │ │ │ ├── resource-template.xml │ │ │ ├── role-active.xml │ │ │ ├── role-assigned-in-draft.xml │ │ │ ├── role-draft.xml │ │ │ ├── system-configuration.xml │ │ │ └── template-user.xml │ │ │ ├── lifecycle │ │ │ ├── resource-dummy-10813.xml │ │ │ ├── role-a.xml │ │ │ ├── role-b.xml │ │ │ ├── role-caretaker.xml │ │ │ ├── role-croupier.xml │ │ │ ├── role-gambler.xml │ │ │ ├── role-headmaster.xml │ │ │ ├── role-pit-boss.xml │ │ │ └── system-configuration-lifecycle.xml │ │ │ ├── linked │ │ │ ├── gummi │ │ │ │ ├── archetype-device.xml │ │ │ │ ├── archetype-dummy.xml │ │ │ │ ├── archetype-gummi-user.xml │ │ │ │ ├── archetype-magic-token.xml │ │ │ │ ├── service-axe.xml │ │ │ │ ├── service-medallion.xml │ │ │ │ ├── service-sword.xml │ │ │ │ ├── service-whistle.xml │ │ │ │ ├── user-cavin.xml │ │ │ │ ├── user-cubby.xml │ │ │ │ ├── user-grammi.xml │ │ │ │ ├── user-gruffy.xml │ │ │ │ └── user-zummi.xml │ │ │ ├── hw-tokens │ │ │ │ ├── archetype-hw-token.xml │ │ │ │ ├── resource-hw-tokens.xml │ │ │ │ ├── token-blue.xml │ │ │ │ ├── token-green.xml │ │ │ │ ├── token-red.xml │ │ │ │ ├── user-niels.xml │ │ │ │ ├── user-paul.xml │ │ │ │ └── user-werner.xml │ │ │ ├── orgs │ │ │ │ ├── archetype-deletion-safe-org-async.xml │ │ │ │ └── archetype-deletion-safe-org.xml │ │ │ ├── projects │ │ │ │ ├── archetype-project-groups.xml │ │ │ │ ├── archetype-project-users.xml │ │ │ │ └── archetype-project.xml │ │ │ └── system-configuration.xml │ │ │ ├── logback-test.xml │ │ │ ├── manual │ │ │ ├── resource-dummy-itsm.xml │ │ │ ├── resource-manual-capabilities.xml │ │ │ ├── resource-manual-grouping.xml │ │ │ ├── resource-manual.xml │ │ │ ├── resource-semi-manual-disable-slow-proposed.xml │ │ │ ├── resource-semi-manual-disable.xml │ │ │ ├── resource-semi-manual-grouping-proposed.xml │ │ │ ├── resource-semi-manual-grouping.xml │ │ │ ├── resource-semi-manual-slow-proposed.xml │ │ │ ├── resource-semi-manual.xml │ │ │ ├── role-one-manual-grouping.xml │ │ │ ├── role-one-manual.xml │ │ │ ├── role-one-semi-manual-disable-slow-proposed.xml │ │ │ ├── role-one-semi-manual-disable.xml │ │ │ ├── role-one-semi-manual-grouping.xml │ │ │ ├── role-one-semi-manual-slow-proposed.xml │ │ │ ├── role-one-semi-manual.xml │ │ │ ├── role-two-manual-grouping.xml │ │ │ ├── role-two-manual.xml │ │ │ ├── role-two-semi-manual-disable-slow-proposed.xml │ │ │ ├── role-two-semi-manual-disable.xml │ │ │ ├── role-two-semi-manual-grouping.xml │ │ │ ├── role-two-semi-manual-slow-proposed.xml │ │ │ ├── role-two-semi-manual.xml │ │ │ ├── semi-manual.csv │ │ │ ├── task-propagation-manual-grouping.xml │ │ │ ├── task-propagation-multi.xml │ │ │ ├── task-shadow-refresh.xml │ │ │ ├── user-phantom.xml │ │ │ ├── user-phoenix-2.xml │ │ │ └── user-phoenix.xml │ │ │ ├── mapping │ │ │ ├── advanced │ │ │ │ ├── assignment-frederic-alpha.xml │ │ │ │ ├── assignment-johann-alpha.xml │ │ │ │ ├── resource-dummy-alpha.xml │ │ │ │ ├── resource-dummy-ranges-direct.xml │ │ │ │ ├── resource-dummy-ranges-role.xml │ │ │ │ ├── role-ranges.xml │ │ │ │ ├── system-configuration.xml │ │ │ │ ├── user-franz.xml │ │ │ │ ├── user-frederic.xml │ │ │ │ ├── user-johann.xml │ │ │ │ ├── user-magnus.xml │ │ │ │ ├── user-template-incrementing.xml │ │ │ │ └── user-vladimir.xml │ │ │ ├── archetype-pirate.xml │ │ │ ├── chaining │ │ │ │ ├── role-master.xml │ │ │ │ ├── system-configuration.xml │ │ │ │ ├── user-legall.xml │ │ │ │ └── user-template.xml │ │ │ ├── custom-library.xml │ │ │ ├── predefined │ │ │ │ ├── resource-dummy-legacy.xml │ │ │ │ ├── resource-dummy-predefine-all.xml │ │ │ │ ├── resource-dummy-predefine-delayed-delete.xml │ │ │ │ ├── resource-dummy-predefine-disable-instead-delete.xml │ │ │ │ ├── resource-dummy-predefine-pre-provision.xml │ │ │ │ ├── role-predefine-all.xml │ │ │ │ ├── role-predefine-delayed-delete.xml │ │ │ │ ├── role-predefine-disable-instead-delete.xml │ │ │ │ ├── role-predefine-pre-provision.xml │ │ │ │ └── user-sheldon.xml │ │ │ ├── resource-dummy-autogreen.xml │ │ │ ├── resource-dummy-cobalt.xml │ │ │ ├── resource-dummy-crimson.xml │ │ │ ├── resource-dummy-custom-function-crimson.xml │ │ │ ├── resource-dummy-light-crimson.xml │ │ │ ├── resource-dummy-mega-outbound.xml │ │ │ ├── resource-dummy-services-inbound-pwd-copy.xml │ │ │ ├── resource-dummy-services-inbound-pwd-generate.xml │ │ │ ├── resource-dummy-services-outbound.xml │ │ │ ├── resource-dummy-tea-green.xml │ │ │ ├── resource-dummy-timed.xml │ │ │ ├── resource-target-photos.xml │ │ │ ├── role-antinihilist.xml │ │ │ ├── role-blue-poetry.xml │ │ │ ├── role-blue-titanic.xml │ │ │ ├── role-cobalt-neverland.xml │ │ │ ├── role-disabled-mapping.xml │ │ │ ├── role-simple.xml │ │ │ ├── role-timed.xml │ │ │ ├── role-wheel.xml │ │ │ ├── service-router.xml │ │ │ ├── task-dummy-services-pwd-copy-import.xml │ │ │ ├── task-dummy-services-pwd-generate-import.xml │ │ │ ├── task-dummy-tea-green-livesync.xml │ │ │ └── task-import-target-photos.xml │ │ │ ├── member-recompute │ │ │ ├── archetype-club.xml │ │ │ ├── archetype-department.xml │ │ │ ├── org-cc.xml │ │ │ ├── org-dcs.xml │ │ │ ├── org-it-staff.xml │ │ │ ├── resource-clubs.xml │ │ │ ├── system-configuration.xml │ │ │ ├── task-reconcile-clubs.xml │ │ │ ├── task-template-recompute-members.xml │ │ │ ├── template-user.xml │ │ │ ├── user-alice.xml │ │ │ ├── user-bob.xml │ │ │ └── user-chuck.xml │ │ │ ├── metadata │ │ │ ├── basic │ │ │ │ ├── archetype-guest.xml │ │ │ │ ├── resource-dummy-furious-refactoring-400.xml │ │ │ │ ├── resource-dummy-furious-refactoring-410.xml │ │ │ │ ├── resource-dummy-furious-refactoring-420.xml │ │ │ │ ├── resource-dummy-furious-refactoring-430.xml │ │ │ │ ├── resource-dummy-furious-refactoring-440.xml │ │ │ │ ├── resource-dummy-furious-refactoring-450.xml │ │ │ │ ├── resource-dummy-hr-310.xml │ │ │ │ ├── resource-dummy-hr-320.xml │ │ │ │ ├── resource-dummy-hr.xml │ │ │ │ ├── resource-dummy-multi-inbound-220.xml │ │ │ │ ├── resource-dummy-multi-inbound.xml │ │ │ │ ├── resource-dummy-provenance.xml │ │ │ │ ├── role-guest-via-template.xml │ │ │ │ ├── system-configuration.xml │ │ │ │ └── template-guest.xml │ │ │ ├── creation-metadata-recording │ │ │ │ ├── archetype-creation-metadata-recording.xml │ │ │ │ ├── template-creation-metadata-recording.xml │ │ │ │ └── user-paul.xml │ │ │ ├── level-of-assurance │ │ │ │ ├── template-loa-user.xml │ │ │ │ ├── user-bob.xml │ │ │ │ └── user-chuck.xml │ │ │ ├── provenance-metadata-recording │ │ │ │ ├── archetype-provenance-metadata-recording.xml │ │ │ │ ├── origin-admin-entry.xml │ │ │ │ ├── origin-crm-feed.xml │ │ │ │ ├── origin-hr-feed.xml │ │ │ │ ├── origin-self-service-app.xml │ │ │ │ ├── resource-crm.xml │ │ │ │ ├── resource-hr.xml │ │ │ │ ├── task-crm-import.xml │ │ │ │ ├── task-hr-import.xml │ │ │ │ ├── task-hr-reconciliation.xml │ │ │ │ ├── template-provenance-metadata-recording.xml │ │ │ │ └── user-leonhard.xml │ │ │ ├── sensitivity-propagation │ │ │ │ ├── archetype-user-sensitivity-propagation.xml │ │ │ │ ├── org-employees.xml │ │ │ │ ├── org-special-medical-services.xml │ │ │ │ ├── template-user-sensitivity-propagation.xml │ │ │ │ └── user-jim.xml │ │ │ ├── system-configuration.xml │ │ │ └── user-alice.xml │ │ │ ├── mining │ │ │ ├── import │ │ │ │ ├── archetypes.xml │ │ │ │ ├── orgs.xml │ │ │ │ ├── roles.xml │ │ │ │ └── users.xml │ │ │ ├── session │ │ │ │ ├── session-outlier-full-1.xml │ │ │ │ ├── session-outlier-part-1.xml │ │ │ │ ├── session-role-mining-1.xml │ │ │ │ ├── session-role-mining-direct-1.xml │ │ │ │ └── session-role-mining-role-mode-1.xml │ │ │ └── task │ │ │ │ ├── task-role-analysis-process-session-1.xml │ │ │ │ ├── task-role-analysis-process-session-direct-1.xml │ │ │ │ ├── task-role-analysis-process-session-outlier-full-1.xml │ │ │ │ ├── task-role-analysis-process-session-outlier-part-1.xml │ │ │ │ └── task-role-analysis-process-session-role-mode-1.xml │ │ │ ├── misc │ │ │ ├── archetype-node-group-gui.xml │ │ │ ├── resource-dummy-perf.xml │ │ │ ├── resource-dummy-queries.xml │ │ │ ├── resource-dummy-scripty.xml │ │ │ ├── resource-dummy-uuid-nonunique-name.xml │ │ │ ├── role-import-filters.xml │ │ │ ├── role-ship.xml │ │ │ ├── shadow-dummy-lost1.xml │ │ │ ├── task-shadow-refresh-explicit-dummy.xml │ │ │ ├── task-shadow-refresh.xml │ │ │ └── user-skellington.xml │ │ │ ├── multi-account │ │ │ ├── resource-dummy-clever-hr.xml │ │ │ ├── resource-dummy-multi-green.xml │ │ │ ├── resource-dummy-multi-outbound-simple.xml │ │ │ └── resource-dummy-multi-outbound.xml │ │ │ ├── multi-connector │ │ │ ├── resource-dummy-expressions.xml │ │ │ └── resource-dummy-opaline.xml │ │ │ ├── multi-resource │ │ │ ├── resource-dummy-beige.xml │ │ │ ├── resource-dummy-dark-peru.xml │ │ │ ├── resource-dummy-dark-yellow.xml │ │ │ ├── resource-dummy-david.xml │ │ │ ├── resource-dummy-goliath.xml │ │ │ ├── resource-dummy-ivory.xml │ │ │ ├── resource-dummy-lavender.xml │ │ │ ├── resource-dummy-peru.xml │ │ │ ├── resource-nested.xml │ │ │ ├── role-dark-yellow-peru.xml │ │ │ ├── role-dummies-beige.xml │ │ │ ├── role-dummies-ivory.xml │ │ │ ├── role-dummies.xml │ │ │ └── role-fight.xml │ │ │ ├── negative │ │ │ ├── account-shadow-jack-csvfile.xml │ │ │ ├── account-shadow-murray-csvfile.xml │ │ │ ├── broken.csv │ │ │ ├── connector-dummy-nojars.xml │ │ │ ├── resource-csvfile-broken.xml │ │ │ ├── resource-csvfile-notfound.xml │ │ │ ├── resource-dummy-broken-violet.xml │ │ │ ├── resource-dummy-ebony.xml │ │ │ ├── resource-dummy-no-configuration.xml │ │ │ ├── resource-dummy-nojars.xml │ │ │ ├── resource-dummy-unaccessible.xml │ │ │ └── resource-dummy-wrong-connector-oid.xml │ │ │ ├── notifications │ │ │ ├── archetype-dummy.xml │ │ │ ├── resource-hr.xml │ │ │ ├── resource-webmail.xml │ │ │ ├── role-dummy.xml │ │ │ ├── role-webmail.xml │ │ │ ├── security-policy-hash-password.xml │ │ │ ├── system-configuration.xml │ │ │ └── task-hr-import.xml │ │ │ ├── object-marks │ │ │ ├── mark-has-unmanaged-projection.xml │ │ │ └── resource-shadow-marks.xml │ │ │ ├── object-template-ranges │ │ │ ├── org-monkey-island-local.xml │ │ │ ├── role-bloody-nose.xml │ │ │ ├── user-template-mid-5953.xml │ │ │ └── user-template-ranges.xml │ │ │ ├── object-template │ │ │ ├── role-rastaman.xml │ │ │ ├── user-template-marooned.xml │ │ │ ├── user-template-mid-5892.xml │ │ │ ├── user-template-mid-6045.xml │ │ │ └── user-template-useless.xml │ │ │ ├── orgstruct │ │ │ ├── archetype-piracy-org.xml │ │ │ ├── archetype-piracy-root.xml │ │ │ ├── object-template-org.xml │ │ │ ├── org-caribbean-archetype.xml │ │ │ ├── org-caribbean-direct.xml │ │ │ ├── org-caribbean-meta.xml │ │ │ ├── org-fictional.xml │ │ │ ├── org-temp.xml │ │ │ ├── resource-dummy-orgtarget.xml │ │ │ ├── role-defender.xml │ │ │ ├── role-end-pirate.xml │ │ │ ├── role-meta-defender-admin.xml │ │ │ ├── role-meta-defender.xml │ │ │ ├── role-meta-functional-org.xml │ │ │ ├── role-meta-piracy-org.xml │ │ │ ├── role-offender-admin.xml │ │ │ ├── role-offender.xml │ │ │ ├── role-organized.xml │ │ │ ├── user-gibbs.xml │ │ │ └── user-pintel.xml │ │ │ ├── password │ │ │ ├── password-policy-deprecated.xml │ │ │ ├── password-policy-maverick.xml │ │ │ ├── password-policy-ugly.xml │ │ │ ├── resource-dummy-maverick.xml │ │ │ ├── resource-dummy-purpose.xml │ │ │ ├── resource-dummy-souvenir.xml │ │ │ ├── resource-dummy-ugly.xml │ │ │ ├── security-policy-default-storage-hashing.xml │ │ │ ├── security-policy-governor.xml │ │ │ ├── security-policy-maverick.xml │ │ │ ├── security-policy-password-storage-none.xml │ │ │ ├── security-policy-ugly.xml │ │ │ └── task-change-jack-account-password.xml │ │ │ ├── persona │ │ │ ├── object-template-persona-admin-no-password.xml │ │ │ ├── password-policy-persona.xml │ │ │ └── security-policy-persona.xml │ │ │ ├── preview │ │ │ ├── account-rogers-dummy-default.xml │ │ │ ├── account-rogers-dummy-lemon.xml │ │ │ ├── resource-dummy-bidirectional.xml │ │ │ ├── resource-dummy-lemon.xml │ │ │ ├── resource-dummy-misc.xml │ │ │ ├── resource-simple.xml │ │ │ ├── role-simple.xml │ │ │ ├── security-policy.xml │ │ │ ├── user-joe.xml │ │ │ ├── user-rogers.xml │ │ │ └── value-policy-password.xml │ │ │ ├── profile-semi-safe │ │ │ ├── function-library-support.xml │ │ │ ├── resource-scripted-target.xml │ │ │ ├── role-application-malicious-outbound.xml │ │ │ ├── role-auto-malicious.xml │ │ │ ├── role-auto-nice.xml │ │ │ ├── role-business-malicious-inducement-condition.xml │ │ │ ├── role-business-ref-filter-good.xml │ │ │ ├── role-business-ref-filter-malicious.xml │ │ │ ├── role-function-malicious.xml │ │ │ ├── role-function-reverse.xml │ │ │ ├── role-harmless.xml │ │ │ ├── role-malicious-condition-filter.xml │ │ │ ├── role-malicious-condition.xml │ │ │ ├── system-configuration.xml │ │ │ ├── user-alice.xml │ │ │ ├── user-bob.xml │ │ │ ├── user-carol.xml │ │ │ ├── user-dave.xml │ │ │ └── user-mallory.xml │ │ │ ├── profiles │ │ │ ├── archetype-forbidden-generate-value-action-alt-role.xml │ │ │ ├── archetype-forbidden-generate-value-action-role.xml │ │ │ ├── archetype-little-trusted-role.xml │ │ │ ├── archetype-little-trusted-variant-role.xml │ │ │ ├── archetype-little-trusted-variant-two-role.xml │ │ │ ├── archetype-no-privilege-elevation.xml │ │ │ ├── archetype-restricted-role.xml │ │ │ ├── archetype-safe-role.xml │ │ │ ├── archetype-trusted-role.xml │ │ │ ├── function-library-one.xml │ │ │ ├── function-library-two.xml │ │ │ ├── metarole-dummy.xml │ │ │ ├── resource-simple-target.xml │ │ │ ├── role-no-elevation-assignment-target-search-filter.xml │ │ │ ├── role-restricted-auto-bad-mapping-condition.xml │ │ │ ├── role-restricted-auto-bad-mapping-expression.xml │ │ │ ├── role-restricted-auto-filter-expression.xml │ │ │ ├── role-restricted-auto-good.xml │ │ │ ├── role-restricted-bad-assignment-condition.xml │ │ │ ├── role-restricted-bad-assignment-target-filter.xml │ │ │ ├── role-restricted-bad-construction-mapping.xml │ │ │ ├── role-restricted-bad-focus-mapping.xml │ │ │ ├── role-restricted-bad-inducement-condition.xml │ │ │ ├── role-restricted-bad-inducement-target-filter.xml │ │ │ ├── role-restricted-bad-role-condition.xml │ │ │ ├── role-restricted-good.xml │ │ │ ├── role-safe-auto-bad-groovy-in-filter.xml │ │ │ ├── role-safe-auto-bad-groovy.xml │ │ │ ├── role-safe-auto-good-path.xml │ │ │ ├── role-safe-auto-good.xml │ │ │ ├── role-safe-bad-groovy.xml │ │ │ ├── role-safe-good.xml │ │ │ ├── role-scripting.xml │ │ │ ├── role-unrestricted.xml │ │ │ ├── scripting-execute-script.xml │ │ │ ├── scripting-execute-simpleTrustedFunction.xml │ │ │ ├── scripting-expression-execute-script.xml │ │ │ ├── scripting-generate-value.xml │ │ │ ├── scripting-notification-custom-handler.xml │ │ │ ├── scripting-script-in-query.xml │ │ │ ├── scripting-script-in-unassign-filter.xml │ │ │ ├── system-configuration.xml │ │ │ ├── user-joe.xml │ │ │ └── value-policy-test.xml │ │ │ ├── rbac │ │ │ ├── archetype-service.xml │ │ │ ├── autoassign │ │ │ │ ├── role-unit-rider.xml │ │ │ │ ├── role-unit-sleeper.xml │ │ │ │ ├── role-unit-walker.xml │ │ │ │ └── role-unit-worker.xml │ │ │ ├── global-policy-assignment-relation.xml │ │ │ ├── global-policy-rule-activation.xml │ │ │ ├── global-policy-rule-run-privileged-action.xml │ │ │ ├── global-policy-rules-assignment-deletion.xml │ │ │ ├── metameta │ │ │ │ ├── role-meta-greek-group.xml │ │ │ │ ├── role-meta-latin-group.xml │ │ │ │ ├── role-meta-legacy-one.xml │ │ │ │ ├── role-meta-meta-legacy.xml │ │ │ │ └── role-meta-meta-world.xml │ │ │ ├── org-project-reclaim-black-pearl.xml │ │ │ ├── policy-rules │ │ │ │ ├── 029-archetype-application.xml │ │ │ │ ├── 250-unclassified.xml │ │ │ │ ├── 333-classification-information-security-responsibility.xml │ │ │ │ ├── 360-classification-tlp-red.xml │ │ │ │ ├── app-portfolio-management.xml │ │ │ │ ├── app-project-management.xml │ │ │ │ ├── policy-skipper-license.xml │ │ │ │ ├── role-brig-guard.xml │ │ │ │ ├── role-friendly-introvert.xml │ │ │ │ ├── role-naval-academy-graduate.xml │ │ │ │ ├── role-navy-captain.xml │ │ │ │ └── role-skipper.xml │ │ │ ├── resource-dummy-focus-exists.xml │ │ │ ├── role-adding-recompute-trigger.xml │ │ │ ├── role-adriatic-pirate.xml │ │ │ ├── role-all-loot.xml │ │ │ ├── role-all-treasure.xml │ │ │ ├── role-all-you-can-get.xml │ │ │ ├── role-black-sea-pirate.xml │ │ │ ├── role-bloody-fool.xml │ │ │ ├── role-cannibal.xml │ │ │ ├── role-cleric.xml │ │ │ ├── role-createable.xml │ │ │ ├── role-detecting-modifications.xml │ │ │ ├── role-governor.xml │ │ │ ├── role-honorability.xml │ │ │ ├── role-honorable-wannabe.xml │ │ │ ├── role-immutable-assign.xml │ │ │ ├── role-immutable-description-global.xml │ │ │ ├── role-immutable-global.xml │ │ │ ├── role-immutable-sea-global.xml │ │ │ ├── role-immutable.xml │ │ │ ├── role-indian-ocean-pirate.xml │ │ │ ├── role-loot-diamonds.xml │ │ │ ├── role-meta-fool.xml │ │ │ ├── role-meta-untouchable.xml │ │ │ ├── role-non-assignable.xml │ │ │ ├── role-non-createable.xml │ │ │ ├── role-non-unassignable.xml │ │ │ ├── role-project-omnimanager.xml │ │ │ ├── role-rich-sailor.xml │ │ │ ├── role-screaming.xml │ │ │ ├── role-strong-rich-sailor.xml │ │ │ ├── role-treasure-bronze.xml │ │ │ ├── role-treasure-gold.xml │ │ │ ├── role-treasure-silver.xml │ │ │ ├── role-undeletable-global.xml │ │ │ ├── role-undeletable.xml │ │ │ ├── role-wannabe.xml │ │ │ ├── role-weak-gossiper.xml │ │ │ ├── role-weak-singer.xml │ │ │ ├── sod │ │ │ │ ├── global-policy-rules-exclusion.xml │ │ │ │ ├── global-policy-rules-sod-approval.xml │ │ │ │ ├── metarole-exclusion-application.xml │ │ │ │ ├── org-executive-random.xml │ │ │ │ ├── role-application1.xml │ │ │ │ ├── role-application2.xml │ │ │ │ ├── role-business1.xml │ │ │ │ ├── role-business2.xml │ │ │ │ ├── role-citizen-sk.xml │ │ │ │ ├── role-citizen-us.xml │ │ │ │ ├── role-color-blue.xml │ │ │ │ ├── role-color-green.xml │ │ │ │ ├── role-color-none.xml │ │ │ │ ├── role-color-red.xml │ │ │ │ ├── role-controlling-1.xml │ │ │ │ ├── role-controlling-2.xml │ │ │ │ ├── role-coordinator.xml │ │ │ │ ├── role-criminal.xml │ │ │ │ ├── role-executive-1.xml │ │ │ │ ├── role-executive-2.xml │ │ │ │ ├── role-meta-color.xml │ │ │ │ ├── role-meta-controlling.xml │ │ │ │ ├── role-meta-executive.xml │ │ │ │ ├── role-minister.xml │ │ │ │ ├── role-prize-bronze-enforced.xml │ │ │ │ ├── role-prize-bronze.xml │ │ │ │ ├── role-prize-gold-by-mapping.xml │ │ │ │ ├── role-prize-gold-enforced.xml │ │ │ │ ├── role-prize-gold.xml │ │ │ │ ├── role-prize-silver-enforced.xml │ │ │ │ ├── role-prize-silver.xml │ │ │ │ ├── role-self-exclusion-manager-member.xml │ │ │ │ ├── role-self-exclusion.xml │ │ │ │ ├── role-worker-1.xml │ │ │ │ ├── role-worker-2.xml │ │ │ │ ├── user-martin.xml │ │ │ │ └── user-petr.xml │ │ │ └── user-failing-script.xml │ │ │ ├── reporting │ │ │ ├── metarole-slowing-down.xml │ │ │ ├── resource-hacked.xml │ │ │ ├── resource-source.xml │ │ │ ├── resource-target.xml │ │ │ ├── role-target.xml │ │ │ ├── system-configuration.xml │ │ │ ├── task-import-retry-by-fetching.xml │ │ │ ├── task-import-retry-by-filtering.xml │ │ │ ├── task-import.xml │ │ │ ├── task-recompute-roles-multinode.xml │ │ │ ├── task-recompute-roles.xml │ │ │ ├── task-reconcile-dummy-0t-nb-np.xml │ │ │ ├── task-reconcile-dummy-2t-nb-np.xml │ │ │ ├── task-reconcile-dummy-interrupted-partitioned-multinode.xml │ │ │ ├── task-reconcile-dummy-interrupted-partitioned.xml │ │ │ ├── task-reconciliation-hacked.xml │ │ │ ├── task-reconciliation-partitioned-multinode.xml │ │ │ ├── task-reconciliation.xml │ │ │ ├── task-with-errors-child-1.xml │ │ │ ├── task-with-errors-child-2.xml │ │ │ └── task-with-errors.xml │ │ │ ├── run-as │ │ │ ├── library-privileged.xml │ │ │ ├── role-regular-user.xml │ │ │ ├── role-with-method-standard.xml │ │ │ ├── role-with-service-mapping-privileged.xml │ │ │ ├── role-with-service-mapping-run-as-disabled.xml │ │ │ ├── role-with-service-mapping-run-as.xml │ │ │ ├── role-with-service-mapping-standard.xml │ │ │ ├── service-one.xml │ │ │ ├── task-recompute-privileged-user.xml │ │ │ ├── user-disabled.xml │ │ │ └── user-privileged.xml │ │ │ ├── schema │ │ │ ├── containers.xsd │ │ │ ├── enterprise.xsd │ │ │ ├── hr.xsd │ │ │ ├── linked.xsd │ │ │ ├── managers.xsd │ │ │ ├── metadata.axiom │ │ │ ├── metadata.xsd │ │ │ ├── piracy.xsd │ │ │ ├── preview-changes.xsd │ │ │ └── resource.xsd │ │ │ ├── scripthooks │ │ │ ├── generic-blackpearl.xml │ │ │ ├── org-top.xml │ │ │ ├── resource-dummy-hook.xml │ │ │ ├── system-configuration-hooks.xml │ │ │ └── system-configuration-primary-delta-hook.xml │ │ │ ├── scripting │ │ │ ├── assign-captain-and-dummy-red-to-jack-legacy.xml │ │ │ ├── assign-captain-and-dummy-red-to-jack.xml │ │ │ ├── assign-captain-by-name-to-jack.xml │ │ │ ├── assign-nice-pirate-by-name-to-jack-legacy.xml │ │ │ ├── assign-nice-pirate-by-name-to-jack.xml │ │ │ ├── assign-pirate-manager-to-will-legacy.xml │ │ │ ├── assign-pirate-manager-to-will.xml │ │ │ ├── assign-pirate-relation-captain-to-will-legacy.xml │ │ │ ├── assign-pirate-relation-captain-to-will.xml │ │ │ ├── assign-to-jack-dry-and-raw-legacy.xml │ │ │ ├── assign-to-jack-dry-and-raw.xml │ │ │ ├── delete-and-add-jack-legacy.xml │ │ │ ├── delete-and-add-jack.xml │ │ │ ├── disable-jack-legacy.xml │ │ │ ├── disable-jack.xml │ │ │ ├── echo-legacy.xml │ │ │ ├── echo.xml │ │ │ ├── enable-jack-legacy.xml │ │ │ ├── enable-jack.xml │ │ │ ├── execute-custom-delta.xml │ │ │ ├── function-library-test.xml │ │ │ ├── generate-passwords-2-legacy.xml │ │ │ ├── generate-passwords-2.xml │ │ │ ├── generate-passwords-3-legacy.xml │ │ │ ├── generate-passwords-3.xml │ │ │ ├── generate-passwords-legacy.xml │ │ │ ├── generate-passwords.xml │ │ │ ├── log-legacy.xml │ │ │ ├── log.xml │ │ │ ├── modify-brothers-legacy.xml │ │ │ ├── modify-brothers.xml │ │ │ ├── modify-jack-back-legacy.xml │ │ │ ├── modify-jack-back.xml │ │ │ ├── modify-jack-legacy.xml │ │ │ ├── modify-jack-password-legacy.xml │ │ │ ├── modify-jack-password-task-legacy.xml │ │ │ ├── modify-jack-password-task.xml │ │ │ ├── modify-jack-password.xml │ │ │ ├── modify-jack.xml │ │ │ ├── notification-about-jack-legacy.xml │ │ │ ├── notification-about-jack-type2-legacy.xml │ │ │ ├── notification-about-jack-type2.xml │ │ │ ├── notification-about-jack.xml │ │ │ ├── purge-dummy-black-schema-legacy.xml │ │ │ ├── purge-dummy-black-schema.xml │ │ │ ├── recompute-jack-legacy.xml │ │ │ ├── recompute-jack-new-trigger-direct.xml │ │ │ ├── recompute-jack-new-trigger-optimized.xml │ │ │ ├── recompute-jack.xml │ │ │ ├── resume-suspended-tasks-legacy.xml │ │ │ ├── resume-suspended-tasks.xml │ │ │ ├── scripting-users-in-background-assign-legacy.xml │ │ │ ├── scripting-users-in-background-assign.xml │ │ │ ├── scripting-users-in-background-iterative-task-legacy.xml │ │ │ ├── scripting-users-in-background-iterative-task.xml │ │ │ ├── scripting-users-in-background-legacy.xml │ │ │ ├── scripting-users-in-background-task.xml │ │ │ ├── scripting-users-in-background.xml │ │ │ ├── scripting-users-legacy.xml │ │ │ ├── scripting-users-via-expression-legacy.xml │ │ │ ├── scripting-users-via-expression-with-library-function.xml │ │ │ ├── scripting-users-via-expression.xml │ │ │ ├── scripting-users.xml │ │ │ ├── search-for-resources.xml │ │ │ ├── search-for-roles.xml │ │ │ ├── search-for-shadows-nofetch-legacy.xml │ │ │ ├── search-for-shadows-nofetch.xml │ │ │ ├── search-for-shadows.xml │ │ │ ├── search-for-users-accounts-nofetch.xml │ │ │ ├── search-for-users-accounts.xml │ │ │ ├── search-for-users-resolve-names-for-roleMembershipRef.xml │ │ │ ├── search-for-users-resolve-roleMembershipRef.xml │ │ │ ├── search-for-users-with-expressions.xml │ │ │ ├── search-for-users.xml │ │ │ ├── start-tasks-from-template-legacy.xml │ │ │ ├── start-tasks-from-template.xml │ │ │ ├── system-configuration.xml │ │ │ ├── task-custom-scripting.xml │ │ │ ├── task-delete-shadows-multinode.xml │ │ │ ├── task-to-keep-suspended.xml │ │ │ ├── task-to-resume.xml │ │ │ ├── test-dummy-resource-legacy.xml │ │ │ ├── test-dummy-resource.xml │ │ │ ├── unassign-all-from-jack.xml │ │ │ ├── unassign-captain-from-jack.xml │ │ │ ├── unassign-dummy-resource-from-will-legacy.xml │ │ │ ├── unassign-dummy-resource-from-will.xml │ │ │ ├── unassign-pirate-default-from-will-legacy.xml │ │ │ ├── unassign-pirate-default-from-will.xml │ │ │ ├── unassign-pirate-manager-and-owner-from-will-legacy.xml │ │ │ ├── unassign-pirate-manager-and-owner-from-will.xml │ │ │ ├── use-variables-legacy.xml │ │ │ └── use-variables.xml │ │ │ ├── security │ │ │ ├── access-certification-campaign-1.xml │ │ │ ├── access-certification-campaign-2.xml │ │ │ ├── access-certification-campaign-3.xml │ │ │ ├── access-certification-campaign-4.xml │ │ │ ├── archetype-application-role.xml │ │ │ ├── archetype-approval-case.xml │ │ │ ├── archetype-business-role.xml │ │ │ ├── case-1.xml │ │ │ ├── case-2.xml │ │ │ ├── case-3.xml │ │ │ ├── case-4.xml │ │ │ ├── governance │ │ │ │ ├── campaign-assignments-1.xml │ │ │ │ ├── case-request-1-role-1.xml │ │ │ │ ├── case-request-1-role-2.xml │ │ │ │ ├── case-request-1.xml │ │ │ │ ├── case-request-2-role-3.xml │ │ │ │ ├── case-request-2.xml │ │ │ │ ├── org-wheel.xml │ │ │ │ ├── role-1.xml │ │ │ │ ├── role-2.xml │ │ │ │ ├── role-3.xml │ │ │ │ ├── role-approver-common-parts.xml │ │ │ │ ├── role-approver-standard-legacy.xml │ │ │ │ ├── role-approver-standard-new.xml │ │ │ │ ├── role-approver-standard-with-candidates.xml │ │ │ │ ├── role-reviewer-common-parts.xml │ │ │ │ ├── role-reviewer-standard-legacy.xml │ │ │ │ ├── role-reviewer-standard-new.xml │ │ │ │ ├── role-super-approver-legacy.xml │ │ │ │ ├── user-1.xml │ │ │ │ ├── user-deputy1-1.xml │ │ │ │ ├── user-deputy1-2-1.xml │ │ │ │ ├── user-deputy1-2.xml │ │ │ │ ├── user-manager1.xml │ │ │ │ ├── user-manager2.xml │ │ │ │ ├── user-manager3.xml │ │ │ │ ├── user-manager4.xml │ │ │ │ └── user-wheel-member1.xml │ │ │ ├── multitenant │ │ │ │ ├── org-arrakis.xml │ │ │ │ ├── org-atreides-subtenant.xml │ │ │ │ ├── org-castle-caladan.xml │ │ │ │ ├── org-giedi-prime.xml │ │ │ │ ├── org-guild-subtenant.xml │ │ │ │ ├── org-harkonnen-subtenant.xml │ │ │ │ ├── org-junction.xml │ │ │ │ ├── org-multitenant.xml │ │ │ │ ├── resource-dummy-barony.xml │ │ │ │ ├── resource-dummy-castle-caladan.xml │ │ │ │ ├── resource-dummy-junction.xml │ │ │ │ ├── role-atreides-guard.xml │ │ │ │ ├── role-atreides-hacker.xml │ │ │ │ ├── role-atreides-swordmaster.xml │ │ │ │ ├── user-dmurr.xml │ │ │ │ ├── user-duncan.xml │ │ │ │ └── user-piter.xml │ │ │ ├── org-cheaters.xml │ │ │ ├── org-indirect-pirate.xml │ │ │ ├── org-requestable.xml │ │ │ ├── resource-dummy-vault.xml │ │ │ ├── resource-no-super.xml │ │ │ ├── resource-with-super.xml │ │ │ ├── role-acc-cert-campaign-complex-read.xml │ │ │ ├── role-acc-cert-case-work-items-assignee-self-read.xml │ │ │ ├── role-application-1.xml │ │ │ ├── role-application-2.xml │ │ │ ├── role-approver-unassign-roles.xml │ │ │ ├── role-approver.xml │ │ │ ├── role-archetype-ref-reviewer.xml │ │ │ ├── role-assign-any-roles.xml │ │ │ ├── role-assign-application-roles.xml │ │ │ ├── role-assign-non-application-roles.xml │ │ │ ├── role-assign-org.xml │ │ │ ├── role-assign-orgrelation.xml │ │ │ ├── role-assign-requestable-roles.xml │ │ │ ├── role-assign-self-requestable-any-approver.xml │ │ │ ├── role-attorney-caribbean-unlimited.xml │ │ │ ├── role-attorney-manager-workitems.xml │ │ │ ├── role-auditor.xml │ │ │ ├── role-basic.xml │ │ │ ├── role-business-1.xml │ │ │ ├── role-business-2.xml │ │ │ ├── role-business-3.xml │ │ │ ├── role-case-work-items-assignee-self-read.xml │ │ │ ├── role-case-work-items-event-approved-read.xml │ │ │ ├── role-cases-assignee-self.xml │ │ │ ├── role-cases-object-self.xml │ │ │ ├── role-cases-requestor-self.xml │ │ │ ├── role-conditional.xml │ │ │ ├── role-delegator-plus.xml │ │ │ ├── role-delegator.xml │ │ │ ├── role-deny-read-assignment-and-roleMembershipRef.xml │ │ │ ├── role-employee-manager.xml │ │ │ ├── role-end-user-requestable-abstractroles.xml │ │ │ ├── role-end-user-with-privacy.xml │ │ │ ├── role-exclusion-pirate.xml │ │ │ ├── role-expression-read-roles.xml │ │ │ ├── role-filter-object-caribbean-raw.xml │ │ │ ├── role-filter-object-caribbean.xml │ │ │ ├── role-filter-object-modify-caribbean.xml │ │ │ ├── role-filter-object-user-location-shadows.xml │ │ │ ├── role-filter-object-user-type-shadow.xml │ │ │ ├── role-indirect-pirate.xml │ │ │ ├── role-induce-any-role.xml │ │ │ ├── role-interfering-authorizations.xml │ │ │ ├── role-limited-read-role-administrator.xml │ │ │ ├── role-limited-role-administrator.xml │ │ │ ├── role-limited-role-search.xml │ │ │ ├── role-limited-user-admin.xml │ │ │ ├── role-manager-full-control.xml │ │ │ ├── role-manager-user-admin.xml │ │ │ ├── role-many-shadow-owner-autz.xml │ │ │ ├── role-maxassignees-10.xml │ │ │ ├── role-meta-nonsense.xml │ │ │ ├── role-modify-description.xml │ │ │ ├── role-modify-policy-exception-situation.xml │ │ │ ├── role-modify-policy-exception.xml │ │ │ ├── role-ordinary.xml │ │ │ ├── role-org-master-ministry-of-rum.xml │ │ │ ├── role-org-read-orgs-ministry-of-rum.xml │ │ │ ├── role-persona-management.xml │ │ │ ├── role-prop-deny-modify-some.xml │ │ │ ├── role-prop-except-administrative-status.xml │ │ │ ├── role-prop-except-assignment.xml │ │ │ ├── role-prop-get-search-some-modify-some-user.xml │ │ │ ├── role-prop-read-all-modify-some-user-partial.xml │ │ │ ├── role-prop-read-all-modify-some-user.xml │ │ │ ├── role-prop-read-all-modify-some.xml │ │ │ ├── role-prop-read-some-modify-some-exec-all.xml │ │ │ ├── role-prop-read-some-modify-some-fullname.xml │ │ │ ├── role-prop-read-some-modify-some-req-exec.xml │ │ │ ├── role-prop-read-some-modify-some-user.xml │ │ │ ├── role-prop-read-some-modify-some.xml │ │ │ ├── role-prop-subtype-escape.xml │ │ │ ├── role-prop-subtype.xml │ │ │ ├── role-read-basic-items.xml │ │ │ ├── role-read-jacks-campaigns.xml │ │ │ ├── role-read-org-exec.xml │ │ │ ├── role-read-resource-operational-state.xml │ │ │ ├── role-read-role-members-none.xml │ │ │ ├── role-read-role-members-wrong.xml │ │ │ ├── role-read-role-members.xml │ │ │ ├── role-read-self-modify-orgunit.xml │ │ │ ├── role-read-some-roles-subtype.xml │ │ │ ├── role-read-some-roles.xml │ │ │ ├── role-read-task-status.xml │ │ │ ├── role-readonly-deep-exec.xml │ │ │ ├── role-readonly-deep.xml │ │ │ ├── role-readonly-exec.xml │ │ │ ├── role-readonly-req-exec.xml │ │ │ ├── role-readonly-req.xml │ │ │ ├── role-readonly.xml │ │ │ ├── role-requestable-high-risk.xml │ │ │ ├── role-requester.xml │ │ │ ├── role-resource-no-super.xml │ │ │ ├── role-risk-low.xml │ │ │ ├── role-role-administrator.xml │ │ │ ├── role-role-owner-assign.xml │ │ │ ├── role-role-owner-full-control.xml │ │ │ ├── role-search-user-assignment-targetRef.xml │ │ │ ├── role-self-accounts-partial-control-password.xml │ │ │ ├── role-self-accounts-partial-control.xml │ │ │ ├── role-self-accounts-read-write.xml │ │ │ ├── role-self-accounts-read.xml │ │ │ ├── role-self-delegable.xml │ │ │ ├── role-self-req.xml │ │ │ ├── role-self-task-owner.xml │ │ │ ├── role-self.xml │ │ │ ├── role-show-delegation-assignments.xml │ │ │ ├── role-show-my-assignments-and-accesses.xml │ │ │ ├── role-show-my-requesters.xml │ │ │ ├── role-show-roles-inducing-my-role.xml │ │ │ ├── role-show-users-hide-shadows.xml │ │ │ ├── role-unassign-self-requestable.xml │ │ │ ├── role-uninteresting.xml │ │ │ ├── role-use-task-templates.xml │ │ │ ├── role-user-add-read-some.xml │ │ │ ├── role-user-add.xml │ │ │ ├── role-user-modify.xml │ │ │ ├── role-vault-dweller.xml │ │ │ ├── service-requestable-high-risk.xml │ │ │ ├── service-requestable-low-risk.xml │ │ │ ├── service-risk-high.xml │ │ │ ├── service-risk-low.xml │ │ │ ├── task-dummy.xml │ │ │ ├── task-template-dummy.xml │ │ │ ├── task-useless-administrator.xml │ │ │ ├── task-useless-jack.xml │ │ │ ├── user-alex.xml │ │ │ ├── user-angelica.xml │ │ │ ├── user-betty.xml │ │ │ ├── user-capsize.xml │ │ │ ├── user-charles.xml │ │ │ ├── user-deputy-1.xml │ │ │ ├── user-deputy-2.xml │ │ │ ├── user-employee-fred.xml │ │ │ ├── user-estevan.xml │ │ │ ├── user-lechuck.xml │ │ │ ├── user-mancomb.xml │ │ │ └── user-template-security.xml │ │ │ ├── simulation │ │ │ ├── archetype-customer.xml │ │ │ ├── archetype-person-dev-archetype.xml │ │ │ ├── archetype-person-dev-template.xml │ │ │ ├── archetype-person.xml │ │ │ ├── cod │ │ │ │ ├── archetype-double-assignments.xml │ │ │ │ ├── object-template-org.xml │ │ │ │ ├── object-template-user-double-assignments.xml │ │ │ │ ├── object-template-user.xml │ │ │ │ ├── org-child.xml │ │ │ │ ├── org-existing.xml │ │ │ │ ├── resource-dummy.xml │ │ │ │ ├── role-meta-assignment-search.xml │ │ │ │ ├── role-org.xml │ │ │ │ ├── system-configuration.xml │ │ │ │ └── user-bob.xml │ │ │ ├── mark-nonsense-mark.xml │ │ │ ├── mark-user-add.xml │ │ │ ├── mark-user-delete.xml │ │ │ ├── metarole.xml │ │ │ ├── resource-simple-development-source.xml │ │ │ ├── resource-simple-development-target.xml │ │ │ ├── resource-simple-production-source.xml │ │ │ ├── resource-simple-production-target.xml │ │ │ ├── role-person-dev.xml │ │ │ ├── role-person.xml │ │ │ ├── sequence │ │ │ │ ├── object-template-simulation.xml │ │ │ │ ├── sequence.xml │ │ │ │ ├── system-configuration.xml │ │ │ │ └── user-chad.xml │ │ │ ├── system-configuration.xml │ │ │ ├── task-user-recomputation-simulated.xml │ │ │ ├── template-person-dev-template.xml │ │ │ ├── template-person-included-dev.xml │ │ │ └── template-person.xml │ │ │ ├── smart │ │ │ ├── resource-dummy-for-suggest-correlation-and-mappings.xml │ │ │ ├── resource-dummy-for-suggest-focus-type.xml │ │ │ ├── resource-dummy-for-suggest-object-types.xml │ │ │ ├── resource-dummy-smart-association-types.xml │ │ │ ├── story │ │ │ │ ├── resource-dummy-directory.xml │ │ │ │ └── resource-dummy-hr.xml │ │ │ ├── user-alice.xml │ │ │ ├── user-bob.xml │ │ │ ├── user-jack.xml │ │ │ └── user-jim.xml │ │ │ ├── strange │ │ │ ├── archetype-external-user.xml │ │ │ ├── case-approval.xml │ │ │ ├── resource-dummy-circus.xml │ │ │ ├── resource-dummy-no-create.xml │ │ │ ├── role-bad-construction-resource-ref-lax.xml │ │ │ ├── role-bad-construction-resource-ref.xml │ │ │ ├── role-idiot-assignment.xml │ │ │ ├── role-idiot.xml │ │ │ ├── role-meta-bad-construction-resource-ref.xml │ │ │ ├── role-no-create.xml │ │ │ ├── role-recursion-assignment.xml │ │ │ ├── role-recursion.xml │ │ │ ├── role-stupid-assignment.xml │ │ │ ├── role-stupid.xml │ │ │ ├── role-target-bad-construction-resource-ref.xml │ │ │ ├── sequence-external-user.xml │ │ │ ├── system-configuration-strange.xml │ │ │ ├── treasure-island.txt │ │ │ ├── user-deghoulash.xml │ │ │ └── user-template-strange.xml │ │ │ ├── sync-story │ │ │ ├── task-live-sync-dummy-blue.xml │ │ │ ├── task-live-sync-dummy-green.xml │ │ │ ├── task-live-sync-dummy.xml │ │ │ ├── task-reconcile-dummy-blue-multinode.xml │ │ │ ├── task-reconcile-dummy-blue-multithreaded.xml │ │ │ ├── task-reconcile-dummy-blue-with-subtasks.xml │ │ │ ├── task-reconcile-dummy-blue.xml │ │ │ ├── task-reconcile-dummy-green-multinode.xml │ │ │ ├── task-reconcile-dummy-green-multithreaded.xml │ │ │ ├── task-reconcile-dummy-green-with-subtasks.xml │ │ │ ├── task-reconcile-dummy-green.xml │ │ │ ├── task-reconcile-dummy-multinode.xml │ │ │ ├── task-reconcile-dummy-multithreaded.xml │ │ │ ├── task-reconcile-dummy-with-subtasks.xml │ │ │ ├── task-reconcile-dummy.xml │ │ │ ├── task-shadow-cleanup-green.xml │ │ │ └── user-template-sync.xml │ │ │ ├── sync │ │ │ ├── account-andre-dummy.xml │ │ │ ├── account-augustus-dummy.xml │ │ │ ├── account-cruff-dummy.xml │ │ │ ├── account-kenny-dummy.xml │ │ │ ├── account-lechimp-dummy.xml │ │ │ ├── account-stan-dummy.xml │ │ │ ├── account-tandre-dummy.xml │ │ │ ├── account-taugustus-dummy.xml │ │ │ ├── account-tlafoot-dummy.xml │ │ │ ├── account-tlechimp-dummy.xml │ │ │ ├── account-tpalido-dummy.xml │ │ │ ├── archetype-employee.xml │ │ │ ├── archetype-other.xml │ │ │ ├── archetype-task-recomputation.xml │ │ │ ├── password-policy-azure.xml │ │ │ ├── resource-dummy-archetyped-filter-based.xml │ │ │ ├── resource-dummy-archetyped.xml │ │ │ ├── resource-dummy-azure.xml │ │ │ ├── resource-dummy-byzantine.xml │ │ │ ├── resource-dummy-graveyard.xml │ │ │ ├── resource-dummy-lime.xml │ │ │ ├── resource-dummy-reaping.xml │ │ │ ├── resource-dummy-reclassification.xml │ │ │ ├── resource-dummy-steelblue.xml │ │ │ ├── resource-dummy-steelgrey.xml │ │ │ ├── resource-dummy-uuid.xml │ │ │ ├── role-big-judge.xml │ │ │ ├── role-corpse.xml │ │ │ ├── role-importer.xml │ │ │ ├── role-red-judge.xml │ │ │ ├── role-steelgrey.xml │ │ │ ├── task-custom-validity-scan.xml │ │ │ ├── task-delete-dummy-accounts.xml │ │ │ ├── task-delete-dummy-shadows.xml │ │ │ ├── task-dummy-byzantine-livesync.xml │ │ │ ├── task-dummy-byzantine-recon.xml │ │ │ ├── task-dummy-emerald-livesync.xml │ │ │ ├── task-dummy-emerald-recon.xml │ │ │ ├── task-import-dummy-lime-limited-migrated.xml │ │ │ ├── task-import-dummy-lime-limited.xml │ │ │ ├── task-import-dummy-steelblue-multithreaded.xml │ │ │ ├── task-reconcile-dummy-azure.xml │ │ │ ├── task-reconcile-dummy-filter.xml │ │ │ ├── task-reconcile-dummy-graveyard.xml │ │ │ ├── task-reconcile-dummy-lime.xml │ │ │ ├── task-reconcile-dummy-reaping-dry-run.xml │ │ │ ├── task-reconcile-dummy-single.xml │ │ │ ├── task-reconcile-dummy-steelblue-multithreaded.xml │ │ │ ├── task-reconcile-dummy-steelblue-partitioned.xml │ │ │ ├── task-reconcile-dummy-uuid.xml │ │ │ ├── task-user-recompute-captain.xml │ │ │ ├── task-user-recompute-employees.xml │ │ │ ├── task-user-recompute-herman-by-expression.xml │ │ │ ├── task-user-recompute-light.xml │ │ │ ├── task-user-recompute.xml │ │ │ ├── user-importer.xml │ │ │ ├── user-template-byzantine-deleted.xml │ │ │ ├── user-template-byzantine.xml │ │ │ ├── user-template-lime.xml │ │ │ └── user-template-steelgrey.xml │ │ │ ├── synchronization │ │ │ ├── archetype.xml │ │ │ ├── dummy-source.xml │ │ │ └── dummy-target.xml │ │ │ ├── tasks │ │ │ ├── auto-scaling │ │ │ │ ├── task-auto-scaling-skip-initial.xml │ │ │ │ ├── task-auto-scaling.xml │ │ │ │ ├── task-disabled-auto-scaling.xml │ │ │ │ ├── task-no-workers.xml │ │ │ │ └── task-two-workers-per-node.xml │ │ │ ├── cleanup │ │ │ │ ├── objects-to-be-cleaned-up.xml │ │ │ │ ├── role-limited.xml │ │ │ │ ├── task-cleanup-admin.xml │ │ │ │ ├── task-cleanup-limited.xml │ │ │ │ └── user-limited.xml │ │ │ ├── livesync │ │ │ │ ├── resource-dummy-errors-source-precise.xml │ │ │ │ ├── resource-dummy-errors-target.xml │ │ │ │ ├── resource-dummy-interrupted-sync-imprecise.xml │ │ │ │ ├── resource-dummy-interrupted-sync.xml │ │ │ │ ├── resource-dummy-multi-changes.xml │ │ │ │ ├── resource-dummy-multi-type-source.xml │ │ │ │ ├── resource-dummy-no-policy.xml │ │ │ │ ├── resource-dummy-xfer1-source.xml │ │ │ │ ├── resource-dummy-xfer1-target-deletable.xml │ │ │ │ ├── resource-dummy-xfer2-source.xml │ │ │ │ ├── resource-dummy-xfer2-target-not-deletable.xml │ │ │ │ ├── role-errors-target.xml │ │ │ │ ├── role-xfer1.xml │ │ │ │ ├── role-xfer2.xml │ │ │ │ ├── task-errors-precise-ignore-partial-stop-on-fatal.xml │ │ │ │ ├── task-errors-precise-ignore.xml │ │ │ │ ├── task-errors-precise-retry-later-max-4.xml │ │ │ │ ├── task-errors-precise-retry-later-on-any.xml │ │ │ │ ├── task-errors-precise-stop-on-any.xml │ │ │ │ ├── task-intsync-batched-imprecise.xml │ │ │ │ ├── task-intsync-batched.xml │ │ │ │ ├── task-intsync-dry-run-with-update.xml │ │ │ │ ├── task-intsync-dry-run.xml │ │ │ │ ├── task-intsync-error-imprecise.xml │ │ │ │ ├── task-intsync-error.xml │ │ │ │ ├── task-intsync-slow-model-imprecise.xml │ │ │ │ ├── task-intsync-slow-model.xml │ │ │ │ ├── task-intsync-slow-resource-imprecise.xml │ │ │ │ ├── task-intsync-slow-resource.xml │ │ │ │ ├── task-multi-changes.xml │ │ │ │ ├── task-multi-type-live-sync-type-1.xml │ │ │ │ ├── task-multi-type-live-sync-type-2.xml │ │ │ │ ├── task-no-policy.xml │ │ │ │ ├── task-xfer1.xml │ │ │ │ └── task-xfer2.xml │ │ │ ├── misc │ │ │ │ ├── cluster-role-based.xml │ │ │ │ ├── resource-dummy-refreshed.xml │ │ │ │ ├── role-application-1.xml │ │ │ │ ├── role-application-2.xml │ │ │ │ ├── role-business-1.xml │ │ │ │ ├── session-role-based.xml │ │ │ │ ├── task-10496.xml │ │ │ │ ├── task-cleanup-subtasks-after-completion.xml │ │ │ │ ├── task-delete-incomplete-raw.xml │ │ │ │ ├── task-delete-missing-query.xml │ │ │ │ ├── task-delete-missing-type.xml │ │ │ │ ├── task-delete-report-data.xml │ │ │ │ ├── task-delete-selected-users.xml │ │ │ │ ├── task-execute-changes-multi.xml │ │ │ │ ├── task-execute-changes-single.xml │ │ │ │ ├── task-execute-changes.xml │ │ │ │ ├── task-noop-recurrent.xml │ │ │ │ ├── task-role-analysis-clustering-basic.xml │ │ │ │ ├── task-role-analysis-pattern-detection-basic.xml │ │ │ │ ├── task-role-membership-management-basic.xml │ │ │ │ ├── task-shadow-refresh-all.xml │ │ │ │ ├── user-1.xml │ │ │ │ └── user-2.xml │ │ │ ├── noop │ │ │ │ ├── task-bucket-analysis-with-condition.xml │ │ │ │ ├── task-bucket-analysis-with-random-sampling.xml │ │ │ │ └── task-bucket-analysis-with-regular-sampling.xml │ │ │ ├── recon │ │ │ │ ├── resource-dummy-harsh.xml │ │ │ │ ├── task-reconciliation-harsh.xml │ │ │ │ ├── task-reconciliation-multinode.xml │ │ │ │ └── task-reconciliation.xml │ │ │ └── thresholds │ │ │ │ ├── dummy.xml │ │ │ │ ├── resource-dummy-source-slow.xml │ │ │ │ ├── resource-dummy-source.xml │ │ │ │ ├── role-add-10.xml │ │ │ │ ├── role-delete-5.xml │ │ │ │ ├── role-modify-cost-center-5.xml │ │ │ │ ├── role-modify-full-name-5.xml │ │ │ │ ├── task-import-execute-multi.xml │ │ │ │ ├── task-import-execute-single.xml │ │ │ │ ├── task-import-no-limits.xml │ │ │ │ ├── task-import-simulate-execute-multi.xml │ │ │ │ ├── task-import-simulate-execute-single.xml │ │ │ │ ├── task-import-simulate-multi.xml │ │ │ │ ├── task-import-simulate-single.xml │ │ │ │ ├── task-non-iterative-restart.xml │ │ │ │ ├── task-reconciliation-composite.xml │ │ │ │ ├── task-reconciliation-execute-multi.xml │ │ │ │ ├── task-reconciliation-execute-single.xml │ │ │ │ ├── task-reconciliation-simulate-execute-multi.xml │ │ │ │ ├── task-reconciliation-simulate-execute-single.xml │ │ │ │ ├── task-reconciliation-simulate-multi.xml │ │ │ │ └── task-reconciliation-simulate-single.xml │ │ │ ├── tolerance │ │ │ └── resource-dummy-tolerance.xml │ │ │ ├── tracing │ │ │ ├── function-library-hacking.xml │ │ │ ├── resource-illegal.xml │ │ │ ├── role-class-less-values.xml │ │ │ ├── role-illegal.xml │ │ │ ├── system-configuration.xml │ │ │ ├── user-jim.xml │ │ │ └── user-joe.xml │ │ │ └── volatility │ │ │ ├── resource-dummy-hr.xml │ │ │ ├── resource-dummy-monsterized.xml │ │ │ ├── resource-dummy-volatile.xml │ │ │ ├── task-dummy-hr-livesync.xml │ │ │ ├── user-largo-with-assignment.xml │ │ │ └── user-template-import-hr.xml │ ├── testng-db-specific.xml │ ├── testng-integration-fast.xml │ ├── testng-integration-full.xml │ ├── testng-integration-security.xml │ ├── testng-integration-simulations.xml │ └── testng-unit.xml ├── model-test │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── evolveum │ │ │ └── midpoint │ │ │ └── model │ │ │ └── test │ │ │ ├── AbstractModelIntegrationTest.java │ │ │ ├── Attempt.java │ │ │ ├── CommonInitialObjects.java │ │ │ ├── DummyResourceCollection.java │ │ │ ├── DummyTransport.java │ │ │ ├── ModelObjectImporterImpl.java │ │ │ ├── ObjectsCounter.java │ │ │ ├── ProfilingModelInspectorManager.java │ │ │ ├── SearchAssertion.java │ │ │ ├── TestSimulationResult.java │ │ │ ├── asserter │ │ │ ├── AssignmentAsserts.java │ │ │ ├── AssignmentCandidatesSpecificationAsserter.java │ │ │ ├── AssignmentObjectRelationsAsserter.java │ │ │ ├── AssignmentTargetRelationAsserter.java │ │ │ ├── AssignmentTargetRelationFinder.java │ │ │ ├── CompiledGuiProfileAsserter.java │ │ │ ├── ElementContextAsserter.java │ │ │ ├── EvaluatedPolicyRuleAsserter.java │ │ │ ├── EvaluatedPolicyRuleTriggerAsserter.java │ │ │ ├── EvaluatedPolicyRulesAsserter.java │ │ │ ├── FocusContextAsserter.java │ │ │ ├── ModelContextAsserter.java │ │ │ ├── ObjectCollectionViewAsserter.java │ │ │ ├── ObjectCollectionViewFinder.java │ │ │ ├── ObjectCollectionViewsAsserter.java │ │ │ ├── ProcessedObjectAsserter.java │ │ │ ├── ProcessedObjectFinder.java │ │ │ ├── ProcessedObjectsAsserter.java │ │ │ ├── ProjectionContextAsserter.java │ │ │ ├── ProjectionContextFinder.java │ │ │ ├── ProjectionContextsAsserter.java │ │ │ ├── RoleSelectionSpecificationAsserter.java │ │ │ ├── RoleSelectionSpecificationRelationAsserter.java │ │ │ └── SimulationResultAsserter.java │ │ │ ├── idmatch │ │ │ └── DummyIdMatchServiceImpl.java │ │ │ ├── smart │ │ │ └── MockServiceClientImpl.java │ │ │ └── util │ │ │ ├── ShadowFindRequest.java │ │ │ └── SynchronizationRequest.java │ │ └── resources │ │ └── ctx-model-test.xml ├── notifications-api │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── evolveum │ │ └── midpoint │ │ └── notifications │ │ └── api │ │ ├── EventHandler.java │ │ ├── EventProcessingContext.java │ │ ├── NotificationManager.java │ │ ├── OperationStatus.java │ │ ├── events │ │ ├── AccessCertificationEvent.java │ │ ├── ActivityEvent.java │ │ ├── ActivityPolicyRuleEvent.java │ │ ├── ActivityRealizationCompleteEvent.java │ │ ├── CaseEvent.java │ │ ├── CaseManagementEvent.java │ │ ├── CertCampaignEvent.java │ │ ├── CertCampaignStageEvent.java │ │ ├── CertReviewEvent.java │ │ ├── CustomEvent.java │ │ ├── Event.java │ │ ├── ModelEvent.java │ │ ├── PolicyRuleEvent.java │ │ ├── ReportOutputCreatedEvent.java │ │ ├── ResourceObjectEvent.java │ │ ├── SimpleObjectRef.java │ │ ├── TaskEvent.java │ │ ├── WorkItemAllocationEvent.java │ │ ├── WorkItemCustomEvent.java │ │ ├── WorkItemEvent.java │ │ ├── WorkItemLifecycleEvent.java │ │ └── factory │ │ │ └── CustomEventFactory.java │ │ └── transports │ │ ├── Message.java │ │ ├── SendingContext.java │ │ ├── Transport.java │ │ ├── TransportService.java │ │ └── TransportSupport.java ├── notifications-impl │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── evolveum │ │ │ │ │ └── midpoint │ │ │ │ │ ├── notifications │ │ │ │ │ └── impl │ │ │ │ │ │ ├── AccountOperationListener.java │ │ │ │ │ │ ├── CaseEventCreationListenerImpl.java │ │ │ │ │ │ ├── CertificationListener.java │ │ │ │ │ │ ├── EventHandlerRegistry.java │ │ │ │ │ │ ├── NotificationActivityListener.java │ │ │ │ │ │ ├── NotificationConstants.java │ │ │ │ │ │ ├── NotificationFunctions.java │ │ │ │ │ │ ├── NotificationHook.java │ │ │ │ │ │ ├── NotificationManagerImpl.java │ │ │ │ │ │ ├── NotificationReportOutputCreatedListener.java │ │ │ │ │ │ ├── NotificationTaskListener.java │ │ │ │ │ │ ├── SimpleObjectRefImpl.java │ │ │ │ │ │ ├── events │ │ │ │ │ │ ├── AccessCertificationEventImpl.java │ │ │ │ │ │ ├── ActivityEventImpl.java │ │ │ │ │ │ ├── ActivityPolicyRuleEventImpl.java │ │ │ │ │ │ ├── ActivityRealizationCompleteEventImpl.java │ │ │ │ │ │ ├── BaseEventImpl.java │ │ │ │ │ │ ├── CaseEventImpl.java │ │ │ │ │ │ ├── CaseManagementEventImpl.java │ │ │ │ │ │ ├── CertCampaignEventImpl.java │ │ │ │ │ │ ├── CertCampaignStageEventImpl.java │ │ │ │ │ │ ├── CertReviewEventImpl.java │ │ │ │ │ │ ├── CustomEventImpl.java │ │ │ │ │ │ ├── ModelEventImpl.java │ │ │ │ │ │ ├── PolicyRuleEventImpl.java │ │ │ │ │ │ ├── ReportOutputCreatedEventImpl.java │ │ │ │ │ │ ├── ResourceObjectEventImpl.java │ │ │ │ │ │ ├── TaskEventImpl.java │ │ │ │ │ │ ├── WorkItemAllocationEventImpl.java │ │ │ │ │ │ ├── WorkItemCustomEventImpl.java │ │ │ │ │ │ ├── WorkItemEventImpl.java │ │ │ │ │ │ ├── WorkItemLifecycleEventImpl.java │ │ │ │ │ │ └── factory │ │ │ │ │ │ │ ├── CertEventFactory.java │ │ │ │ │ │ │ └── CustomEventFactoryImpl.java │ │ │ │ │ │ ├── formatters │ │ │ │ │ │ ├── AdditionalIdentificationFormatter.java │ │ │ │ │ │ ├── ContainerPropertiesModificationFormatter.java │ │ │ │ │ │ ├── DeltaFormatter.java │ │ │ │ │ │ ├── IndentationGenerator.java │ │ │ │ │ │ ├── ModifiedPropertiesFormatter.java │ │ │ │ │ │ ├── PlainTextPropertiesFormatter.java │ │ │ │ │ │ ├── PropertiesFormatter.java │ │ │ │ │ │ ├── PropertyFormatter.java │ │ │ │ │ │ ├── TextFormatter.java │ │ │ │ │ │ ├── ValueFormatter.java │ │ │ │ │ │ └── VisualizationBasedDeltaFormatter.java │ │ │ │ │ │ ├── handlers │ │ │ │ │ │ ├── AggregatedEventHandler.java │ │ │ │ │ │ └── BaseHandler.java │ │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── BaseNotificationHelper.java │ │ │ │ │ │ ├── CategoryFilterHelper.java │ │ │ │ │ │ ├── CertHelper.java │ │ │ │ │ │ ├── ExpressionFilterHelper.java │ │ │ │ │ │ ├── FocusTypeFilterHelper.java │ │ │ │ │ │ ├── KindIntentFilterHelper.java │ │ │ │ │ │ ├── NotificationExpressionHelper.java │ │ │ │ │ │ ├── OperationFilterHelper.java │ │ │ │ │ │ └── StatusFilterHelper.java │ │ │ │ │ │ ├── notifiers │ │ │ │ │ │ ├── AbstractGeneralNotifier.java │ │ │ │ │ │ ├── AbstractPolicyRuleNotifier.java │ │ │ │ │ │ ├── AccountActivationNotifier.java │ │ │ │ │ │ ├── AccountPasswordNotifier.java │ │ │ │ │ │ ├── ConfirmationNotifier.java │ │ │ │ │ │ ├── CustomNotifier.java │ │ │ │ │ │ ├── GeneralNotifier.java │ │ │ │ │ │ ├── PasswordResetNotifier.java │ │ │ │ │ │ ├── RegistrationConfirmationNotifier.java │ │ │ │ │ │ ├── SimpleActivityPolicyRuleNotifier.java │ │ │ │ │ │ ├── SimpleCampaignNotifier.java │ │ │ │ │ │ ├── SimpleCampaignStageNotifier.java │ │ │ │ │ │ ├── SimpleCaseManagementNotifier.java │ │ │ │ │ │ ├── SimpleFocalObjectNotifier.java │ │ │ │ │ │ ├── SimplePolicyRuleNotifier.java │ │ │ │ │ │ ├── SimpleReportNotifier.java │ │ │ │ │ │ ├── SimpleResourceObjectNotifier.java │ │ │ │ │ │ ├── SimpleReviewerNotifier.java │ │ │ │ │ │ ├── SimpleTaskNotifier.java │ │ │ │ │ │ ├── SimpleUserNotifier.java │ │ │ │ │ │ ├── TimeValidityNotifier.java │ │ │ │ │ │ └── UserPasswordNotifier.java │ │ │ │ │ │ └── util │ │ │ │ │ │ ├── ApplicationContextHolder.java │ │ │ │ │ │ ├── EventHelper.java │ │ │ │ │ │ └── HttpUtil.java │ │ │ │ │ └── transport │ │ │ │ │ └── impl │ │ │ │ │ ├── CustomMessageTransport.java │ │ │ │ │ ├── FileMessageTransport.java │ │ │ │ │ ├── MailMessageTransport.java │ │ │ │ │ ├── OAuth2TokenRetrievalException.java │ │ │ │ │ ├── OAuth2TokenService.java │ │ │ │ │ ├── SmsMessageTransport.java │ │ │ │ │ ├── TransportServiceImpl.java │ │ │ │ │ ├── TransportUtil.java │ │ │ │ │ └── legacy │ │ │ │ │ ├── LegacyCustomTransport.java │ │ │ │ │ ├── LegacyFileTransport.java │ │ │ │ │ ├── LegacyMailTransport.java │ │ │ │ │ └── LegacySimpleSmsTransport.java │ │ │ └── resources │ │ │ │ └── ctx-notifications.xml │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── notifications │ │ │ │ └── impl │ │ │ │ ├── NotificationsTest.java │ │ │ │ ├── TestMessageTransport.java │ │ │ │ ├── TestTextFormatter.java │ │ │ │ ├── TestTransportUtils.java │ │ │ │ └── formatters │ │ │ │ ├── ContainerPropertiesModificationFormatterTest.java │ │ │ │ ├── PlainTextPropertiesFormatterTest.java │ │ │ │ └── VisualizationBasedDeltaFormatterTest.java │ │ │ └── resources │ │ │ ├── changes │ │ │ └── user-jack-modification.xml │ │ │ ├── ctx-notifications-test.xml │ │ │ ├── logback-test.xml │ │ │ ├── midpoint-home │ │ │ └── localization │ │ │ │ └── Midpoint_en_US.properties │ │ │ ├── objects │ │ │ ├── account-jack.xml │ │ │ ├── resource-dummy.xml │ │ │ ├── role-superuser.xml │ │ │ ├── user-administrator.xml │ │ │ └── user-jack.xml │ │ │ └── schema │ │ │ └── piracy.xsd │ └── testng-unit.xml ├── pom.xml ├── report-api │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── evolveum │ │ └── midpoint │ │ └── report │ │ └── api │ │ ├── ReportConstants.java │ │ ├── ReportManager.java │ │ └── ReportService.java ├── report-impl │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── evolveum │ │ │ │ │ └── midpoint │ │ │ │ │ └── report │ │ │ │ │ └── impl │ │ │ │ │ ├── DeltaPrinterOptions.java │ │ │ │ │ ├── ReportBeans.java │ │ │ │ │ ├── ReportFunctions.java │ │ │ │ │ ├── ReportManagerImpl.java │ │ │ │ │ ├── ReportServiceImpl.java │ │ │ │ │ ├── ReportUtils.java │ │ │ │ │ ├── activity │ │ │ │ │ ├── AbstractReportWorkDefinition.java │ │ │ │ │ ├── AuditReportSegmentation.java │ │ │ │ │ ├── ClassicCollectionReportExportActivityRun.java │ │ │ │ │ ├── ClassicDashboardReportExportActivityRun.java │ │ │ │ │ ├── ClassicReportExportActivityHandler.java │ │ │ │ │ ├── ClassicReportExportWorkDefinition.java │ │ │ │ │ ├── ClassicReportImportActivityHandler.java │ │ │ │ │ ├── ClassicReportImportActivityRun.java │ │ │ │ │ ├── ClassicReportImportWorkDefinition.java │ │ │ │ │ ├── DistributedReportExportActivityHandler.java │ │ │ │ │ ├── DistributedReportExportActivitySupport.java │ │ │ │ │ ├── DistributedReportExportWorkDefinition.java │ │ │ │ │ ├── ExportActivitySupport.java │ │ │ │ │ ├── ExportCollectionActivitySupport.java │ │ │ │ │ ├── ExportDashboardActivitySupport.java │ │ │ │ │ ├── ExportDashboardReportLine.java │ │ │ │ │ ├── ExportDashboardReportLineProcessingRequest.java │ │ │ │ │ ├── ImportActivitySupport.java │ │ │ │ │ ├── InputReportLine.java │ │ │ │ │ ├── InputReportLineProcessingRequest.java │ │ │ │ │ ├── ReportActivitySupport.java │ │ │ │ │ ├── ReportDataAggregationActivityRun.java │ │ │ │ │ ├── ReportDataCreationActivityRun.java │ │ │ │ │ └── SaveReportFileSupport.java │ │ │ │ │ └── controller │ │ │ │ │ ├── AbstractReportDataWriter.java │ │ │ │ │ ├── CollectionDistributedExportController.java │ │ │ │ │ ├── CollectionExportController.java │ │ │ │ │ ├── ColumnDataConverter.java │ │ │ │ │ ├── CommonCsvSupport.java │ │ │ │ │ ├── CommonHtmlSupport.java │ │ │ │ │ ├── CsvReportDataWriter.java │ │ │ │ │ ├── DashboardExportController.java │ │ │ │ │ ├── DashboardReportDataWriter.java │ │ │ │ │ ├── DashboardWidgetExportController.java │ │ │ │ │ ├── ExportController.java │ │ │ │ │ ├── ExportedDashboardReportDataRow.java │ │ │ │ │ ├── ExportedDashboardReportHeaderRow.java │ │ │ │ │ ├── ExportedReportDataRow.java │ │ │ │ │ ├── ExportedReportHeaderColumn.java │ │ │ │ │ ├── ExportedReportHeaderRow.java │ │ │ │ │ ├── GenericSupport.java │ │ │ │ │ ├── HtmlDashboardReportDataWriter.java │ │ │ │ │ ├── HtmlReportDataWriter.java │ │ │ │ │ ├── ImportController.java │ │ │ │ │ ├── PrismableReportDataSource.java │ │ │ │ │ ├── ReportDataSource.java │ │ │ │ │ └── ReportDataWriter.java │ │ │ └── resources │ │ │ │ ├── ctx-report.xml │ │ │ │ └── html-report-style.css │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── report │ │ │ │ ├── EmptyReportIntegrationTest.java │ │ │ │ ├── TestCsvReport.java │ │ │ │ ├── TestCsvReportAllAssignments.java │ │ │ │ ├── TestCsvReportExportClassic.java │ │ │ │ ├── TestCsvReportExportClassicSafe.java │ │ │ │ ├── TestCsvReportImportClassic.java │ │ │ │ ├── TestCsvReportMultiNode.java │ │ │ │ ├── TestCsvSimulationReport.java │ │ │ │ ├── TestHtmlReportExportClassic.java │ │ │ │ └── TestMiscellaneous.java │ │ │ └── resources │ │ │ ├── DejaVuSans.ttf │ │ │ ├── common │ │ │ ├── archetype-task-report-export-classic.xml │ │ │ ├── archetype-task-report-export-distributed.xml │ │ │ ├── archetype-task-report-import-classic.xml │ │ │ ├── dashboard-default-columns.xml │ │ │ ├── dashboard-empty.xml │ │ │ ├── dashboard-with-triple-view.xml │ │ │ ├── dashboard-with-view.xml │ │ │ ├── object-collection-all-assignment-holder-with-view.xml │ │ │ ├── object-collection-all-assignment-holder.xml │ │ │ ├── object-collection-all-audit-records-with-view.xml │ │ │ ├── object-collection-all-audit-records.xml │ │ │ ├── object-collection-all-resource-with-view.xml │ │ │ ├── object-collection-all-resource.xml │ │ │ ├── object-collection-all-role-with-view.xml │ │ │ ├── object-collection-all-role.xml │ │ │ ├── object-collection-all-task-with-view.xml │ │ │ ├── object-collection-all-task.xml │ │ │ ├── object-collection-all-user-with-view.xml │ │ │ ├── object-collection-all-user.xml │ │ │ ├── object-collection-audit-empty.xml │ │ │ ├── object-collection-basic-filter.xml │ │ │ ├── object-collection-empty.xml │ │ │ ├── object-collection-shadow-of-resource-with-view.xml │ │ │ ├── object-collection-shadow-of-resource.xml │ │ │ ├── resource-dummy-outbound.xml │ │ │ ├── role-end-user.xml │ │ │ ├── role-reader.xml │ │ │ ├── role-superuser.xml │ │ │ ├── system-configuration-safe.xml │ │ │ ├── system-configuration.xml │ │ │ ├── user-administrator.xml │ │ │ ├── user-jack.xml │ │ │ └── user-will.xml │ │ │ ├── ctx-report-test-main.xml │ │ │ ├── import │ │ │ ├── import-modify-user.csv │ │ │ └── import-users.csv │ │ │ ├── logback-test.xml │ │ │ ├── misc │ │ │ ├── report-export-users.xml │ │ │ ├── report-import-users.xml │ │ │ └── users-to-import.csv │ │ │ ├── reports │ │ │ ├── logo.jpg │ │ │ ├── report-assignments-inner-join.xml │ │ │ ├── report-assignments-left-join.xml │ │ │ ├── report-audit-collection-empty.xml │ │ │ ├── report-audit-collection-with-condition.xml │ │ │ ├── report-audit-collection-with-default-column.xml │ │ │ ├── report-audit-collection-with-double-view.xml │ │ │ ├── report-audit-collection-with-view.xml │ │ │ ├── report-dashboard-empty.xml │ │ │ ├── report-dashboard-with-default-column.xml │ │ │ ├── report-dashboard-with-triple-view.xml │ │ │ ├── report-dashboard-with-view.xml │ │ │ ├── report-import-object-collection-with-view.xml │ │ │ ├── report-indirect-assignments.xml │ │ │ ├── report-object-collection-empty.xml │ │ │ ├── report-object-collection-filter-and-basic-collection-without-view.xml │ │ │ ├── report-object-collection-users.xml │ │ │ ├── report-object-collection-with-condition.xml │ │ │ ├── report-object-collection-with-default-column.xml │ │ │ ├── report-object-collection-with-double-view.xml │ │ │ ├── report-object-collection-with-filter-and-basic-collection.xml │ │ │ ├── report-object-collection-with-filter.xml │ │ │ ├── report-object-collection-with-param.xml │ │ │ ├── report-object-collection-with-subreport-param.xml │ │ │ ├── report-object-collection-with-value-metadata.xml │ │ │ ├── report-object-collection-with-view.xml │ │ │ ├── report-subreport-audit.xml │ │ │ ├── report-user-list-script.xml │ │ │ ├── report-user-list.xml │ │ │ ├── report-with-import-script.xml │ │ │ ├── task-distributed-export-audit.xml │ │ │ ├── task-distributed-export-users.xml │ │ │ ├── task-export-role-caching.xml │ │ │ ├── task-export.xml │ │ │ └── task-import.xml │ │ │ └── simulation │ │ │ ├── archetype-blue.xml │ │ │ ├── archetype-magenta.xml │ │ │ ├── mark-dummy.xml │ │ │ ├── metarole-function.xml │ │ │ ├── org-hq.xml │ │ │ ├── resource-dummy-inbound.xml │ │ │ ├── role-admin.xml │ │ │ ├── role-developer.xml │ │ │ └── role-tester.xml │ ├── testng-integration.xml │ └── testng-unit.xml ├── rest-impl │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── evolveum │ │ └── midpoint │ │ └── rest │ │ └── impl │ │ ├── AbstractRestController.java │ │ ├── BinderControllerAdvice.java │ │ ├── ClusterRestController.java │ │ ├── ExtensionSchemaRestController.java │ │ ├── MidpointAbstractHttpMessageConverter.java │ │ ├── MidpointJsonHttpMessageConverter.java │ │ ├── MidpointXmlHttpMessageConverter.java │ │ ├── MidpointYamlHttpMessageConverter.java │ │ ├── ModelRestController.java │ │ ├── RestApiIndex.java │ │ ├── RestConfig.java │ │ ├── RestExceptionHandler.java │ │ └── SmartIntegrationRestController.java ├── smart-api │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── evolveum │ │ └── midpoint │ │ └── smart │ │ └── api │ │ ├── ServiceClient.java │ │ ├── ServiceClientFactory.java │ │ ├── SmartIntegrationService.java │ │ ├── conndev │ │ ├── ConnectorDevelopmentArtifacts.java │ │ ├── ConnectorDevelopmentOperation.java │ │ ├── ConnectorDevelopmentService.java │ │ ├── ScimRestConfigurationProperties.java │ │ └── SupportedAuthorization.java │ │ ├── info │ │ ├── ObjectClassInfo.java │ │ ├── ObjectClassInfoPrinter.java │ │ ├── ObjectTypesSuggestionStatusInfoPrinter.java │ │ └── StatusInfo.java │ │ └── synchronization │ │ ├── DeletedSourceChoice.java │ │ ├── DeletedTargetChoice.java │ │ ├── DisputedTargetChoice.java │ │ ├── SourceSynchronizationAnswers.java │ │ ├── SynchronizationConfigurationScenario.java │ │ ├── TargetSynchronizationAnswers.java │ │ ├── UnmatchedSourceChoice.java │ │ └── UnmatchedTargetChoice.java ├── smart-impl │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── evolveum │ │ │ │ │ └── midpoint │ │ │ │ │ └── smart │ │ │ │ │ └── impl │ │ │ │ │ ├── ConfigBasedServiceClientFactory.java │ │ │ │ │ ├── CorrelationSuggestionOperation.java │ │ │ │ │ ├── CorrelatorEvaluator.java │ │ │ │ │ ├── DefaultServiceClientImpl.java │ │ │ │ │ ├── DescriptiveItemPath.java │ │ │ │ │ ├── FocusTypeSuggestionOperation.java │ │ │ │ │ ├── KnownCorrelator.java │ │ │ │ │ ├── MappingSuggestionOperationFactory.java │ │ │ │ │ ├── MappingsSuggestionOperation.java │ │ │ │ │ ├── ObjectTypesSuggestionOperation.java │ │ │ │ │ ├── ObjectTypesSuggestionOperationFactory.java │ │ │ │ │ ├── OperationContext.java │ │ │ │ │ ├── OwnedShadowsProvider.java │ │ │ │ │ ├── OwnedShadowsProviderFromResource.java │ │ │ │ │ ├── PrismComplexTypeDefinitionSerializer.java │ │ │ │ │ ├── ResourceObjectClassSchemaSerializer.java │ │ │ │ │ ├── SchemaMatchingOperation.java │ │ │ │ │ ├── SchemaSerializer.java │ │ │ │ │ ├── SmartAssociationImpl.java │ │ │ │ │ ├── SmartIntegrationBeans.java │ │ │ │ │ ├── SmartIntegrationServiceImpl.java │ │ │ │ │ ├── StatusInfoImpl.java │ │ │ │ │ ├── SynchronizationActionsBuilder.java │ │ │ │ │ ├── SynchronizationConfigurationScenarioHandler.java │ │ │ │ │ ├── TypeOperationContext.java │ │ │ │ │ ├── activities │ │ │ │ │ ├── AssociationSuggestionWorkDefinition.java │ │ │ │ │ ├── AssociationsSuggestionActivityHandler.java │ │ │ │ │ ├── CorrelationSchemaMatchingActivityRun.java │ │ │ │ │ ├── CorrelationStatisticsComputationActivityRun.java │ │ │ │ │ ├── CorrelationSuggestionActivityHandler.java │ │ │ │ │ ├── CorrelationSuggestionRemoteServiceCallActivityRun.java │ │ │ │ │ ├── CorrelationSuggestionWorkDefinition.java │ │ │ │ │ ├── FocusTypeSuggestionActivityHandler.java │ │ │ │ │ ├── FocusTypeSuggestionWorkDefinition.java │ │ │ │ │ ├── MappingsSchemaMatchingActivityRun.java │ │ │ │ │ ├── MappingsStatisticsComputationActivityRun.java │ │ │ │ │ ├── MappingsSuggestionActivityHandler.java │ │ │ │ │ ├── MappingsSuggestionRemoteServiceCallActivityRun.java │ │ │ │ │ ├── MappingsSuggestionWorkDefinition.java │ │ │ │ │ ├── ObjectClassStatisticsComputer.java │ │ │ │ │ ├── ObjectTypeRelatedSuggestionWorkDefinition.java │ │ │ │ │ ├── ObjectTypeStatisticsComputer.java │ │ │ │ │ ├── ObjectTypesStatisticsComputationActivityRun.java │ │ │ │ │ ├── ObjectTypesSuggestFocusTypesActivityRun.java │ │ │ │ │ ├── ObjectTypesSuggestionActivityHandler.java │ │ │ │ │ ├── ObjectTypesSuggestionRemoteServiceCallActivityRun.java │ │ │ │ │ ├── ObjectTypesSuggestionWorkDefinition.java │ │ │ │ │ └── Util.java │ │ │ │ │ ├── conndev │ │ │ │ │ ├── ConnectorDevelopmentBackend.java │ │ │ │ │ ├── ConnectorDevelopmentServiceImpl.java │ │ │ │ │ ├── ConnectorManifestWriter.java │ │ │ │ │ ├── JsonHalBackend.java │ │ │ │ │ ├── OfflineBackend.java │ │ │ │ │ ├── ProcessedDocumentation.java │ │ │ │ │ ├── RestBackend.java │ │ │ │ │ ├── RestTestBackend.java │ │ │ │ │ ├── ServiceClient.java │ │ │ │ │ └── activity │ │ │ │ │ │ ├── AbstractConnDevActivityHandler.java │ │ │ │ │ │ ├── ConnDevBeans.java │ │ │ │ │ │ ├── CreateConnectorActivityHandler.java │ │ │ │ │ │ ├── DiscoverDocumentationActivityHandler.java │ │ │ │ │ │ ├── DiscoverGlobalInformationActivityHandler.java │ │ │ │ │ │ ├── DiscoverObjectClassDetailsActivityHandler.java │ │ │ │ │ │ ├── DiscoverObjectClassInformationActivityHandler.java │ │ │ │ │ │ ├── DownloadConnectorActivityHandler.java │ │ │ │ │ │ ├── GenerateConnectorArtifactActivityHandler.java │ │ │ │ │ │ └── ProcessDocumentationActivityHandler.java │ │ │ │ │ ├── correlation │ │ │ │ │ ├── CorrelatedSuggestionWithScore.java │ │ │ │ │ ├── CorrelatorSuggestion.java │ │ │ │ │ └── ExistingMapping.java │ │ │ │ │ ├── mappings │ │ │ │ │ ├── OwnedShadow.java │ │ │ │ │ └── ValuesPair.java │ │ │ │ │ └── scoring │ │ │ │ │ ├── MappingsQualityAssessor.java │ │ │ │ │ └── ObjectTypeFiltersValidator.java │ │ │ └── resources │ │ │ │ └── ctx-smart-integration.xml │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── smart │ │ │ │ └── impl │ │ │ │ ├── AbstractSmartIntegrationTest.java │ │ │ │ ├── DummyScenario.java │ │ │ │ ├── TestCorrelatorSuggestions.java │ │ │ │ ├── TestMappingsSuggestionOperation.java │ │ │ │ ├── TestObjectTypesSuggestionOperation.java │ │ │ │ ├── TestPredefinedSynchronizationReactions.java │ │ │ │ ├── TestServiceClientFactory.java │ │ │ │ └── TestSmartIntegrationServiceImpl.java │ │ │ └── resources │ │ │ ├── codegen │ │ │ └── mock │ │ │ │ └── openproject │ │ │ │ ├── auth.json │ │ │ │ ├── endpoints │ │ │ │ ├── Membership.json │ │ │ │ └── User.json │ │ │ │ ├── info.json │ │ │ │ ├── objectclasses.json │ │ │ │ └── schema │ │ │ │ ├── Membership.json │ │ │ │ ├── Project.json │ │ │ │ └── User.json │ │ │ ├── common │ │ │ ├── role-superuser.xml │ │ │ ├── system-configuration.xml │ │ │ └── user-administrator.xml │ │ │ ├── ctx-smart-integration-test-main.xml │ │ │ ├── logback-test.xml │ │ │ └── smart │ │ │ ├── correlator-evaluator │ │ │ ├── resource-dummy-for-correlator-evaluator.xml │ │ │ ├── user1.xml │ │ │ ├── user2.xml │ │ │ └── user3.xml │ │ │ ├── mappings-suggestion │ │ │ ├── resource-dummy-for-mappings-suggestion.xml │ │ │ ├── user1.xml │ │ │ ├── user2.xml │ │ │ └── user3.xml │ │ │ ├── object-types-suggestion │ │ │ ├── resource-dummy-for-object-types-suggestion.xml │ │ │ ├── user1.xml │ │ │ ├── user2.xml │ │ │ └── user3.xml │ │ │ ├── resource-dummy-for-counting-no-paging.xml │ │ │ ├── resource-dummy-for-counting-with-paging.xml │ │ │ ├── resource-dummy-for-suggest-mappings-and-correlation.xml │ │ │ ├── resource-dummy-for-suggest-object-types.xml │ │ │ ├── test-100-statistics.xml │ │ │ ├── test-110-expected-object-types.xml │ │ │ ├── test-110-expected-request.json │ │ │ ├── test-140-expected-object-types.xml │ │ │ ├── test-1xx-statistics.xml │ │ │ ├── user-alice.xml │ │ │ ├── user-bob.xml │ │ │ ├── user-jack.xml │ │ │ └── user-jim.xml │ ├── testng-integration.xml │ └── testng-unit.xml ├── workflow-api │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── evolveum │ │ └── midpoint │ │ └── wf │ │ └── api │ │ ├── ApprovalsManager.java │ │ └── ChangesByState.java └── workflow-impl │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── wf │ │ │ │ └── impl │ │ │ │ ├── ApprovalBeans.java │ │ │ │ ├── ApprovalSchemaExecutionInformationHelper.java │ │ │ │ ├── ApprovalsAuditingExtension.java │ │ │ │ ├── ApprovalsCaseEngineExtension.java │ │ │ │ ├── ApprovalsManagerImpl.java │ │ │ │ ├── WfConfiguration.java │ │ │ │ ├── execution │ │ │ │ ├── CaseOperationExecutionTaskHandler.java │ │ │ │ ├── ExecutionHelper.java │ │ │ │ └── LensContextHelper.java │ │ │ │ ├── hook │ │ │ │ └── WfHook.java │ │ │ │ ├── processes │ │ │ │ ├── common │ │ │ │ │ ├── ExpressionEvaluationHelper.java │ │ │ │ │ └── StageComputeHelper.java │ │ │ │ └── itemApproval │ │ │ │ │ ├── ApprovalSchemaHelper.java │ │ │ │ │ ├── ReferenceResolver.java │ │ │ │ │ └── RelationResolver.java │ │ │ │ ├── processors │ │ │ │ ├── ChangeProcessor.java │ │ │ │ ├── ConfigurationHelper.java │ │ │ │ ├── ModelHelper.java │ │ │ │ ├── ModelInvocationContext.java │ │ │ │ ├── StartInstruction.java │ │ │ │ └── primary │ │ │ │ │ ├── ApprovalMetadataHelper.java │ │ │ │ │ ├── PcpGeneralHelper.java │ │ │ │ │ ├── PcpStartInstruction.java │ │ │ │ │ ├── PrimaryChangeProcessor.java │ │ │ │ │ ├── aspect │ │ │ │ │ ├── BasePrimaryChangeAspect.java │ │ │ │ │ ├── PrimaryChangeAspect.java │ │ │ │ │ └── PrimaryChangeAspectHelper.java │ │ │ │ │ ├── cases │ │ │ │ │ ├── AbstractCaseStageProcessing.java │ │ │ │ │ ├── ApprovalStageOpeningResultImpl.java │ │ │ │ │ ├── CaseClosing.java │ │ │ │ │ ├── CaseStageClosing.java │ │ │ │ │ ├── CaseStageOpening.java │ │ │ │ │ ├── StageClosingResultImpl.java │ │ │ │ │ ├── WorkItemCompletion.java │ │ │ │ │ ├── WorkItemCompletionResultImpl.java │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── entitlements │ │ │ │ │ └── AddAssociationAspect.java │ │ │ │ │ └── policy │ │ │ │ │ ├── ApprovalSchemaBuilder.java │ │ │ │ │ ├── AssignmentPolicyAspectPart.java │ │ │ │ │ ├── ObjectPolicyAspectPart.java │ │ │ │ │ ├── PolicyRuleBasedAspect.java │ │ │ │ │ └── ProcessSpecifications.java │ │ │ │ └── util │ │ │ │ ├── ChangesSorter.java │ │ │ │ ├── ComputationResult.java │ │ │ │ └── MiscHelper.java │ │ └── resources │ │ │ └── ctx-workflow.xml │ └── test │ │ ├── java │ │ └── com │ │ │ └── evolveum │ │ │ └── midpoint │ │ │ └── wf │ │ │ └── impl │ │ │ ├── AbstractWfTest.java │ │ │ ├── AbstractWfTestPolicy.java │ │ │ ├── ApprovalInstruction.java │ │ │ ├── ExpectedTask.java │ │ │ ├── ExpectedWorkItem.java │ │ │ ├── WfTestHelper.java │ │ │ ├── WfTestUtil.java │ │ │ ├── WorkflowResult.java │ │ │ ├── assignments │ │ │ ├── AbstractTestAssignmentApproval.java │ │ │ ├── TestAssignmentApprovalGlobal.java │ │ │ ├── TestAssignmentApprovalMetaroleExplicit.java │ │ │ ├── TestAssignmentApprovalPlainImplicit.java │ │ │ └── TestAssignmentsAdvanced.java │ │ │ ├── association │ │ │ └── TestAddAssociation.java │ │ │ ├── objects │ │ │ ├── AbstractTestObjectLifecycleApproval.java │ │ │ ├── TestObjectLifecycleAdvanced.java │ │ │ ├── TestObjectLifecycleApprovalGlobal.java │ │ │ └── TestObjectLifecycleApprovalPlain.java │ │ │ └── other │ │ │ ├── ManualResourceTest.java │ │ │ ├── TestApprovalTaskOwner.java │ │ │ ├── TestDelegation.java │ │ │ ├── TestEscalation.java │ │ │ ├── TestEvents.java │ │ │ ├── TestMiscellaneous.java │ │ │ ├── TestParallelApprovals.java │ │ │ ├── TestPreview.java │ │ │ ├── TestSequence.java │ │ │ └── TestSoD.java │ │ └── resources │ │ ├── approval-task-owner │ │ ├── metarole-approve-manager.xml │ │ ├── role-approver.xml │ │ ├── role-duelling-classroom-teacher.xml │ │ └── user-manager.xml │ │ ├── assignments-advanced │ │ ├── metarole-administrator-approval-idempotent.xml │ │ ├── metarole-administrator-approval.xml │ │ ├── metarole-default.xml │ │ ├── metarole-security.xml │ │ ├── metarole-selective-approval.xml │ │ ├── org-leads2122.xml │ │ ├── role-approve-unassign.xml │ │ ├── role-autocomplete.xml │ │ ├── role-being-disabled-with-approval.xml │ │ ├── role-being-disabled.xml │ │ ├── role-being-enabled.xml │ │ ├── role-extension-property-mod-approval.xml │ │ ├── role-idempotent.xml │ │ ├── role-role21-standard.xml │ │ ├── role-role22-special.xml │ │ ├── role-role23-special-and-security.xml │ │ ├── role-role24-approval-and-enforce.xml │ │ ├── role-role25-very-complex-approval.xml │ │ ├── role-role26-no-approvers.xml │ │ ├── role-role27-modifications-and.xml │ │ ├── role-role28-modifications-or.xml │ │ ├── role-role29-modifications-no-items.xml │ │ ├── role-selective-a.xml │ │ ├── role-selective-b.xml │ │ ├── role-skipped.xml │ │ ├── role-with-idempotent-metarole.xml │ │ ├── user-approver-of-role-being-enabled-and-disabled.xml │ │ ├── user-holder-of-role-being-disabled-with-approval.xml │ │ ├── user-holder-of-role-being-disabled.xml │ │ ├── user-holder-of-role-being-enabled.xml │ │ ├── user-lead21.xml │ │ ├── user-lead22.xml │ │ ├── user-lead23.xml │ │ ├── user-lead24.xml │ │ ├── user-security-approver-deputy-limited.xml │ │ ├── user-security-approver-deputy.xml │ │ └── user-security-approver.xml │ │ ├── assignments │ │ ├── metarole-default.xml │ │ ├── role-auto-assigned.xml │ │ ├── role-role1.xml │ │ ├── role-role10.xml │ │ ├── role-role10b.xml │ │ ├── role-role15.xml │ │ ├── role-role1b.xml │ │ ├── role-role2.xml │ │ ├── role-role2b.xml │ │ ├── role-role3.xml │ │ ├── role-role3b.xml │ │ ├── role-role4.xml │ │ ├── role-role4b.xml │ │ ├── system-configuration-global.xml │ │ ├── user-draft.xml │ │ ├── user-jack-deputy.xml │ │ ├── user-lead1-deputy1.xml │ │ ├── user-lead1-deputy2.xml │ │ ├── user-lead1.xml │ │ ├── user-lead10.xml │ │ ├── user-lead15.xml │ │ ├── user-lead2.xml │ │ └── user-lead3.xml │ │ ├── association │ │ ├── req-add-entitlement-guests.xml │ │ ├── req-add-entitlement-testers.xml │ │ ├── resource-dummy.xml │ │ ├── shadow-elisabeth-dummy.xml │ │ ├── shadow-guests-dummy.xml │ │ ├── shadow-jack-dummy.xml │ │ ├── shadow-testers-dummy.xml │ │ ├── system-configuration.xml │ │ ├── user-dummy-boss.xml │ │ └── user-elisabeth.xml │ │ ├── common │ │ ├── 023-archetype-manual-provisioning-case.xml │ │ ├── 024-archetype-operation-request.xml │ │ ├── 025-archetype-approval-case.xml │ │ ├── 041-role-approver.xml │ │ ├── role-superuser.xml │ │ ├── system-configuration.xml │ │ ├── task-trigger-scanner.xml │ │ ├── user-administrator.xml │ │ └── user-jack.xml │ │ ├── ctx-workflow-test-main.xml │ │ ├── delegation │ │ ├── role-prince.xml │ │ ├── user-girth.xml │ │ ├── user-keen.xml │ │ └── user-longshanks.xml │ │ ├── escalation │ │ ├── metarole-escalated.xml │ │ ├── role-e1.xml │ │ ├── role-e2.xml │ │ ├── role-timed-reject.xml │ │ ├── user-bob.xml │ │ └── user-bobek.xml │ │ ├── events │ │ └── role-no-approvers.xml │ │ ├── logback-test.xml │ │ ├── manual │ │ ├── resource-manual.xml │ │ ├── role-one-manual.xml │ │ └── system-configuration.xml │ │ ├── miscellaneous │ │ ├── metarole-approve-unassign.xml │ │ ├── metarole-prize.xml │ │ ├── org-approvers.xml │ │ ├── role-accountant.xml │ │ ├── role-approve-with-skip-last-stage.xml │ │ ├── role-approved-by-multiple-relations.xml │ │ ├── role-approved-by-org.xml │ │ ├── role-assigning-captain.xml │ │ ├── role-autocompletions.xml │ │ ├── role-bronze.xml │ │ ├── role-captain.xml │ │ ├── role-gold.xml │ │ ├── role-sailor.xml │ │ ├── role-silver.xml │ │ ├── role-test370.xml │ │ ├── role-test380.xml │ │ ├── role-vault-access.xml │ │ ├── task-cleanup.xml │ │ ├── template-assigning-captain-after.xml │ │ ├── template-assigning-captain.xml │ │ ├── user-approver-by-multiple-relations.xml │ │ ├── user-gizmoduck.xml │ │ ├── user-launchpad.xml │ │ ├── user-scott.xml │ │ ├── user-scrooge.xml │ │ ├── user-test370.xml │ │ └── user-test380.xml │ │ ├── objects-advanced │ │ ├── metarole-constraints.xml │ │ ├── role-employee.xml │ │ ├── system-configuration.xml │ │ └── user-employee-owner.xml │ │ ├── objects │ │ ├── global-policy-rules.xml │ │ ├── user-bob.xml │ │ ├── user-judge-owner.xml │ │ ├── user-jupiter.xml │ │ ├── user-peter.xml │ │ └── user-pirate-owner.xml │ │ ├── parallel │ │ ├── role-role50a-slow.xml │ │ ├── role-role51a-slow.xml │ │ ├── role-role52a-slow.xml │ │ ├── role-role53a-slow.xml │ │ ├── user-bob.xml │ │ └── user-chuck.xml │ │ ├── preview │ │ ├── role-lab-manager.xml │ │ ├── user-alice.xml │ │ ├── user-jane-the-lab-owner.xml │ │ ├── user-kate-the-administrator.xml │ │ ├── user-martin-the-dept-head.xml │ │ └── user-peter-the-dean.xml │ │ ├── schema │ │ └── piracy.xsd │ │ ├── sequence │ │ ├── sequence-user-name.xml │ │ ├── system-configuration.xml │ │ └── template-user.xml │ │ ├── sod │ │ ├── metarole-criminal-exclusion.xml │ │ ├── role-coordinator.xml │ │ ├── role-fire.xml │ │ ├── role-judge.xml │ │ ├── role-oil.xml │ │ ├── role-pirate.xml │ │ ├── role-respectable.xml │ │ ├── role-thief.xml │ │ ├── role-water.xml │ │ ├── role-worker-1.xml │ │ ├── role-worker-2.xml │ │ └── user-sod-approver.xml │ │ └── test-config.xml │ ├── testng-integration.xml │ └── testng-unit.xml ├── pom.xml ├── provisioning ├── pom.xml ├── provisioning-api │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── evolveum │ │ └── midpoint │ │ └── provisioning │ │ └── api │ │ ├── AsyncUpdateEvent.java │ │ ├── AsyncUpdateEventHandler.java │ │ ├── ConstraintViolationConfirmer.java │ │ ├── ConstraintsCheckingResult.java │ │ ├── DiscoveredConfiguration.java │ │ ├── EventDispatcher.java │ │ ├── ExternalResourceEvent.java │ │ ├── ExternalResourceEventListener.java │ │ ├── GenericConnectorException.java │ │ ├── ItemComparisonResult.java │ │ ├── LiveSyncEvent.java │ │ ├── LiveSyncEventHandler.java │ │ ├── LiveSyncOptions.java │ │ ├── LiveSyncToken.java │ │ ├── LiveSyncTokenStorage.java │ │ ├── ProvisioningEvent.java │ │ ├── ProvisioningListener.java │ │ ├── ProvisioningOperationContext.java │ │ ├── ProvisioningOperationOptions.java │ │ ├── ProvisioningService.java │ │ ├── ResourceObjectChangeListener.java │ │ ├── ResourceObjectClassification.java │ │ ├── ResourceObjectShadowChangeDescription.java │ │ ├── ResourceOperationDescription.java │ │ ├── ResourceOperationListener.java │ │ ├── ResourceTestOptions.java │ │ ├── ShadowDeathEvent.java │ │ ├── ShadowDeathListener.java │ │ ├── ShadowLivenessState.java │ │ ├── ShadowSimulationData.java │ │ ├── SynchronizationEvent.java │ │ ├── SynchronizationEventHandler.java │ │ ├── SynchronizationProcessManager.java │ │ ├── SynchronizationResult.java │ │ └── SynchronizationSorterEvaluator.java ├── provisioning-impl │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── evolveum │ │ │ │ │ └── midpoint │ │ │ │ │ └── provisioning │ │ │ │ │ ├── impl │ │ │ │ │ ├── AlreadyInitializedObject.java │ │ │ │ │ ├── CommonBeans.java │ │ │ │ │ ├── EventDispatcherImpl.java │ │ │ │ │ ├── ExternalResourceEventListenerImpl.java │ │ │ │ │ ├── LazilyInitializableMixin.java │ │ │ │ │ ├── NullSynchronizationSorterEvaluatorImpl.java │ │ │ │ │ ├── ProvisioningContext.java │ │ │ │ │ ├── ProvisioningContextFactory.java │ │ │ │ │ ├── ProvisioningServiceImpl.java │ │ │ │ │ ├── RepoShadow.java │ │ │ │ │ ├── RepoShadowModifications.java │ │ │ │ │ ├── ResourceObjectFuturizer.java │ │ │ │ │ ├── ResourceObjectOperations.java │ │ │ │ │ ├── Shadow.java │ │ │ │ │ ├── ShadowLifecycleStateDeterminer.java │ │ │ │ │ ├── ShadowMarksComputerConfiguration.java │ │ │ │ │ ├── TokenUtil.java │ │ │ │ │ ├── operations │ │ │ │ │ │ ├── OperationsHelper.java │ │ │ │ │ │ ├── ProvisioningGetOperation.java │ │ │ │ │ │ └── ProvisioningSearchLikeOperation.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ ├── resourceobjects │ │ │ │ │ │ ├── AbstractLazilyInitializableResourceEntity.java │ │ │ │ │ │ ├── AbstractResourceObjectRetrievalOperation.java │ │ │ │ │ │ ├── ActivationConverter.java │ │ │ │ │ │ ├── BehaviorConverter.java │ │ │ │ │ │ ├── CompleteResourceObject.java │ │ │ │ │ │ ├── DelineationProcessor.java │ │ │ │ │ │ ├── EntitlementConverter.java │ │ │ │ │ │ ├── EntitlementObjectSearch.java │ │ │ │ │ │ ├── EntitlementReader.java │ │ │ │ │ │ ├── EntitlementUtils.java │ │ │ │ │ │ ├── ExistingResourceObjectShadow.java │ │ │ │ │ │ ├── ExternalResourceObjectChange.java │ │ │ │ │ │ ├── FakeIdentifierGenerator.java │ │ │ │ │ │ ├── QueryWithConstraints.java │ │ │ │ │ │ ├── ResourceObjectAddOperation.java │ │ │ │ │ │ ├── ResourceObjectAddReturnValue.java │ │ │ │ │ │ ├── ResourceObjectAsyncChange.java │ │ │ │ │ │ ├── ResourceObjectAsyncChangeListener.java │ │ │ │ │ │ ├── ResourceObjectChange.java │ │ │ │ │ │ ├── ResourceObjectCompleter.java │ │ │ │ │ │ ├── ResourceObjectConverter.java │ │ │ │ │ │ ├── ResourceObjectCountOperation.java │ │ │ │ │ │ ├── ResourceObjectDeleteOperation.java │ │ │ │ │ │ ├── ResourceObjectDeleteResult.java │ │ │ │ │ │ ├── ResourceObjectDiscriminator.java │ │ │ │ │ │ ├── ResourceObjectFetchOperation.java │ │ │ │ │ │ ├── ResourceObjectFound.java │ │ │ │ │ │ ├── ResourceObjectHandler.java │ │ │ │ │ │ ├── ResourceObjectLiveSyncChange.java │ │ │ │ │ │ ├── ResourceObjectLiveSyncChangeListener.java │ │ │ │ │ │ ├── ResourceObjectLocateOperation.java │ │ │ │ │ │ ├── ResourceObjectModifyOperation.java │ │ │ │ │ │ ├── ResourceObjectModifyReturnValue.java │ │ │ │ │ │ ├── ResourceObjectOperationResult.java │ │ │ │ │ │ ├── ResourceObjectOperationReturnValue.java │ │ │ │ │ │ ├── ResourceObjectProvisioningOperation.java │ │ │ │ │ │ ├── ResourceObjectReferenceResolver.java │ │ │ │ │ │ ├── ResourceObjectSearchOperation.java │ │ │ │ │ │ ├── ResourceObjectShadow.java │ │ │ │ │ │ ├── ResourceObjectUcfModifyOperation.java │ │ │ │ │ │ ├── ResourceObjectsBeans.java │ │ │ │ │ │ ├── ShadowAuditHelper.java │ │ │ │ │ │ ├── TwoStateRealToSimulatedConverter.java │ │ │ │ │ │ └── TwoStateSimulatedToRealConverter.java │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── ConfiguredConnectorCacheKey.java │ │ │ │ │ │ ├── ConfiguredConnectorInstanceEntry.java │ │ │ │ │ │ ├── ConnectorManager.java │ │ │ │ │ │ ├── ConnectorSpec.java │ │ │ │ │ │ ├── ConnectorWithSchema.java │ │ │ │ │ │ ├── NativeConnectorsCapabilities.java │ │ │ │ │ │ ├── ResourceCache.java │ │ │ │ │ │ ├── ResourceCapabilitiesHelper.java │ │ │ │ │ │ ├── ResourceCompletionOperation.java │ │ │ │ │ │ ├── ResourceConnectorsManager.java │ │ │ │ │ │ ├── ResourceExpansionOperation.java │ │ │ │ │ │ ├── ResourceManager.java │ │ │ │ │ │ ├── ResourceOperationalStateManager.java │ │ │ │ │ │ ├── ResourceSchemaHelper.java │ │ │ │ │ │ ├── ResourceTestOperation.java │ │ │ │ │ │ ├── ResourceUpdater.java │ │ │ │ │ │ └── SchemaFetcher.java │ │ │ │ │ └── shadows │ │ │ │ │ │ ├── AbstractLazilyInitializableShadowedEntity.java │ │ │ │ │ │ ├── AccessChecker.java │ │ │ │ │ │ ├── AssociationsHelper.java │ │ │ │ │ │ ├── ClassificationHelper.java │ │ │ │ │ │ ├── ConstraintsChecker.java │ │ │ │ │ │ ├── DefinitionsHelper.java │ │ │ │ │ │ ├── PendingOperation.java │ │ │ │ │ │ ├── PendingOperations.java │ │ │ │ │ │ ├── ProvisioningOperationState.java │ │ │ │ │ │ ├── RepoShadowWithState.java │ │ │ │ │ │ ├── ReturnedShadowValidityChecker.java │ │ │ │ │ │ ├── ShadowAcquisition.java │ │ │ │ │ │ ├── ShadowAddOperation.java │ │ │ │ │ │ ├── ShadowCompareHelper.java │ │ │ │ │ │ ├── ShadowDeleteOperation.java │ │ │ │ │ │ ├── ShadowGetOperation.java │ │ │ │ │ │ ├── ShadowModifyOperation.java │ │ │ │ │ │ ├── ShadowOperationPropagationHelper.java │ │ │ │ │ │ ├── ShadowPostProcessor.java │ │ │ │ │ │ ├── ShadowProvisioningOperation.java │ │ │ │ │ │ ├── ShadowRefreshOperation.java │ │ │ │ │ │ ├── ShadowSearchLikeOperation.java │ │ │ │ │ │ ├── ShadowedAsyncChange.java │ │ │ │ │ │ ├── ShadowedChange.java │ │ │ │ │ │ ├── ShadowedExternalChange.java │ │ │ │ │ │ ├── ShadowedLiveSyncChange.java │ │ │ │ │ │ ├── ShadowedObjectConstruction.java │ │ │ │ │ │ ├── ShadowedObjectFound.java │ │ │ │ │ │ ├── ShadowsFacade.java │ │ │ │ │ │ ├── ShadowsLocalBeans.java │ │ │ │ │ │ ├── ShadowsUtil.java │ │ │ │ │ │ ├── classification │ │ │ │ │ │ ├── ClassificationContext.java │ │ │ │ │ │ ├── DelineationMatcher.java │ │ │ │ │ │ ├── ResourceObjectClassifier.java │ │ │ │ │ │ └── ShadowTagGenerator.java │ │ │ │ │ │ ├── errors │ │ │ │ │ │ ├── CommunicationExceptionHandler.java │ │ │ │ │ │ ├── ConfigurationExceptionHandler.java │ │ │ │ │ │ ├── ErrorHandler.java │ │ │ │ │ │ ├── ErrorHandlerLocator.java │ │ │ │ │ │ ├── GenericErrorHandler.java │ │ │ │ │ │ ├── HardErrorHandler.java │ │ │ │ │ │ ├── MaintenanceExceptionHandler.java │ │ │ │ │ │ ├── ObjectAlreadyExistHandler.java │ │ │ │ │ │ ├── ObjectNotFoundHandler.java │ │ │ │ │ │ ├── PolicyViolationHandler.java │ │ │ │ │ │ ├── SchemaExceptionHandler.java │ │ │ │ │ │ └── SecurityViolationHandler.java │ │ │ │ │ │ ├── manager │ │ │ │ │ │ ├── MetadataUtil.java │ │ │ │ │ │ ├── OperationResultRecorder.java │ │ │ │ │ │ ├── PendingOperationsHelper.java │ │ │ │ │ │ ├── ShadowComputerUtil.java │ │ │ │ │ │ ├── ShadowCreator.java │ │ │ │ │ │ ├── ShadowDeltaComputerAbsolute.java │ │ │ │ │ │ ├── ShadowDeltaComputerRelative.java │ │ │ │ │ │ ├── ShadowFinder.java │ │ │ │ │ │ ├── ShadowManagerMiscUtil.java │ │ │ │ │ │ ├── ShadowObjectComputer.java │ │ │ │ │ │ ├── ShadowUpdater.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ ├── sync │ │ │ │ │ │ ├── AsyncUpdateEventImpl.java │ │ │ │ │ │ ├── AsyncUpdater.java │ │ │ │ │ │ ├── CountingEventsAcknowledgeGate.java │ │ │ │ │ │ ├── IndividualEventsAcknowledgeGate.java │ │ │ │ │ │ ├── LiveSyncEventImpl.java │ │ │ │ │ │ ├── LiveSynchronizer.java │ │ │ │ │ │ ├── NotApplicableException.java │ │ │ │ │ │ ├── OldestTokenWatcher.java │ │ │ │ │ │ ├── SynchronizationEventImpl.java │ │ │ │ │ │ ├── SynchronizationOperationResult.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ └── task │ │ │ │ │ │ ├── MultiPropagationActivityHandler.java │ │ │ │ │ │ ├── MultiPropagationActivityRun.java │ │ │ │ │ │ ├── MultiPropagationWorkDefinition.java │ │ │ │ │ │ ├── PropagationActivityHandler.java │ │ │ │ │ │ ├── PropagationActivityRun.java │ │ │ │ │ │ └── PropagationWorkDefinition.java │ │ │ │ │ └── util │ │ │ │ │ ├── DefinitionsUtil.java │ │ │ │ │ ├── ErrorState.java │ │ │ │ │ ├── InitializationState.java │ │ │ │ │ ├── ProvisioningUtil.java │ │ │ │ │ ├── ShadowItemsToReturnProvider.java │ │ │ │ │ └── UcfExpressionEvaluatorImpl.java │ │ │ └── resources │ │ │ │ └── ctx-provisioning.xml │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── provisioning │ │ │ │ └── impl │ │ │ │ ├── AbstractProvisioningIntegrationTest.java │ │ │ │ ├── DummyTokenStorageImpl.java │ │ │ │ ├── MockAsyncUpdateTaskHandler.java │ │ │ │ ├── MockLiveSyncTaskHandler.java │ │ │ │ ├── ProvisioningTestUtil.java │ │ │ │ ├── TestConnectorDiscovery.java │ │ │ │ ├── TestConnectorManager.java │ │ │ │ ├── TestDBTable.java │ │ │ │ ├── TestDummyFoundAgain.java │ │ │ │ ├── async │ │ │ │ ├── provisioning │ │ │ │ │ ├── MockAsyncProvisioningTarget.java │ │ │ │ │ ├── TestAsyncProvisioning.java │ │ │ │ │ ├── TestAsyncProvisioningArtemis.java │ │ │ │ │ ├── TestAsyncProvisioningArtemisCore.java │ │ │ │ │ ├── TestAsyncProvisioningArtemisJms.java │ │ │ │ │ ├── TestAsyncProvisioningArtemisPending.java │ │ │ │ │ ├── TestAsyncProvisioningMock.java │ │ │ │ │ ├── TestAsyncProvisioningMockConfirmationsQualified.java │ │ │ │ │ ├── TestAsyncProvisioningMockFullData.java │ │ │ │ │ └── TestAsyncProvisioningMockPlain.java │ │ │ │ └── update │ │ │ │ │ ├── MockAsyncUpdateSource.java │ │ │ │ │ ├── TestAsyncUpdate.java │ │ │ │ │ ├── TestAsyncUpdateCaching.java │ │ │ │ │ ├── TestAsyncUpdateCachingAmqp.java │ │ │ │ │ ├── TestAsyncUpdateCachingIndexOnly.java │ │ │ │ │ └── TestAsyncUpdateNoCaching.java │ │ │ │ ├── csv │ │ │ │ ├── AbstractCsvTest.java │ │ │ │ ├── TestCsvBroken.java │ │ │ │ ├── TestCsvGuid.java │ │ │ │ └── TestCsvUsername.java │ │ │ │ ├── dummy │ │ │ │ ├── AbstractBasicDummyTest.java │ │ │ │ ├── AbstractDummyTest.java │ │ │ │ ├── TestCapabilityBehavior.java │ │ │ │ ├── TestDummy.java │ │ │ │ ├── TestDummyCaching.java │ │ │ │ ├── TestDummyCachingExtra.java │ │ │ │ ├── TestDummyCachingIndexOnly.java │ │ │ │ ├── TestDummyCachingPartial.java │ │ │ │ ├── TestDummyCaseIgnore.java │ │ │ │ ├── TestDummyCaseIgnoreUpcaseName.java │ │ │ │ ├── TestDummyComplexAssociations.java │ │ │ │ ├── TestDummyComplexAttributes.java │ │ │ │ ├── TestDummyConsistency.java │ │ │ │ ├── TestDummyConsistencyReaper.java │ │ │ │ ├── TestDummyConsistencyRecordingAll.java │ │ │ │ ├── TestDummyExpression.java │ │ │ │ ├── TestDummyExtra.java │ │ │ │ ├── TestDummyHacks.java │ │ │ │ ├── TestDummyIncomplete.java │ │ │ │ ├── TestDummyIntents.java │ │ │ │ ├── TestDummyLegacy.java │ │ │ │ ├── TestDummyLegacyUpdate.java │ │ │ │ ├── TestDummyLimited.java │ │ │ │ ├── TestDummyMisc.java │ │ │ │ ├── TestDummyNativeAssociations.java │ │ │ │ ├── TestDummyNegative.java │ │ │ │ ├── TestDummyParallelism.java │ │ │ │ ├── TestDummyPasswordCaching.java │ │ │ │ ├── TestDummyPrioritiesAndReadReplace.java │ │ │ │ ├── TestDummyPrioritiesAndReadReplaceLegacyUpdate.java │ │ │ │ ├── TestDummyReadReplaceForAll.java │ │ │ │ ├── TestDummyResourceAndSchemaCaching.java │ │ │ │ ├── TestDummySchemaless.java │ │ │ │ ├── TestDummySecurity.java │ │ │ │ ├── TestDummyShadowMarks.java │ │ │ │ ├── TestDummyUltraLegacyUpdate.java │ │ │ │ ├── TestDummyUuid.java │ │ │ │ ├── TestDummyUuidNonUniqueName.java │ │ │ │ └── TestDummyVolatility.java │ │ │ │ ├── manual │ │ │ │ ├── AbstractManualResourceTest.java │ │ │ │ ├── TestManual.java │ │ │ │ └── TestSemiManual.java │ │ │ │ ├── misc │ │ │ │ ├── TestResourceLifecycle.java │ │ │ │ └── TestShadowCachingSupport.java │ │ │ │ ├── mock │ │ │ │ ├── ResourceObjectShadowChangeDescriptionAsserter.java │ │ │ │ ├── SimulationResultMock.java │ │ │ │ ├── SimulationTransactionMock.java │ │ │ │ └── SynchronizationServiceMock.java │ │ │ │ ├── opendj │ │ │ │ ├── AbstractOpenDjAssociationsTest.java │ │ │ │ ├── AbstractOpenDjSimulatedAssociationsTest.java │ │ │ │ ├── AbstractOpenDjTest.java │ │ │ │ ├── TestOpenDj.java │ │ │ │ ├── TestOpenDjAssociationsLegacySimulated.java │ │ │ │ ├── TestOpenDjAssociationsModernSimulated.java │ │ │ │ ├── TestOpenDjAssociationsNative.java │ │ │ │ ├── TestOpenDjDiscovery.java │ │ │ │ ├── TestOpenDjDumber.java │ │ │ │ ├── TestOpenDjIncompletePassword.java │ │ │ │ ├── TestOpenDjMisc.java │ │ │ │ ├── TestOpenDjNativeReferences.java │ │ │ │ ├── TestOpenDjNegative.java │ │ │ │ ├── TestOpenDjObjectTypes.java │ │ │ │ ├── TestOpenDjReadablePassword.java │ │ │ │ └── TestSynchronization.java │ │ │ │ └── resources │ │ │ │ └── TestResourceTemplateMerge.java │ │ │ ├── resources │ │ │ ├── async │ │ │ │ ├── provisioning │ │ │ │ │ ├── resource-async-provisioning-artemis-core.xml │ │ │ │ │ ├── resource-async-provisioning-artemis-jms.xml │ │ │ │ │ ├── resource-async-provisioning-mock-confirmation.xml │ │ │ │ │ ├── resource-async-provisioning-mock-full-data.xml │ │ │ │ │ ├── resource-async-provisioning-mock-plain.xml │ │ │ │ │ └── task-propagation-multi.xml │ │ │ │ └── update │ │ │ │ │ ├── change-100-banderson-first-occurrence.xml │ │ │ │ │ ├── change-110-banderson-delta-add-values.xml │ │ │ │ │ ├── change-112-banderson-delta-add-more-values.xml │ │ │ │ │ ├── change-115-banderson-delta-delete-values.xml │ │ │ │ │ ├── change-117-banderson-delta-replace-values.xml │ │ │ │ │ ├── change-120-banderson-new-state.xml │ │ │ │ │ ├── change-125-banderson-notification-only.xml │ │ │ │ │ ├── change-130-banderson-delete.xml │ │ │ │ │ ├── resource-async-caching-amqp.xml │ │ │ │ │ ├── resource-async-caching-index-only.xml │ │ │ │ │ ├── resource-async-caching.xml │ │ │ │ │ └── resource-async-no-caching.xml │ │ │ ├── broker.xml │ │ │ ├── common │ │ │ │ ├── admin.xml │ │ │ │ ├── dot.jpg │ │ │ │ └── role-superuser.xml │ │ │ ├── csv │ │ │ │ ├── account-jack-guid.xml │ │ │ │ ├── account-jack-username.xml │ │ │ │ ├── midpoint-guid.csv │ │ │ │ ├── midpoint-username.csv │ │ │ │ ├── resource-csv-broken.xml │ │ │ │ ├── resource-csv-guid.xml │ │ │ │ └── resource-csv-username.xml │ │ │ ├── ctx-provisioning-test-main.xml │ │ │ ├── ctx-provisioning-test-no-repo.xml │ │ │ ├── ctx-provisioning-test.xml │ │ │ ├── db │ │ │ │ ├── account-derby.xml │ │ │ │ └── resource-derby.xml │ │ │ ├── dummy │ │ │ │ ├── account-daemon.xml │ │ │ │ ├── account-elaine-resource-not-found.xml │ │ │ │ ├── account-elizabeth.xml │ │ │ │ ├── account-lechuck.xml │ │ │ │ ├── account-morgan.xml │ │ │ │ ├── account-relic.xml │ │ │ │ ├── account-script.xml │ │ │ │ ├── account-wally.xml │ │ │ │ ├── account-will.xml │ │ │ │ ├── capability │ │ │ │ │ ├── resource-dummy-behavior-native-simulated.xml │ │ │ │ │ ├── resource-dummy-behavior-native.xml │ │ │ │ │ ├── resource-dummy-behavior-none.xml │ │ │ │ │ ├── resource-dummy-behavior-simulated-format.xml │ │ │ │ │ └── resource-dummy-behavior-simulated.xml │ │ │ │ ├── consistency │ │ │ │ │ ├── account-late.xml │ │ │ │ │ ├── account-shadow-murray-pending-operation.xml │ │ │ │ │ ├── resource-dummy-retry-reaper.xml │ │ │ │ │ ├── resource-dummy-retry-recording-all.xml │ │ │ │ │ └── resource-dummy-retry.xml │ │ │ │ ├── dummy-caching-extra │ │ │ │ │ ├── resource-dummy-cached-all.xml │ │ │ │ │ └── resource-dummy-default-caching.xml │ │ │ │ ├── dummy-caching │ │ │ │ │ ├── resource-dummy-index-only.xml │ │ │ │ │ ├── resource-dummy-partial.xml │ │ │ │ │ └── resource-dummy.xml │ │ │ │ ├── dummy-case-ignore-upcase-name │ │ │ │ │ └── resource-dummy.xml │ │ │ │ ├── dummy-case-ignore │ │ │ │ │ └── resource-dummy.xml │ │ │ │ ├── dummy-expression │ │ │ │ │ └── resource-dummy.xml │ │ │ │ ├── dummy-extra │ │ │ │ │ └── resource-dummy.xml │ │ │ │ ├── dummy-hacks │ │ │ │ │ ├── connector-dummy.xml │ │ │ │ │ └── resource-dummy.xml │ │ │ │ ├── dummy-incomplete │ │ │ │ │ └── resource-dummy.xml │ │ │ │ ├── dummy-intents │ │ │ │ │ ├── resource-associations.xml │ │ │ │ │ ├── resource-no-default-account-fixed.xml │ │ │ │ │ ├── resource-no-default-account.xml │ │ │ │ │ └── resource-with-default-account.xml │ │ │ │ ├── dummy-legacy │ │ │ │ │ ├── resource-dummy-legacy.xml │ │ │ │ │ └── resource-dummy-native.xml │ │ │ │ ├── dummy-limited │ │ │ │ │ ├── account-will.xml │ │ │ │ │ └── resource-dummy.xml │ │ │ │ ├── dummy-parallelism │ │ │ │ │ └── resource-dummy.xml │ │ │ │ ├── dummy-password-caching │ │ │ │ │ ├── resource-dummy-template.xml │ │ │ │ │ └── security-policy-hashing.xml │ │ │ │ ├── dummy-priorities-read-replace │ │ │ │ │ ├── resource-dummy-all-read-replace.xml │ │ │ │ │ ├── resource-dummy-legacy-update.xml │ │ │ │ │ └── resource-dummy.xml │ │ │ │ ├── dummy-schemaless │ │ │ │ │ ├── account-will.xml │ │ │ │ │ ├── resource-dummy-schemaless-no-schema.xml │ │ │ │ │ └── resource-dummy-schemaless-static-schema.xml │ │ │ │ ├── dummy-uuid-nonunique-name │ │ │ │ │ ├── account-alfredo-fettucini.xml │ │ │ │ │ ├── account-bill-fettucini.xml │ │ │ │ │ └── resource-dummy.xml │ │ │ │ ├── dummy-uuid │ │ │ │ │ └── resource-dummy.xml │ │ │ │ ├── dummy-volatility │ │ │ │ │ └── resource-dummy.xml │ │ │ │ ├── group-pirates.xml │ │ │ │ ├── misc │ │ │ │ │ ├── resource-dummy-attributes-to-get.xml │ │ │ │ │ ├── resource-dummy-many-associated-intents.xml │ │ │ │ │ └── system-configuration.xml │ │ │ │ ├── modify-will-fullname.xml │ │ │ │ ├── privilege-bargain.xml │ │ │ │ ├── privilege-pillage.xml │ │ │ │ ├── resource-dummy-address-book.xml │ │ │ │ ├── resource-dummy-broken-accounts-external-uid.xml │ │ │ │ ├── resource-dummy-broken-accounts.xml │ │ │ │ ├── resource-dummy-broken-attribute-def.xml │ │ │ │ ├── resource-dummy-hr.xml │ │ │ │ ├── resource-dummy-legacy-update.xml │ │ │ │ ├── resource-dummy-native-associations.xml │ │ │ │ ├── resource-dummy-shadow-marks.xml │ │ │ │ ├── resource-dummy-ultra-legacy-update.xml │ │ │ │ ├── resource-dummy.xml │ │ │ │ ├── resource-instance-with-broken-connector-ref.xml │ │ │ │ ├── resource-template-with-broken-connector-ref.xml │ │ │ │ ├── resource-with-broken-connector-ref.xml │ │ │ │ └── scripts.xml │ │ │ ├── jndi.properties │ │ │ ├── logback-test.xml │ │ │ ├── logging.properties │ │ │ ├── manual │ │ │ │ ├── account-black.xml │ │ │ │ ├── account-fiasco.xml │ │ │ │ ├── account-will.xml │ │ │ │ ├── organization-operators.xml │ │ │ │ ├── resource-manual.xml │ │ │ │ ├── resource-semi-manual.xml │ │ │ │ ├── role-operators.xml │ │ │ │ ├── semi-manual.csv │ │ │ │ ├── user-operator-org-manager.xml │ │ │ │ ├── user-operator-org-member.xml │ │ │ │ ├── user-operator-role-approver.xml │ │ │ │ ├── user-operator-role-member.xml │ │ │ │ └── user-operator.xml │ │ │ ├── merge │ │ │ │ ├── resource-additional-connectors-1.xml │ │ │ │ ├── resource-additional-connectors-template.xml │ │ │ │ ├── resource-basic-1.xml │ │ │ │ ├── resource-basic-2.xml │ │ │ │ ├── resource-basic-template.xml │ │ │ │ ├── resource-explicit-type-inheritance.xml │ │ │ │ ├── resource-object-types-1.xml │ │ │ │ └── resource-object-types-template.xml │ │ │ ├── misc │ │ │ │ ├── caching │ │ │ │ │ └── resource-dummy.xml │ │ │ │ └── lifecycle │ │ │ │ │ ├── resource-dummy-active.xml │ │ │ │ │ ├── resource-dummy-proposed-classes.xml │ │ │ │ │ ├── resource-dummy-proposed-types.xml │ │ │ │ │ └── resource-dummy-proposed.xml │ │ │ ├── opendj │ │ │ │ ├── account-bad-repo.xml │ │ │ │ ├── account-change-password.xml │ │ │ │ ├── account-disable-simulated-opendj.xml │ │ │ │ ├── account-jack-change.xml │ │ │ │ ├── account-jack-repo.xml │ │ │ │ ├── account-jack.xml │ │ │ │ ├── account-jbond-repo.xml │ │ │ │ ├── account-jbond.xml │ │ │ │ ├── account-modify-association.xml │ │ │ │ ├── account-modify-password.xml │ │ │ │ ├── account-morgan.xml │ │ │ │ ├── account-new-disabled.xml │ │ │ │ ├── account-new-enabled.xml │ │ │ │ ├── account-new-with-password.xml │ │ │ │ ├── account-opendj-no-sn.xml │ │ │ │ ├── account-poly.xml │ │ │ │ ├── account-posix-mcmutton-change.xml │ │ │ │ ├── account-posix-mcmutton.xml │ │ │ │ ├── account-search-iterative.xml │ │ │ │ ├── account-search.xml │ │ │ │ ├── account-sparrow-repo.xml │ │ │ │ ├── account-sparrow.xml │ │ │ │ ├── account-will.xml │ │ │ │ ├── associations │ │ │ │ │ ├── resource-opendj-legacy.xml │ │ │ │ │ ├── resource-opendj-modern.xml │ │ │ │ │ ├── resource-opendj-native.xml │ │ │ │ │ └── resource-opendj-template.xml │ │ │ │ ├── disable-account-simulated.xml │ │ │ │ ├── group-corsairs.xml │ │ │ │ ├── group-specialists.xml │ │ │ │ ├── group-swashbucklers.xml │ │ │ │ ├── misc │ │ │ │ │ ├── resource-opendj-many-associated-intents.xml │ │ │ │ │ └── system-configuration.xml │ │ │ │ ├── ou-super.xml │ │ │ │ ├── query-complex-filter-starts-with.xml │ │ │ │ ├── query-complex-filter.xml │ │ │ │ ├── query-filter-all-accounts.xml │ │ │ │ ├── query-filter-all-ldap-groups.xml │ │ │ │ ├── query-vanhelgen.xml │ │ │ │ ├── rename.ldif │ │ │ │ ├── resource-opendj-bad-bind-dn.xml │ │ │ │ ├── resource-opendj-bad-credentials.xml │ │ │ │ ├── resource-opendj-bad.xml │ │ │ │ ├── resource-opendj-discovery.xml │ │ │ │ ├── resource-opendj-dumber.xml │ │ │ │ ├── resource-opendj-incomplete-password.xml │ │ │ │ ├── resource-opendj-initialized.xml │ │ │ │ ├── resource-opendj-native-references.xml │ │ │ │ ├── resource-opendj-no-create.xml │ │ │ │ ├── resource-opendj-no-delete.xml │ │ │ │ ├── resource-opendj-no-read.xml │ │ │ │ ├── resource-opendj-no-update.xml │ │ │ │ ├── resource-opendj-readable-password.xml │ │ │ │ ├── resource-opendj.xml │ │ │ │ ├── types │ │ │ │ │ ├── alice-employee.ldif │ │ │ │ │ ├── ann-tester.ldif │ │ │ │ │ ├── jim-admin.ldif │ │ │ │ │ └── resource-opendj-types.xml │ │ │ │ └── vanhelgen.ldif │ │ │ └── synchronization │ │ │ │ ├── calypso.ldif │ │ │ │ └── will.ldif │ │ │ └── script │ │ │ └── csvscript.sh │ ├── testng-integration.xml │ └── testng-unit.xml ├── ucf-api │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── evolveum │ │ └── midpoint │ │ └── provisioning │ │ └── ucf │ │ └── api │ │ ├── ConfigurationItem.java │ │ ├── ConnectorConfiguration.java │ │ ├── ConnectorConfigurationOptions.java │ │ ├── ConnectorDiscoveryListener.java │ │ ├── ConnectorFactory.java │ │ ├── ConnectorInstallationService.java │ │ ├── ConnectorInstance.java │ │ ├── ConnectorOperationOptions.java │ │ ├── DownloadedConnector.java │ │ ├── EditableConnector.java │ │ ├── ExecuteProvisioningScriptOperation.java │ │ ├── ExecuteScriptArgument.java │ │ ├── GenericFrameworkException.java │ │ ├── ListeningActivity.java │ │ ├── ManagedConnector.java │ │ ├── ManagedConnectorConfiguration.java │ │ ├── Operation.java │ │ ├── PropertyModificationOperation.java │ │ ├── ReferenceModificationOperation.java │ │ ├── SchemaAwareUcfExecutionContext.java │ │ ├── ShadowItemsToReturn.java │ │ ├── Token.java │ │ ├── TracerAware.java │ │ ├── UcfAddReturnValue.java │ │ ├── UcfAsyncUpdateChange.java │ │ ├── UcfChange.java │ │ ├── UcfDeleteResult.java │ │ ├── UcfErrorState.java │ │ ├── UcfException.java │ │ ├── UcfExecutionContext.java │ │ ├── UcfExpressionEvaluator.java │ │ ├── UcfExpressionEvaluatorAware.java │ │ ├── UcfFetchChangesResult.java │ │ ├── UcfFetchErrorReportingMethod.java │ │ ├── UcfLiveSyncChange.java │ │ ├── UcfLiveSyncChangeListener.java │ │ ├── UcfModifyReturnValue.java │ │ ├── UcfObjectHandler.java │ │ ├── UcfOperationResult.java │ │ ├── UcfOperationReturnValue.java │ │ ├── UcfResourceObject.java │ │ ├── UcfResourceObjectFragment.java │ │ ├── UcfResourceObjectIdentification.java │ │ ├── UcfSyncToken.java │ │ ├── UcfUtil.java │ │ ├── async │ │ ├── ActiveAsyncUpdateSource.java │ │ ├── AsyncProvisioningRequest.java │ │ ├── AsyncProvisioningTarget.java │ │ ├── AsyncUpdateMessageListener.java │ │ ├── AsyncUpdateSource.java │ │ ├── PassiveAsyncUpdateSource.java │ │ ├── StringAsyncProvisioningRequest.java │ │ └── UcfAsyncUpdateChangeListener.java │ │ └── connectors │ │ ├── AbstractManagedConnectorInstance.java │ │ └── AbstractManualConnectorInstance.java ├── ucf-impl-builtin │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── evolveum │ │ │ └── midpoint │ │ │ └── provisioning │ │ │ └── ucf │ │ │ └── impl │ │ │ └── builtin │ │ │ ├── ConnectorFactoryBuiltinImpl.java │ │ │ ├── ManualConnectorConfiguration.java │ │ │ ├── ManualConnectorInstance.java │ │ │ └── async │ │ │ ├── provisioning │ │ │ ├── AsyncProvisioningConnectorInstance.java │ │ │ ├── ConnectorConfiguration.java │ │ │ ├── JsonRequestFormatter.java │ │ │ ├── OperationRequestTransformer.java │ │ │ ├── OperationRequested.java │ │ │ ├── TargetManager.java │ │ │ ├── TransformerHelper.java │ │ │ └── targets │ │ │ │ ├── AbstractMessagingTarget.java │ │ │ │ ├── ArtemisProvisioningTarget.java │ │ │ │ └── JmsProvisioningTarget.java │ │ │ └── update │ │ │ ├── AggregatingAcknowledgeSink.java │ │ │ ├── AsyncUpdateConnectorInstance.java │ │ │ ├── ConnectorConfiguration.java │ │ │ ├── ConnectorListener.java │ │ │ ├── SourceManager.java │ │ │ ├── TransformationalAsyncUpdateMessageListener.java │ │ │ └── sources │ │ │ ├── Amqp091AsyncUpdateSource.java │ │ │ └── JmsAsyncUpdateSource.java │ │ └── resources │ │ └── ctx-ucf-builtin.xml └── ucf-impl-connid │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── provisioning │ │ │ │ └── ucf │ │ │ │ └── impl │ │ │ │ └── connid │ │ │ │ ├── AbstractModificationConverter.java │ │ │ │ ├── CollectorValuesConverter.java │ │ │ │ ├── ConnIdAttributeUtil.java │ │ │ │ ├── ConnIdBeans.java │ │ │ │ ├── ConnIdCapabilitiesAndSchemaParser.java │ │ │ │ ├── ConnIdConfigurationTransformer.java │ │ │ │ ├── ConnIdNameMapper.java │ │ │ │ ├── ConnIdObjectConvertor.java │ │ │ │ ├── ConnIdSchemaParser.java │ │ │ │ ├── ConnIdToUcfObjectConversion.java │ │ │ │ ├── ConnIdTypeMapper.java │ │ │ │ ├── ConnIdUtil.java │ │ │ │ ├── ConnectorContext.java │ │ │ │ ├── ConnectorFactoryConnIdImpl.java │ │ │ │ ├── ConnectorInstallationServiceImpl.java │ │ │ │ ├── ConnectorInstanceConnIdImpl.java │ │ │ │ ├── ConnectorOperationContext.java │ │ │ │ ├── DeltaModificationConverter.java │ │ │ │ ├── DirectoryScanningInfoManager.java │ │ │ │ ├── IntermediateSchemaException.java │ │ │ │ ├── NativeCapabilitiesAndSchema.java │ │ │ │ ├── SearchExecutor.java │ │ │ │ ├── SecretIcfOperationalAttributes.java │ │ │ │ ├── Slf4jConnectorLogger.java │ │ │ │ ├── SpecialNameMapper.java │ │ │ │ ├── SyncDeltaConverter.java │ │ │ │ ├── TokenUtil.java │ │ │ │ ├── UpdateModificationConverter.java │ │ │ │ └── query │ │ │ │ ├── FilterInterpreter.java │ │ │ │ ├── LogicalOperation.java │ │ │ │ ├── Operation.java │ │ │ │ └── ValueOperation.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.identityconnectors.common.logging │ │ │ └── ctx-ucf-connid.xml │ └── test │ │ ├── java │ │ └── com │ │ │ └── evolveum │ │ │ └── midpoint │ │ │ └── provisioning │ │ │ └── ucf │ │ │ └── impl │ │ │ └── connid │ │ │ ├── AbstractUcfDummyTest.java │ │ │ ├── CollectingChangeListener.java │ │ │ ├── TestUcfDummy.java │ │ │ ├── TestUcfDummyMulti.java │ │ │ ├── TestUcfOpenDj.java │ │ │ └── UcfTestUtil.java │ │ └── resources │ │ ├── connector-dummy.xml │ │ ├── connector-ldap.xml │ │ ├── ctx-ucf-connid-test.xml │ │ ├── dummy-connector-fake-4.2.jar │ │ ├── hr-resource-dummy.xml │ │ ├── logback-test.xml │ │ ├── resource-dummy.xml │ │ ├── resource-opendj-bad.xml │ │ └── resource-opendj.xml │ ├── testng-integration.xml │ └── testng-unit.xml ├── release-notes.adoc ├── repo ├── audit-api │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── evolveum │ │ └── midpoint │ │ └── audit │ │ ├── api │ │ ├── AuditEventRecord.java │ │ ├── AuditEventStage.java │ │ ├── AuditEventType.java │ │ ├── AuditReferenceValue.java │ │ ├── AuditResultHandler.java │ │ ├── AuditService.java │ │ ├── AuditServiceFactory.java │ │ └── AuditServiceFactoryException.java │ │ └── spi │ │ └── AuditServiceRegistry.java ├── audit-log-impl │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── evolveum │ │ │ └── midpoint │ │ │ └── audit │ │ │ └── impl │ │ │ ├── LoggerAuditServiceFactory.java │ │ │ └── LoggerAuditServiceImpl.java │ │ └── resources │ │ └── ctx-audit.xml ├── pom.xml ├── repo-api │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── evolveum │ │ └── midpoint │ │ ├── CacheInvalidationContext.java │ │ ├── TerminateSessionEvent.java │ │ └── repo │ │ └── api │ │ ├── AggregateQuery.java │ │ ├── Cache.java │ │ ├── CacheDispatcher.java │ │ ├── CacheInvalidationDetails.java │ │ ├── CacheInvalidationEventSpecification.java │ │ ├── CacheInvalidationListener.java │ │ ├── CacheListener.java │ │ ├── CacheRegistry.java │ │ ├── ConflictWatcher.java │ │ ├── Countable.java │ │ ├── DeleteObjectResult.java │ │ ├── ModificationPrecondition.java │ │ ├── ModifyObjectResult.java │ │ ├── ObjectSelectorMatcher.java │ │ ├── OptimisticLockingRunner.java │ │ ├── PreconditionViolationException.java │ │ ├── RepoAddOptions.java │ │ ├── RepoModifyOptions.java │ │ ├── RepositoryAware.java │ │ ├── RepositoryObjectDiagnosticData.java │ │ ├── RepositoryOperation.java │ │ ├── RepositoryOperationResult.java │ │ ├── RepositoryPerformanceMonitor.java │ │ ├── RepositoryService.java │ │ ├── RepositoryServiceFactoryException.java │ │ ├── SqlPerformanceMonitorsCollection.java │ │ ├── SystemConfigurationChangeDispatcher.java │ │ ├── SystemConfigurationChangeEvent.java │ │ ├── SystemConfigurationChangeListener.java │ │ ├── VersionPrecondition.java │ │ ├── perf │ │ ├── OperationPerformanceInformation.java │ │ ├── OperationRecord.java │ │ ├── PerformanceInformation.java │ │ └── PerformanceMonitor.java │ │ ├── query │ │ └── CompleteQuery.java │ │ └── util │ │ ├── AccessCertificationSupportMixin.java │ │ └── CaseSupportMixin.java ├── repo-cache │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── evolveum │ │ │ │ │ └── midpoint │ │ │ │ │ └── repo │ │ │ │ │ └── cache │ │ │ │ │ ├── RepositoryCache.java │ │ │ │ │ ├── global │ │ │ │ │ ├── AbstractGlobalCache.java │ │ │ │ │ ├── AbstractGlobalCacheValue.java │ │ │ │ │ ├── GlobalCacheObjectValue.java │ │ │ │ │ ├── GlobalCacheObjectVersionValue.java │ │ │ │ │ ├── GlobalCacheQueryValue.java │ │ │ │ │ ├── GlobalObjectCache.java │ │ │ │ │ ├── GlobalQueryCache.java │ │ │ │ │ └── GlobalVersionCache.java │ │ │ │ │ ├── handlers │ │ │ │ │ ├── AddObjectResult.java │ │ │ │ │ ├── BaseOpHandler.java │ │ │ │ │ ├── CacheAccessInfo.java │ │ │ │ │ ├── CacheSetAccessInfo.java │ │ │ │ │ ├── CacheSetAccessInfoFactory.java │ │ │ │ │ ├── CacheUpdater.java │ │ │ │ │ ├── CacheUseMode.java │ │ │ │ │ ├── CachedOpExecution.java │ │ │ │ │ ├── CachedOpHandler.java │ │ │ │ │ ├── CachingResultHandler.java │ │ │ │ │ ├── GetObjectOpExecution.java │ │ │ │ │ ├── GetObjectOpHandler.java │ │ │ │ │ ├── GetVersionOpExecution.java │ │ │ │ │ ├── GetVersionOpHandler.java │ │ │ │ │ ├── ModificationOpHandler.java │ │ │ │ │ ├── RecordingResultHandler.java │ │ │ │ │ ├── SearchOpExecution.java │ │ │ │ │ └── SearchOpHandler.java │ │ │ │ │ ├── invalidation │ │ │ │ │ ├── ChangeDescription.java │ │ │ │ │ ├── InvalidationEvent.java │ │ │ │ │ ├── InvalidationEventListener.java │ │ │ │ │ ├── Invalidator.java │ │ │ │ │ └── RepositoryCacheInvalidationDetails.java │ │ │ │ │ ├── local │ │ │ │ │ ├── LocalCacheObjectValue.java │ │ │ │ │ ├── LocalCacheQueryValue.java │ │ │ │ │ ├── LocalObjectCache.java │ │ │ │ │ ├── LocalQueryCache.java │ │ │ │ │ ├── LocalRepoCacheCollection.java │ │ │ │ │ ├── LocalVersionCache.java │ │ │ │ │ ├── QueryKey.java │ │ │ │ │ └── SingleTypeQueryKey.java │ │ │ │ │ ├── other │ │ │ │ │ └── MonitoringUtil.java │ │ │ │ │ ├── registry │ │ │ │ │ ├── CacheDispatcherImpl.java │ │ │ │ │ └── CacheRegistryImpl.java │ │ │ │ │ └── values │ │ │ │ │ ├── CachedObjectValue.java │ │ │ │ │ └── CachedQueryValue.java │ │ │ └── resources │ │ │ │ └── ctx-repo-cache.xml │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── repo │ │ │ │ └── cache │ │ │ │ ├── CacheInvalidationPerformanceTest.java │ │ │ │ └── TestRepositoryCache.java │ │ │ └── resources │ │ │ ├── ctx-configuration-test-no-audit.xml │ │ │ ├── ctx-repo-cache-test.xml │ │ │ ├── logback-test.xml │ │ │ ├── test-config-new-repo.xml │ │ │ └── test-config.xml │ └── testng-unit.xml ├── repo-common │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── evolveum │ │ │ │ │ └── midpoint │ │ │ │ │ └── repo │ │ │ │ │ └── common │ │ │ │ │ ├── AuditConfiguration.java │ │ │ │ │ ├── AuditHelper.java │ │ │ │ │ ├── DirectoryFileObjectResolver.java │ │ │ │ │ ├── EvaluatedPolicyStatements.java │ │ │ │ │ ├── ObjectMarkHelper.java │ │ │ │ │ ├── ObjectOperationPolicyHelper.java │ │ │ │ │ ├── ObjectResolver.java │ │ │ │ │ ├── RepoObjectResolver.java │ │ │ │ │ ├── SystemConfigurationCacheAdapter.java │ │ │ │ │ ├── SystemConfigurationLoadedEvent.java │ │ │ │ │ ├── SystemObjectCache.java │ │ │ │ │ ├── activity │ │ │ │ │ ├── AbortingInformationAware.java │ │ │ │ │ ├── Activity.java │ │ │ │ │ ├── ActivityInterruptedException.java │ │ │ │ │ ├── ActivityListener.java │ │ │ │ │ ├── ActivityPolicyBasedAbortException.java │ │ │ │ │ ├── ActivityPolicyBasedHaltException.java │ │ │ │ │ ├── ActivityPolicyViolationException.java │ │ │ │ │ ├── ActivityRunResultStatus.java │ │ │ │ │ ├── ActivityRunSupplier.java │ │ │ │ │ ├── ActivityTailor.java │ │ │ │ │ ├── ActivityTree.java │ │ │ │ │ ├── ActivityTreeStateOverview.java │ │ │ │ │ ├── ActivityVisitor.java │ │ │ │ │ ├── CandidateIdentifierFormatter.java │ │ │ │ │ ├── EmbeddedActivity.java │ │ │ │ │ ├── PreRunnable.java │ │ │ │ │ ├── ReportOutputCreatedListener.java │ │ │ │ │ ├── StandaloneActivity.java │ │ │ │ │ ├── TaskActivityManager.java │ │ │ │ │ ├── definition │ │ │ │ │ │ ├── AbstractWorkDefinition.java │ │ │ │ │ │ ├── ActivityControlFlowDefinition.java │ │ │ │ │ │ ├── ActivityDefinition.java │ │ │ │ │ │ ├── ActivityDistributionDefinition.java │ │ │ │ │ │ ├── ActivityExecutionModeDefinition.java │ │ │ │ │ │ ├── ActivityPoliciesDefinition.java │ │ │ │ │ │ ├── ActivityReportingDefinition.java │ │ │ │ │ │ ├── ActivityReportingDefinitionDefaultValuesProvider.java │ │ │ │ │ │ ├── ActivityTailoring.java │ │ │ │ │ │ ├── AffectedObjectSetProvider.java │ │ │ │ │ │ ├── AffectedObjectsInformation.java │ │ │ │ │ │ ├── AffectedObjectsProvider.java │ │ │ │ │ │ ├── CompositeWorkDefinition.java │ │ │ │ │ │ ├── FailedObjectsSelectorProvider.java │ │ │ │ │ │ ├── ObjectSetSpecification.java │ │ │ │ │ │ ├── ObjectSetSpecificationProvider.java │ │ │ │ │ │ ├── RepositoryObjectSetSpecificationImpl.java │ │ │ │ │ │ ├── ResourceObjectSetSpecificationImpl.java │ │ │ │ │ │ ├── ResourceObjectSetSpecificationProvider.java │ │ │ │ │ │ ├── TailoringUtil.java │ │ │ │ │ │ ├── WorkDefinition.java │ │ │ │ │ │ ├── WorkDefinitionFactory.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── handlers │ │ │ │ │ │ ├── ActivityHandler.java │ │ │ │ │ │ ├── ActivityHandlerRegistry.java │ │ │ │ │ │ ├── ActivityHandlerUtils.java │ │ │ │ │ │ ├── CustomCompositeActivityHandler.java │ │ │ │ │ │ └── NoOpActivityHandler.java │ │ │ │ │ ├── package-info.java │ │ │ │ │ ├── policy │ │ │ │ │ │ ├── ActivityCompositeTrigger.java │ │ │ │ │ │ ├── ActivityPolicyConstraintEvaluator.java │ │ │ │ │ │ ├── ActivityPolicyConstraintsEvaluator.java │ │ │ │ │ │ ├── ActivityPolicyProcessorHelper.java │ │ │ │ │ │ ├── ActivityPolicyRule.java │ │ │ │ │ │ ├── ActivityPolicyRuleEvaluationContext.java │ │ │ │ │ │ ├── ActivityPolicyRuleIdentifier.java │ │ │ │ │ │ ├── ActivityPolicyRuleUpdater.java │ │ │ │ │ │ ├── ActivityPolicyRulesContext.java │ │ │ │ │ │ ├── ActivityPolicyRulesProcessor.java │ │ │ │ │ │ ├── ActivityPolicyUtils.java │ │ │ │ │ │ ├── ComputationUtil.java │ │ │ │ │ │ ├── DataNeed.java │ │ │ │ │ │ ├── DurationThresholdPolicyTrigger.java │ │ │ │ │ │ ├── EvaluatedActivityPolicyRule.java │ │ │ │ │ │ ├── EvaluatedActivityPolicyRuleTrigger.java │ │ │ │ │ │ ├── EvaluatedItemStatePolicyTrigger.java │ │ │ │ │ │ ├── EvaluatorUtils.java │ │ │ │ │ │ ├── NumericConstraintTrigger.java │ │ │ │ │ │ ├── PreexistingValues.java │ │ │ │ │ │ ├── PreexistingValuesComputer.java │ │ │ │ │ │ └── evaluator │ │ │ │ │ │ │ ├── ActivityCompositeConstraintEvaluator.java │ │ │ │ │ │ │ ├── DurationConstraintEvaluator.java │ │ │ │ │ │ │ ├── ExecutionAttemptsConstraintEvaluator.java │ │ │ │ │ │ │ ├── ExecutionTimeConstraintEvaluator.java │ │ │ │ │ │ │ ├── ItemProcessingResultConstraintEvaluator.java │ │ │ │ │ │ │ └── NumericConstraintEvaluator.java │ │ │ │ │ └── run │ │ │ │ │ │ ├── AbstractActivityRun.java │ │ │ │ │ │ ├── AbstractCompositeActivityRun.java │ │ │ │ │ │ ├── ActivityReportingCharacteristics.java │ │ │ │ │ │ ├── ActivityRunException.java │ │ │ │ │ │ ├── ActivityRunInstantiationContext.java │ │ │ │ │ │ ├── ActivityRunPolicyException.java │ │ │ │ │ │ ├── ActivityRunResult.java │ │ │ │ │ │ ├── ActivitySimulationContext.java │ │ │ │ │ │ ├── AdvancedActivityRunSupport.java │ │ │ │ │ │ ├── CommonTaskBeans.java │ │ │ │ │ │ ├── CompositeActivityRun.java │ │ │ │ │ │ ├── DelegatingActivityRun.java │ │ │ │ │ │ ├── DistributingActivityRun.java │ │ │ │ │ │ ├── ErrorHandlingStrategyExecutor.java │ │ │ │ │ │ ├── ErrorState.java │ │ │ │ │ │ ├── FailedObjectsFilterCreator.java │ │ │ │ │ │ ├── IterativeActivityRun.java │ │ │ │ │ │ ├── IterativeActivityRunSpecifics.java │ │ │ │ │ │ ├── LocalActivityRun.java │ │ │ │ │ │ ├── NoOpAdvancedActivityRunSupport.java │ │ │ │ │ │ ├── PlainIterativeActivityRun.java │ │ │ │ │ │ ├── PlainIterativeActivityRunSpecifics.java │ │ │ │ │ │ ├── SearchBasedActivityRun.java │ │ │ │ │ │ ├── SearchBasedActivityRunSpecifics.java │ │ │ │ │ │ ├── SearchSpecification.java │ │ │ │ │ │ ├── SimulationSupport.java │ │ │ │ │ │ ├── StatisticsLogger.java │ │ │ │ │ │ ├── SubtaskHelper.java │ │ │ │ │ │ ├── TransientActivityRunStatistics.java │ │ │ │ │ │ ├── UpdateActivityPoliciesOperation.java │ │ │ │ │ │ ├── buckets │ │ │ │ │ │ ├── BaseBucketContentFactory.java │ │ │ │ │ │ ├── BucketOperation.java │ │ │ │ │ │ ├── BucketOperationStatisticsKeeper.java │ │ │ │ │ │ ├── BucketingConfigurationOverrides.java │ │ │ │ │ │ ├── BucketingManager.java │ │ │ │ │ │ ├── CompleteBucketOperation.java │ │ │ │ │ │ ├── GetBucketOperation.java │ │ │ │ │ │ ├── GetBucketOperationAttempt.java │ │ │ │ │ │ ├── GetBucketOperationOptions.java │ │ │ │ │ │ ├── ItemDefinitionProvider.java │ │ │ │ │ │ ├── ReleaseBucketsOperation.java │ │ │ │ │ │ └── segmentation │ │ │ │ │ │ │ ├── BucketContentFactory.java │ │ │ │ │ │ │ ├── BucketContentFactoryGenerator.java │ │ │ │ │ │ │ ├── BucketContentFactorySupplier.java │ │ │ │ │ │ │ ├── BucketFactory.java │ │ │ │ │ │ │ ├── ExplicitBucketContentFactory.java │ │ │ │ │ │ │ ├── ImplicitSegmentationResolver.java │ │ │ │ │ │ │ ├── NullBucketContentFactory.java │ │ │ │ │ │ │ ├── NumericBucketContentFactory.java │ │ │ │ │ │ │ ├── StringBucketContentFactory.java │ │ │ │ │ │ │ └── content │ │ │ │ │ │ │ ├── BaseWorkBucketContentHandler.java │ │ │ │ │ │ │ ├── FilterWorkBucketContentHandler.java │ │ │ │ │ │ │ ├── IntervalWorkBucketContentHandler.java │ │ │ │ │ │ │ ├── NullWorkBucketContentHandler.java │ │ │ │ │ │ │ ├── NumericIntervalBucketUtil.java │ │ │ │ │ │ │ ├── NumericIntervalWorkBucketContentHandler.java │ │ │ │ │ │ │ ├── StringIntervalWorkBucketContentHandler.java │ │ │ │ │ │ │ ├── StringPrefixWorkBucketContentHandler.java │ │ │ │ │ │ │ ├── StringValueWorkBucketContentHandler.java │ │ │ │ │ │ │ ├── WorkBucketContentHandler.java │ │ │ │ │ │ │ └── WorkBucketContentHandlerRegistry.java │ │ │ │ │ │ ├── distribution │ │ │ │ │ │ ├── ExpectedSetup.java │ │ │ │ │ │ ├── TaskModificationConflictException.java │ │ │ │ │ │ ├── WorkerCharacterization.java │ │ │ │ │ │ ├── WorkersReconciliation.java │ │ │ │ │ │ └── WorkersReconciliationOptions.java │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ ├── processing │ │ │ │ │ │ ├── ContainerableProcessingRequest.java │ │ │ │ │ │ ├── CorrelatableProcessingRequest.java │ │ │ │ │ │ ├── GenericProcessingRequest.java │ │ │ │ │ │ ├── ItemPreprocessor.java │ │ │ │ │ │ ├── ItemProcessingConditionEvaluator.java │ │ │ │ │ │ ├── ItemProcessingGatekeeper.java │ │ │ │ │ │ ├── ItemProcessingMonitor.java │ │ │ │ │ │ ├── ItemProcessingRequest.java │ │ │ │ │ │ ├── ItemProcessingResult.java │ │ │ │ │ │ ├── ItemProcessor.java │ │ │ │ │ │ ├── ObjectProcessingRequest.java │ │ │ │ │ │ ├── ProcessingCoordinator.java │ │ │ │ │ │ ├── RequestsBuffer.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── reports │ │ │ │ │ │ ├── AbstractReport.java │ │ │ │ │ │ ├── ActivityReportUtil.java │ │ │ │ │ │ ├── BucketsReport.java │ │ │ │ │ │ ├── ConnIdOperationsReport.java │ │ │ │ │ │ ├── CsvWriter.java │ │ │ │ │ │ ├── InternalOperationsReport.java │ │ │ │ │ │ ├── ItemsReport.java │ │ │ │ │ │ ├── SimpleReportReader.java │ │ │ │ │ │ └── formatters │ │ │ │ │ │ │ ├── BucketContentFormatter.java │ │ │ │ │ │ │ ├── Formatter.java │ │ │ │ │ │ │ ├── FormatterRegistry.java │ │ │ │ │ │ │ ├── GeneralFormatter.java │ │ │ │ │ │ │ ├── ObjectReferenceFormatter.java │ │ │ │ │ │ │ ├── ParamsFormatter.java │ │ │ │ │ │ │ ├── QualifiedOutcomeFormatter.java │ │ │ │ │ │ │ └── XMLGregorianCalendarFormatter.java │ │ │ │ │ │ ├── sources │ │ │ │ │ │ ├── RepoAuditItemSource.java │ │ │ │ │ │ ├── RepoContainerableItemSource.java │ │ │ │ │ │ ├── RepoObjectSource.java │ │ │ │ │ │ ├── RepositoryItemSourceFactory.java │ │ │ │ │ │ └── SearchableItemSource.java │ │ │ │ │ │ ├── state │ │ │ │ │ │ ├── ActivityBucketManagementStatistics.java │ │ │ │ │ │ ├── ActivityItemProcessingStatistics.java │ │ │ │ │ │ ├── ActivityProgress.java │ │ │ │ │ │ ├── ActivityState.java │ │ │ │ │ │ ├── ActivityStateDefinition.java │ │ │ │ │ │ ├── ActivityStatistics.java │ │ │ │ │ │ ├── ActivityTreePurger.java │ │ │ │ │ │ ├── CurrentActivityState.java │ │ │ │ │ │ ├── Initializable.java │ │ │ │ │ │ ├── LegacyProgressUpdater.java │ │ │ │ │ │ ├── OtherActivityState.java │ │ │ │ │ │ ├── VirtualActivityState.java │ │ │ │ │ │ ├── actions │ │ │ │ │ │ │ ├── ActionExecuted.java │ │ │ │ │ │ │ ├── ActionsExecutedCollectorImpl.java │ │ │ │ │ │ │ ├── ActionsExecutedObjectsKey.java │ │ │ │ │ │ │ ├── ActionsExecutedSummarizer.java │ │ │ │ │ │ │ └── ActivityActionsExecuted.java │ │ │ │ │ │ ├── counters │ │ │ │ │ │ │ └── CountersIncrementOperation.java │ │ │ │ │ │ └── sync │ │ │ │ │ │ │ ├── ActivitySynchronizationStatistics.java │ │ │ │ │ │ │ └── SynchronizationStatisticsCollectorImpl.java │ │ │ │ │ │ └── task │ │ │ │ │ │ ├── ActivityBasedTaskHandler.java │ │ │ │ │ │ ├── ActivityBasedTaskRun.java │ │ │ │ │ │ ├── NodeDownCleaner.java │ │ │ │ │ │ └── TaskRun.java │ │ │ │ │ ├── commandline │ │ │ │ │ ├── CommandLineRunner.java │ │ │ │ │ └── CommandLineScriptExecutor.java │ │ │ │ │ ├── expression │ │ │ │ │ ├── AbstractAutowiredExpressionEvaluatorFactory.java │ │ │ │ │ ├── AbstractObjectResolvableExpressionEvaluatorFactory.java │ │ │ │ │ ├── BaseExpressionEvaluatorFactory.java │ │ │ │ │ ├── ConfigurableValuePolicySupplier.java │ │ │ │ │ ├── ConsolidationValueMetadataComputer.java │ │ │ │ │ ├── Expression.java │ │ │ │ │ ├── ExpressionEnvironmentThreadLocalHolder.java │ │ │ │ │ ├── ExpressionEvaluationContext.java │ │ │ │ │ ├── ExpressionEvaluationUtil.java │ │ │ │ │ ├── ExpressionEvaluator.java │ │ │ │ │ ├── ExpressionEvaluatorFactory.java │ │ │ │ │ ├── ExpressionFactory.java │ │ │ │ │ ├── ExpressionProfileCompiler.java │ │ │ │ │ ├── ExpressionSyntaxException.java │ │ │ │ │ ├── ExpressionUtil.java │ │ │ │ │ ├── PathExpressionResolver.java │ │ │ │ │ ├── Source.java │ │ │ │ │ ├── SourceTriple.java │ │ │ │ │ ├── TransformationValueMetadataComputer.java │ │ │ │ │ ├── ValuePolicySupplier.java │ │ │ │ │ ├── ValueSetDefinition.java │ │ │ │ │ ├── VariableProducer.java │ │ │ │ │ └── evaluator │ │ │ │ │ │ ├── AbstractExpressionEvaluator.java │ │ │ │ │ │ ├── AsIsExpressionEvaluator.java │ │ │ │ │ │ ├── AsIsExpressionEvaluatorFactory.java │ │ │ │ │ │ ├── LiteralExpressionEvaluator.java │ │ │ │ │ │ └── LiteralExpressionEvaluatorFactory.java │ │ │ │ │ ├── query │ │ │ │ │ ├── LinkedSelectorToFilterTranslator.java │ │ │ │ │ ├── SelectorMatcher.java │ │ │ │ │ └── SelectorToFilterTranslator.java │ │ │ │ │ ├── reports │ │ │ │ │ └── ReportSupportUtil.java │ │ │ │ │ ├── security │ │ │ │ │ ├── CredentialsStorageManager.java │ │ │ │ │ └── SecurityPolicyFinder.java │ │ │ │ │ ├── subscription │ │ │ │ │ ├── JarSignatureHolder.java │ │ │ │ │ ├── LocalBeans.java │ │ │ │ │ ├── SubscriptionId.java │ │ │ │ │ ├── SubscriptionPolicies.java │ │ │ │ │ ├── SubscriptionState.java │ │ │ │ │ ├── SubscriptionStateCache.java │ │ │ │ │ ├── SubscriptionUtil.java │ │ │ │ │ ├── SystemFeatures.java │ │ │ │ │ └── SystemFeaturesEnquirer.java │ │ │ │ │ └── util │ │ │ │ │ ├── OperationExecutionRecorderForTasks.java │ │ │ │ │ ├── OperationExecutionWriter.java │ │ │ │ │ └── RepoCommonUtils.java │ │ │ └── resources │ │ │ │ └── ctx-repo-common.xml │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── repo │ │ │ │ └── common │ │ │ │ ├── AbstractRepoCommonTest.java │ │ │ │ ├── RepoCommonAddGetTest.java │ │ │ │ ├── RepoConcurrencyTest.java │ │ │ │ ├── RepoSubstringPatternsTest.java │ │ │ │ ├── SubscriptionIdDateValidityTest.java │ │ │ │ ├── TestAuditServiceImpl.java │ │ │ │ ├── commandline │ │ │ │ └── TestCommandLine.java │ │ │ │ └── tasks │ │ │ │ ├── TestActivities.java │ │ │ │ ├── TestActivityPolicies.java │ │ │ │ ├── TestBucketingLive.java │ │ │ │ ├── TestBucketingStatic.java │ │ │ │ ├── TestWorkerTasks.java │ │ │ │ └── handlers │ │ │ │ ├── AbstractMockActivityHandler.java │ │ │ │ ├── CommonMockActivityHelper.java │ │ │ │ ├── MockRecorder.java │ │ │ │ ├── composite │ │ │ │ ├── CompositeMockActivityHandler.java │ │ │ │ ├── CompositeMockWorkDefinition.java │ │ │ │ ├── MockClosingActivityRun.java │ │ │ │ ├── MockComponentActivityRun.java │ │ │ │ └── MockOpeningActivityRun.java │ │ │ │ ├── iterative │ │ │ │ ├── IterativeMockActivityHandler.java │ │ │ │ ├── IterativeMockActivityRun.java │ │ │ │ ├── IterativeMockProcessingRequest.java │ │ │ │ └── IterativeMockWorkDefinition.java │ │ │ │ ├── search │ │ │ │ ├── SearchBasedMockActivityRun.java │ │ │ │ ├── SearchIterativeMockActivityHandler.java │ │ │ │ └── SearchIterativeMockWorkDefinition.java │ │ │ │ └── simple │ │ │ │ ├── SimpleMockActivityHandler.java │ │ │ │ ├── SimpleMockActivityRun.java │ │ │ │ └── SimpleMockWorkDefinition.java │ │ │ └── resources │ │ │ ├── commandline │ │ │ ├── report-plain-echo.xml │ │ │ └── report-redir-echo.xml │ │ │ ├── common │ │ │ └── user-administrator.xml │ │ │ ├── concurrency │ │ │ └── user.xml │ │ │ ├── ctx-repo-common-test-main.xml │ │ │ ├── ctx-repo-common-test.xml │ │ │ ├── logback-test.xml │ │ │ ├── schema │ │ │ └── extension.xsd │ │ │ └── tasks │ │ │ ├── activities │ │ │ ├── other │ │ │ │ ├── task-cleanup-minimal.xml │ │ │ │ ├── task-composite-with-dependencies.xml │ │ │ │ ├── task-custom.xml │ │ │ │ ├── task-import-thresholds.xml │ │ │ │ ├── task-multiple-imports.xml │ │ │ │ ├── task-recomputation-bucketed.xml │ │ │ │ ├── task-recomputation-multinode.xml │ │ │ │ ├── task-recomputation-multithreaded.xml │ │ │ │ ├── task-recomputation-pre-and-post-processing-explicit.xml │ │ │ │ ├── task-recomputation-pre-and-post-processing-new.xml │ │ │ │ ├── task-recomputation-pre-and-post-processing-tailored.xml │ │ │ │ ├── task-reconciliation-multinode.xml │ │ │ │ └── task-reconciliation-pre-and-post-processing-new.xml │ │ │ ├── policies │ │ │ │ ├── task-100-simple-suspend-on-execution-time.xml │ │ │ │ ├── task-110-child-suspend-on-own-execution-time.xml │ │ │ │ ├── task-120-child-suspend-on-parent-execution-time.xml │ │ │ │ ├── task-130-child-suspend-on-own-execution-time-with-subtasks.xml │ │ │ │ ├── task-140-child-suspend-on-parent-execution-time-with-subtasks.xml │ │ │ │ ├── task-150-multinode-suspend-on-execution-time.xml │ │ │ │ ├── task-160-multinode-child-suspend-on-own-execution-time-with-subtasks.xml │ │ │ │ ├── task-170-multinode-child-suspend-on-root-execution-time-with-subtasks.xml │ │ │ │ ├── task-200-simple-suspend-on-item-errors.xml │ │ │ │ ├── task-210-child-suspend-on-own-item-errors.xml │ │ │ │ ├── task-220-child-suspend-on-parent-item-errors.xml │ │ │ │ ├── task-230-child-suspend-on-own-item-errors-with-subtasks.xml │ │ │ │ ├── task-240-child-suspend-on-parent-item-errors-with-subtasks.xml │ │ │ │ ├── task-250-multinode-suspend-on-item-errors.xml │ │ │ │ ├── task-255-multinode-suspend-on-item-errors-unbalanced.xml │ │ │ │ ├── task-300-simple-skip-on-execution-time.xml │ │ │ │ ├── task-310-child-skip-on-own-execution-time.xml │ │ │ │ ├── task-320-child-skip-on-parent-execution-time.xml │ │ │ │ ├── task-330-child-skip-on-own-execution-time-with-subtasks.xml │ │ │ │ ├── task-340-child-skip-on-parent-execution-time-with-subtasks.xml │ │ │ │ ├── task-350-multinode-skip-on-execution-time.xml │ │ │ │ ├── task-360-multinode-child-skip-on-own-execution-time-with-subtasks.xml │ │ │ │ ├── task-370-multinode-child-skip-on-root-execution-time-with-subtasks.xml │ │ │ │ ├── task-400-simple-restart-on-execution-time.xml │ │ │ │ ├── task-410-child-restart-on-own-execution-time.xml │ │ │ │ ├── task-420-child-restart-on-parent-execution-time.xml │ │ │ │ ├── task-430-child-restart-on-own-execution-time-with-subtasks.xml │ │ │ │ ├── task-440-child-restart-on-parent-execution-time-with-subtasks.xml │ │ │ │ ├── task-450-multinode-restart-on-execution-time.xml │ │ │ │ ├── task-460-multinode-child-restart-on-own-execution-time-with-subtasks.xml │ │ │ │ └── task-470-multinode-child-restart-on-root-execution-time-with-subtasks.xml │ │ │ ├── task-120-mock-simple.xml │ │ │ ├── task-130-mock-composite.xml │ │ │ ├── task-135-no-op.xml │ │ │ ├── task-140-custom-composite.xml │ │ │ ├── task-150-mock-iterative.xml │ │ │ ├── task-155-mock-iterative-bucketed.xml │ │ │ ├── task-160-mock-search-iterative.xml │ │ │ ├── task-170-mock-bucketed.xml │ │ │ ├── task-180-bucketed-tree.xml │ │ │ ├── task-185-bucketed-tree-analysis.xml │ │ │ ├── task-190-suspending-composite.xml │ │ │ ├── task-200-subtask.xml │ │ │ ├── task-210-suspending-composite-with-subtasks.xml │ │ │ ├── task-220-mock-composite-with-subtasks.xml │ │ │ ├── task-300-workers-simple.xml │ │ │ ├── task-310-workers-scavenging.xml │ │ │ ├── task-400-long-running.xml │ │ │ ├── task-custom-composite-with-default-work-TODO.xml │ │ │ └── task-single-mock-part-bucketed-TODO.xml │ │ │ ├── bucketing-live │ │ │ ├── task-100-single-worker-four-buckets.xml │ │ │ ├── task-200-c.xml │ │ │ ├── task-200-w.xml │ │ │ ├── task-210-1.xml │ │ │ ├── task-210-2.xml │ │ │ ├── task-210-3.xml │ │ │ ├── task-210-c.xml │ │ │ ├── task-220-1.xml │ │ │ ├── task-220-2.xml │ │ │ ├── task-220-3.xml │ │ │ ├── task-220-c.xml │ │ │ ├── task-230-1.xml │ │ │ ├── task-230-2.xml │ │ │ ├── task-230-3.xml │ │ │ ├── task-230-c.xml │ │ │ ├── task-300-c.xml │ │ │ └── task-300-w.xml │ │ │ ├── bucketing-static │ │ │ ├── task-010.xml │ │ │ ├── task-020.xml │ │ │ ├── task-030.xml │ │ │ ├── task-040.xml │ │ │ ├── task-050.xml │ │ │ ├── task-100.xml │ │ │ ├── task-110.xml │ │ │ ├── task-120.xml │ │ │ ├── task-130.xml │ │ │ ├── task-140.xml │ │ │ ├── task-150.xml │ │ │ ├── task-200-c.xml │ │ │ ├── task-200-w.xml │ │ │ ├── task-210-1.xml │ │ │ ├── task-210-2.xml │ │ │ ├── task-210-3.xml │ │ │ ├── task-210-4.xml │ │ │ ├── task-210-5.xml │ │ │ └── task-210-c.xml │ │ │ └── worker-tasks │ │ │ ├── system-configuration.xml │ │ │ ├── task-100-single-worker.xml │ │ │ ├── task-110-four-workers.xml │ │ │ ├── task-120-two-workers-per-node.xml │ │ │ ├── task-130-no-op-bucketing-sanity.xml │ │ │ ├── task-140-workers-update.xml │ │ │ ├── task-150-workers-move.xml │ │ │ ├── task-160-workers-add-delete.xml │ │ │ └── task-170-num-seg-num-of-buckets.xml │ ├── testng-db-specific.xml │ ├── testng-integration.xml │ └── testng-unit.xml ├── repo-sqale │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── evolveum │ │ │ │ │ └── midpoint │ │ │ │ │ └── repo │ │ │ │ │ └── sqale │ │ │ │ │ ├── AggregateSearchContext.java │ │ │ │ │ ├── ExtItemCache.java │ │ │ │ │ ├── ExtUtils.java │ │ │ │ │ ├── ExtensionProcessor.java │ │ │ │ │ ├── ReferenceIterativeSearch.java │ │ │ │ │ ├── SimulatedSqlQuery.java │ │ │ │ │ ├── SqaleObjectLoader.java │ │ │ │ │ ├── SqaleQueryContext.java │ │ │ │ │ ├── SqaleRepoContext.java │ │ │ │ │ ├── SqaleRepositoryBeanConfig.java │ │ │ │ │ ├── SqaleRepositoryConfiguration.java │ │ │ │ │ ├── SqaleRepositoryService.java │ │ │ │ │ ├── SqaleServiceBase.java │ │ │ │ │ ├── SqaleSystemConfigurationListener.java │ │ │ │ │ ├── SqaleUtils.java │ │ │ │ │ ├── UriCache.java │ │ │ │ │ ├── audit │ │ │ │ │ ├── AuditInsertion.java │ │ │ │ │ ├── ChangedItemPathComputer.java │ │ │ │ │ ├── SqaleAuditService.java │ │ │ │ │ ├── SqaleAuditServiceFactory.java │ │ │ │ │ ├── filtering │ │ │ │ │ │ ├── AuditCustomColumnItemFilterProcessor.java │ │ │ │ │ │ └── AuditPropertiesItemFilterProcessor.java │ │ │ │ │ └── qmodel │ │ │ │ │ │ ├── MAuditDelta.java │ │ │ │ │ │ ├── MAuditEventRecord.java │ │ │ │ │ │ ├── MAuditRefValue.java │ │ │ │ │ │ ├── QAuditDelta.java │ │ │ │ │ │ ├── QAuditDeltaMapping.java │ │ │ │ │ │ ├── QAuditEventRecord.java │ │ │ │ │ │ ├── QAuditEventRecordMapping.java │ │ │ │ │ │ ├── QAuditRefValue.java │ │ │ │ │ │ └── QAuditRefValueMapping.java │ │ │ │ │ ├── delta │ │ │ │ │ ├── DelegatingItemDeltaProcessor.java │ │ │ │ │ ├── ItemDeltaProcessor.java │ │ │ │ │ ├── ItemDeltaValueProcessor.java │ │ │ │ │ └── item │ │ │ │ │ │ ├── ArrayItemDeltaProcessor.java │ │ │ │ │ │ ├── ContainerTableDeltaProcessor.java │ │ │ │ │ │ ├── CountItemDeltaProcessor.java │ │ │ │ │ │ ├── EmbeddedContainerDeltaProcessor.java │ │ │ │ │ │ ├── EnumItemDeltaProcessor.java │ │ │ │ │ │ ├── ExtensionContainerDeltaProcessor.java │ │ │ │ │ │ ├── ExtensionItemDeltaProcessor.java │ │ │ │ │ │ ├── FinalValueDeltaProcessor.java │ │ │ │ │ │ ├── ItemDeltaSingleValueProcessor.java │ │ │ │ │ │ ├── JsonbPolysItemDeltaProcessor.java │ │ │ │ │ │ ├── PolyStringItemDeltaProcessor.java │ │ │ │ │ │ ├── RefItemDeltaProcessor.java │ │ │ │ │ │ ├── RefTableItemDeltaProcessor.java │ │ │ │ │ │ ├── SinglePathItemDeltaProcessor.java │ │ │ │ │ │ ├── TimestampItemDeltaProcessor.java │ │ │ │ │ │ └── UriItemDeltaProcessor.java │ │ │ │ │ ├── filtering │ │ │ │ │ ├── ArrayPathItemFilterProcessor.java │ │ │ │ │ ├── ExistsFilterProcessor.java │ │ │ │ │ ├── ExtensionItemFilterProcessor.java │ │ │ │ │ ├── FullTextFilterProcessor.java │ │ │ │ │ ├── InOidFilterProcessor.java │ │ │ │ │ ├── JsonbPolysPathItemFilterProcessor.java │ │ │ │ │ ├── OrgFilterProcessor.java │ │ │ │ │ ├── OwnedByFilterProcessor.java │ │ │ │ │ ├── RefFilterWithRepoPath.java │ │ │ │ │ ├── RefItemFilterProcessor.java │ │ │ │ │ ├── RefTableItemFilterProcessor.java │ │ │ │ │ ├── ReferencedByFilterProcessor.java │ │ │ │ │ ├── TypeFilterProcessor.java │ │ │ │ │ ├── TypeQNameItemFilterProcessor.java │ │ │ │ │ ├── UriItemFilterProcessor.java │ │ │ │ │ └── UuidItemFilterProcessor.java │ │ │ │ │ ├── jsonb │ │ │ │ │ ├── Jsonb.java │ │ │ │ │ ├── JsonbException.java │ │ │ │ │ ├── JsonbPath.java │ │ │ │ │ ├── JsonbUtils.java │ │ │ │ │ └── QuerydslJsonbType.java │ │ │ │ │ ├── mapping │ │ │ │ │ ├── ContainerTableRelationResolver.java │ │ │ │ │ ├── CountMappingResolver.java │ │ │ │ │ ├── EmbeddedReferenceResolver.java │ │ │ │ │ ├── ExtensionItemSqlMapper.java │ │ │ │ │ ├── ExtensionMapping.java │ │ │ │ │ ├── ExtensionMappingResolver.java │ │ │ │ │ ├── NestedMappingResolver.java │ │ │ │ │ ├── PartitionManager.java │ │ │ │ │ ├── QOwnedByMapping.java │ │ │ │ │ ├── RefTableTargetResolver.java │ │ │ │ │ ├── ReferenceNameResolver.java │ │ │ │ │ ├── SqaleItemRelationResolver.java │ │ │ │ │ ├── SqaleItemSqlMapper.java │ │ │ │ │ ├── SqaleMappingMixin.java │ │ │ │ │ ├── SqaleNestedMapping.java │ │ │ │ │ ├── SqaleTableMapping.java │ │ │ │ │ └── UpdatableItemSqlMapper.java │ │ │ │ │ ├── qmodel │ │ │ │ │ ├── QOwnedBy.java │ │ │ │ │ ├── accesscert │ │ │ │ │ │ ├── MAccessCertificationCampaign.java │ │ │ │ │ │ ├── MAccessCertificationCase.java │ │ │ │ │ │ ├── MAccessCertificationDefinition.java │ │ │ │ │ │ ├── MAccessCertificationWorkItem.java │ │ │ │ │ │ ├── MAccessCertificationWorkItemReference.java │ │ │ │ │ │ ├── QAccessCertificationCampaign.java │ │ │ │ │ │ ├── QAccessCertificationCampaignMapping.java │ │ │ │ │ │ ├── QAccessCertificationCase.java │ │ │ │ │ │ ├── QAccessCertificationCaseMapping.java │ │ │ │ │ │ ├── QAccessCertificationDefinition.java │ │ │ │ │ │ ├── QAccessCertificationDefinitionMapping.java │ │ │ │ │ │ ├── QAccessCertificationWorkItem.java │ │ │ │ │ │ ├── QAccessCertificationWorkItemMapping.java │ │ │ │ │ │ ├── QAccessCertificationWorkItemReference.java │ │ │ │ │ │ └── QAccessCertificationWorkItemReferenceMapping.java │ │ │ │ │ ├── assignment │ │ │ │ │ │ ├── MAssignment.java │ │ │ │ │ │ ├── MAssignmentMark.java │ │ │ │ │ │ ├── MAssignmentMetadata.java │ │ │ │ │ │ ├── MAssignmentReference.java │ │ │ │ │ │ ├── QAssignment.java │ │ │ │ │ │ ├── QAssignmentMapping.java │ │ │ │ │ │ ├── QAssignmentMarkReference.java │ │ │ │ │ │ ├── QAssignmentMarkReferenceMapping.java │ │ │ │ │ │ ├── QAssignmentMetadata.java │ │ │ │ │ │ ├── QAssignmentMetadataMapping.java │ │ │ │ │ │ ├── QAssignmentMetadataReferenceMapping.java │ │ │ │ │ │ ├── QAssignmentReference.java │ │ │ │ │ │ └── QAssignmentReferenceMapping.java │ │ │ │ │ ├── cases │ │ │ │ │ │ ├── MCase.java │ │ │ │ │ │ ├── QCase.java │ │ │ │ │ │ ├── QCaseMapping.java │ │ │ │ │ │ └── workitem │ │ │ │ │ │ │ ├── MCaseWorkItem.java │ │ │ │ │ │ │ ├── MCaseWorkItemReference.java │ │ │ │ │ │ │ ├── QCaseWorkItem.java │ │ │ │ │ │ │ ├── QCaseWorkItemMapping.java │ │ │ │ │ │ │ ├── QCaseWorkItemReference.java │ │ │ │ │ │ │ └── QCaseWorkItemReferenceMapping.java │ │ │ │ │ ├── common │ │ │ │ │ │ ├── MContainer.java │ │ │ │ │ │ ├── MContainerType.java │ │ │ │ │ │ ├── MContainerWithFullObject.java │ │ │ │ │ │ ├── MGlobalMetadata.java │ │ │ │ │ │ ├── MUri.java │ │ │ │ │ │ ├── QContainer.java │ │ │ │ │ │ ├── QContainerMapping.java │ │ │ │ │ │ ├── QContainerWithFullObject.java │ │ │ │ │ │ ├── QContainerWithFullObjectMapping.java │ │ │ │ │ │ ├── QGlobalMetadata.java │ │ │ │ │ │ └── QUri.java │ │ │ │ │ ├── connector │ │ │ │ │ │ ├── MConnector.java │ │ │ │ │ │ ├── MConnectorDevelopment.java │ │ │ │ │ │ ├── MConnectorHost.java │ │ │ │ │ │ ├── QConnector.java │ │ │ │ │ │ ├── QConnectorDevelopment.java │ │ │ │ │ │ ├── QConnectorDevelopmentMapping.java │ │ │ │ │ │ ├── QConnectorHost.java │ │ │ │ │ │ ├── QConnectorHostMapping.java │ │ │ │ │ │ └── QConnectorMapping.java │ │ │ │ │ ├── ext │ │ │ │ │ │ ├── MExtItem.java │ │ │ │ │ │ ├── MExtItemCardinality.java │ │ │ │ │ │ ├── MExtItemHolderType.java │ │ │ │ │ │ └── QExtItem.java │ │ │ │ │ ├── focus │ │ │ │ │ │ ├── MFocus.java │ │ │ │ │ │ ├── MFocusIdentity.java │ │ │ │ │ │ ├── MUser.java │ │ │ │ │ │ ├── QFocus.java │ │ │ │ │ │ ├── QFocusIdentity.java │ │ │ │ │ │ ├── QFocusIdentityMapping.java │ │ │ │ │ │ ├── QFocusMapping.java │ │ │ │ │ │ ├── QGenericObject.java │ │ │ │ │ │ ├── QGenericObjectMapping.java │ │ │ │ │ │ ├── QUser.java │ │ │ │ │ │ └── QUserMapping.java │ │ │ │ │ ├── lookuptable │ │ │ │ │ │ ├── MLookupTable.java │ │ │ │ │ │ ├── MLookupTableRow.java │ │ │ │ │ │ ├── QLookupTable.java │ │ │ │ │ │ ├── QLookupTableMapping.java │ │ │ │ │ │ ├── QLookupTableRow.java │ │ │ │ │ │ └── QLookupTableRowMapping.java │ │ │ │ │ ├── metadata │ │ │ │ │ │ ├── MValueMetadata.java │ │ │ │ │ │ ├── QValueMetadata.java │ │ │ │ │ │ └── QValueMetadataMapping.java │ │ │ │ │ ├── mining │ │ │ │ │ │ ├── cluster │ │ │ │ │ │ │ ├── MClusterDetectedPattern.java │ │ │ │ │ │ │ ├── MClusterObject.java │ │ │ │ │ │ │ ├── QClusterDetectedPattern.java │ │ │ │ │ │ │ ├── QClusterDetectedPatternMapping.java │ │ │ │ │ │ │ ├── QClusterObject.java │ │ │ │ │ │ │ └── QClusterObjectMapping.java │ │ │ │ │ │ ├── outlier │ │ │ │ │ │ │ ├── MOutlier.java │ │ │ │ │ │ │ ├── MOutlierPartition.java │ │ │ │ │ │ │ ├── QOutlier.java │ │ │ │ │ │ │ ├── QOutlierMapping.java │ │ │ │ │ │ │ ├── QOutlierPartition.java │ │ │ │ │ │ │ └── QOutlierPartitionMapping.java │ │ │ │ │ │ └── session │ │ │ │ │ │ │ ├── MSessionObject.java │ │ │ │ │ │ │ ├── QSessionData.java │ │ │ │ │ │ │ └── QSessionObjectMapping.java │ │ │ │ │ ├── node │ │ │ │ │ │ ├── MNode.java │ │ │ │ │ │ ├── QNode.java │ │ │ │ │ │ └── QNodeMapping.java │ │ │ │ │ ├── notification │ │ │ │ │ │ ├── QMessageTemplate.java │ │ │ │ │ │ └── QMessageTemplateMapping.java │ │ │ │ │ ├── object │ │ │ │ │ │ ├── MObject.java │ │ │ │ │ │ ├── MObjectType.java │ │ │ │ │ │ ├── MOperationExecution.java │ │ │ │ │ │ ├── MTrigger.java │ │ │ │ │ │ ├── QAssignmentHolder.java │ │ │ │ │ │ ├── QAssignmentHolderMapping.java │ │ │ │ │ │ ├── QObject.java │ │ │ │ │ │ ├── QObjectMapping.java │ │ │ │ │ │ ├── QOperationExecution.java │ │ │ │ │ │ ├── QOperationExecutionMapping.java │ │ │ │ │ │ ├── QSeparatelySerializedItem.java │ │ │ │ │ │ ├── QTrigger.java │ │ │ │ │ │ └── QTriggerMapping.java │ │ │ │ │ ├── org │ │ │ │ │ │ ├── MOrg.java │ │ │ │ │ │ ├── MOrgClosure.java │ │ │ │ │ │ ├── QOrg.java │ │ │ │ │ │ ├── QOrgClosure.java │ │ │ │ │ │ └── QOrgMapping.java │ │ │ │ │ ├── other │ │ │ │ │ │ ├── QDashboard.java │ │ │ │ │ │ ├── QDashboardMapping.java │ │ │ │ │ │ ├── QForm.java │ │ │ │ │ │ ├── QFormMapping.java │ │ │ │ │ │ ├── QFunctionLibrary.java │ │ │ │ │ │ ├── QFunctionLibraryMapping.java │ │ │ │ │ │ ├── QObjectCollection.java │ │ │ │ │ │ ├── QObjectCollectionMapping.java │ │ │ │ │ │ ├── QObjectTemplate.java │ │ │ │ │ │ ├── QObjectTemplateMapping.java │ │ │ │ │ │ ├── QSequence.java │ │ │ │ │ │ └── QSequenceMapping.java │ │ │ │ │ ├── ref │ │ │ │ │ │ ├── MObjectReferenceWithMeta.java │ │ │ │ │ │ ├── MReference.java │ │ │ │ │ │ ├── MReferenceType.java │ │ │ │ │ │ ├── QObjectReference.java │ │ │ │ │ │ ├── QObjectReferenceFullObjectMapping.java │ │ │ │ │ │ ├── QObjectReferenceMapping.java │ │ │ │ │ │ ├── QObjectReferenceWithMeta.java │ │ │ │ │ │ ├── QReference.java │ │ │ │ │ │ └── QReferenceMapping.java │ │ │ │ │ ├── report │ │ │ │ │ │ ├── MReportData.java │ │ │ │ │ │ ├── QReport.java │ │ │ │ │ │ ├── QReportData.java │ │ │ │ │ │ ├── QReportDataMapping.java │ │ │ │ │ │ └── QReportMapping.java │ │ │ │ │ ├── resource │ │ │ │ │ │ ├── MResource.java │ │ │ │ │ │ ├── QResource.java │ │ │ │ │ │ └── QResourceMapping.java │ │ │ │ │ ├── role │ │ │ │ │ │ ├── MAbstractRole.java │ │ │ │ │ │ ├── MApplication.java │ │ │ │ │ │ ├── MArchetype.java │ │ │ │ │ │ ├── MPolicy.java │ │ │ │ │ │ ├── MRole.java │ │ │ │ │ │ ├── MService.java │ │ │ │ │ │ ├── QAbstractRole.java │ │ │ │ │ │ ├── QAbstractRoleMapping.java │ │ │ │ │ │ ├── QApplication.java │ │ │ │ │ │ ├── QApplicationMapping.java │ │ │ │ │ │ ├── QArchetype.java │ │ │ │ │ │ ├── QArchetypeMapping.java │ │ │ │ │ │ ├── QPolicy.java │ │ │ │ │ │ ├── QPolicyMapping.java │ │ │ │ │ │ ├── QRole.java │ │ │ │ │ │ ├── QRoleMapping.java │ │ │ │ │ │ ├── QService.java │ │ │ │ │ │ └── QServiceMapping.java │ │ │ │ │ ├── schema │ │ │ │ │ │ ├── QSchema.java │ │ │ │ │ │ └── QSchemaMapping.java │ │ │ │ │ ├── shadow │ │ │ │ │ │ ├── MShadow.java │ │ │ │ │ │ ├── MShadowPartitionDef.java │ │ │ │ │ │ ├── MShadowReferenceAttribute.java │ │ │ │ │ │ ├── QShadow.java │ │ │ │ │ │ ├── QShadowMapping.java │ │ │ │ │ │ ├── QShadowPartitionRef.java │ │ │ │ │ │ ├── QShadowReferenceAttribute.java │ │ │ │ │ │ ├── QShadowReferenceAttributeMapping.java │ │ │ │ │ │ ├── ShadowPartitionManager.java │ │ │ │ │ │ ├── ShadowRefAttributeItemDeltaProcessor.java │ │ │ │ │ │ ├── ShadowRefAttributeItemFilterProcessor.java │ │ │ │ │ │ ├── ShadowReferenceAttributesMapper.java │ │ │ │ │ │ ├── ShadowReferenceAttributesResolver.java │ │ │ │ │ │ └── ShadowReferenceAttributesUpdateContext.java │ │ │ │ │ ├── simulation │ │ │ │ │ │ ├── MProcessedObject.java │ │ │ │ │ │ ├── MProcessedObjectEventMarkReference.java │ │ │ │ │ │ ├── MSimulationResult.java │ │ │ │ │ │ ├── QProcessedObject.java │ │ │ │ │ │ ├── QProcessedObjectEventMarkReference.java │ │ │ │ │ │ ├── QProcessedObjectEventMarkReferenceMapping.java │ │ │ │ │ │ ├── QProcessedObjectMapping.java │ │ │ │ │ │ ├── QSimulationResult.java │ │ │ │ │ │ └── QSimulationResultMapping.java │ │ │ │ │ ├── system │ │ │ │ │ │ ├── QSecurityPolicy.java │ │ │ │ │ │ ├── QSecurityPolicyMapping.java │ │ │ │ │ │ ├── QSystemConfiguration.java │ │ │ │ │ │ ├── QSystemConfigurationMapping.java │ │ │ │ │ │ ├── QValuePolicy.java │ │ │ │ │ │ └── QValuePolicyMapping.java │ │ │ │ │ ├── tag │ │ │ │ │ │ ├── QMark.java │ │ │ │ │ │ └── QMarkMapping.java │ │ │ │ │ └── task │ │ │ │ │ │ ├── MAffectedObjectReference.java │ │ │ │ │ │ ├── MAffectedObjects.java │ │ │ │ │ │ ├── MAffectedResourceObjects.java │ │ │ │ │ │ ├── MTask.java │ │ │ │ │ │ ├── QAffectedObjectReference.java │ │ │ │ │ │ ├── QAffectedObjectReferenceMapping.java │ │ │ │ │ │ ├── QAffectedObjects.java │ │ │ │ │ │ ├── QAffectedObjectsMapping.java │ │ │ │ │ │ ├── QTask.java │ │ │ │ │ │ └── QTaskMapping.java │ │ │ │ │ └── update │ │ │ │ │ ├── AddObjectContext.java │ │ │ │ │ ├── ContainerTableUpdateContext.java │ │ │ │ │ ├── ExtensionUpdateContext.java │ │ │ │ │ ├── NestedContainerUpdateContext.java │ │ │ │ │ ├── RootUpdateContext.java │ │ │ │ │ └── SqaleUpdateContext.java │ │ │ └── resources │ │ │ │ └── ctx-repository.xml │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── repo │ │ │ │ └── sqale │ │ │ │ ├── LightweightIdentifierGeneratorMock.java │ │ │ │ ├── SqaleRepoBaseTest.java │ │ │ │ ├── func │ │ │ │ ├── AuditCleanupTest.java │ │ │ │ ├── AuditDeltaOperationResultTest.java │ │ │ │ ├── AuditSearchTest.java │ │ │ │ ├── ChangedItemPathComputerTest.java │ │ │ │ ├── SequenceFunctionalTest.java │ │ │ │ ├── ShadowPartitioningTest.java │ │ │ │ ├── SimulationsBaselineTest.java │ │ │ │ ├── SimulationsPartitionedTest.java │ │ │ │ ├── SqaleAuditSearchIterativeTest.java │ │ │ │ ├── SqaleAuditSmokeTest.java │ │ │ │ ├── SqaleRepoAddDeleteObjectTest.java │ │ │ │ ├── SqaleRepoIdentityDataTest.java │ │ │ │ ├── SqaleRepoLookupTableTest.java │ │ │ │ ├── SqaleRepoModifyObjectTest.java │ │ │ │ ├── SqaleRepoSearchAggregateTest.java │ │ │ │ ├── SqaleRepoSearchContainersIterativeTest.java │ │ │ │ ├── SqaleRepoSearchIterativeTest.java │ │ │ │ ├── SqaleRepoSearchReferencesIterativeTest.java │ │ │ │ ├── SqaleRepoSearchTest.java │ │ │ │ ├── SqaleRepoSmokeTest.java │ │ │ │ ├── SqaleSearchFullTextTest.java │ │ │ │ └── UriCacheTest.java │ │ │ │ ├── perf │ │ │ │ ├── GetUserTest.java │ │ │ │ ├── MidScaleNewRepoTest.java │ │ │ │ ├── OrgHierarchyPerfTest.java │ │ │ │ └── RoleMemberListRepoTest.java │ │ │ │ └── slow │ │ │ │ ├── IdAllocationConcurrencyTest.java │ │ │ │ └── SequenceConcurrencyTest.java │ │ │ └── resources │ │ │ ├── changed-item-paths │ │ │ └── user.xml │ │ │ ├── config-test.xml │ │ │ ├── ctx-test.xml │ │ │ ├── identity │ │ │ └── user-with-identity-data.xml │ │ │ ├── logback-test.xml │ │ │ ├── lookup-languages.xml │ │ │ └── schema │ │ │ └── extension.xsd │ └── testng-unit.xml ├── repo-sql-impl-test │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── repo │ │ │ │ └── sql │ │ │ │ └── testing │ │ │ │ ├── CarefulAnt.java │ │ │ │ ├── LightweightIdentifierGeneratorMock.java │ │ │ │ ├── ResourceCarefulAntUtil.java │ │ │ │ ├── SqlRepoTestUtil.java │ │ │ │ ├── TestQueryListener.java │ │ │ │ └── TestSqaleRepositoryBeanConfig.java │ │ │ └── resources │ │ │ └── ctx-repository-test.xml │ ├── testng-db-specific.xml │ ├── testng-integration.xml │ ├── testng-perf.xml │ └── testng-unit.xml ├── repo-sqlbase │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── evolveum │ │ └── midpoint │ │ └── repo │ │ └── sqlbase │ │ ├── ConflictWatcherImpl.java │ │ ├── DataSourceFactory.java │ │ ├── JdbcRepositoryConfiguration.java │ │ ├── JdbcSession.java │ │ ├── NativeOnlySupportedException.java │ │ ├── OperationLogger.java │ │ ├── PageOf.java │ │ ├── QueryException.java │ │ ├── RepositoryException.java │ │ ├── RepositoryObjectParseResult.java │ │ ├── SqlBaseOperationTracker.java │ │ ├── SqlQueryContext.java │ │ ├── SqlQueryExecutor.java │ │ ├── SqlRepoContext.java │ │ ├── SqlTableMetadata.java │ │ ├── SupportedDatabase.java │ │ ├── SystemConfigurationChangeDispatcherImpl.java │ │ ├── TransactionIsolation.java │ │ ├── filtering │ │ ├── FilterProcessor.java │ │ ├── NaryLogicalFilterProcessor.java │ │ ├── NotFilterProcessor.java │ │ ├── RightHandProcessor.java │ │ ├── ValueFilterProcessor.java │ │ ├── ValueFilterValues.java │ │ └── item │ │ │ ├── CanonicalItemPathItemFilterProcessor.java │ │ │ ├── DetailTableItemFilterProcessor.java │ │ │ ├── EnumItemFilterProcessor.java │ │ │ ├── EnumOrdinalItemFilterProcessor.java │ │ │ ├── FilterOperation.java │ │ │ ├── ItemValueFilterProcessor.java │ │ │ ├── PolyStringItemFilterProcessor.java │ │ │ ├── SimpleItemFilterProcessor.java │ │ │ ├── SinglePathItemFilterProcessor.java │ │ │ └── TimestampItemFilterProcessor.java │ │ ├── mapping │ │ ├── DefaultItemSqlMapper.java │ │ ├── ItemRelationResolver.java │ │ ├── ItemSqlMapper.java │ │ ├── QueryModelMapping.java │ │ ├── QueryModelMappingRegistry.java │ │ ├── QueryTableMapping.java │ │ ├── RepositoryMappingException.java │ │ ├── ResultListRowTransformer.java │ │ ├── SqlDetailFetchMapper.java │ │ ├── SqlOrderableExpression.java │ │ └── TableRelationResolver.java │ │ ├── perfmon │ │ ├── OutputFormatter.java │ │ ├── PerformanceInformationImpl.java │ │ ├── SqlPerformanceMonitorImpl.java │ │ └── SqlPerformanceMonitorsCollectionImpl.java │ │ └── querydsl │ │ ├── FlexibleRelationalPathBase.java │ │ ├── MidpointOracleTemplates.java │ │ ├── MidpointPostgreSQLTemplates.java │ │ ├── MidpointSQLServerTemplates.java │ │ ├── QuerydslInstantType.java │ │ ├── QuerydslUtils.java │ │ ├── SqaleOps.java │ │ ├── SqlLogger.java │ │ ├── SqlRecorder.java │ │ └── UuidPath.java ├── repo-test-util │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── evolveum │ │ │ └── midpoint │ │ │ └── test │ │ │ ├── AbstractDummyScenario.java │ │ │ ├── AbstractHigherUnitTest.java │ │ │ ├── AbstractIntegrationTest.java │ │ │ ├── AssocName.java │ │ │ ├── AttrName.java │ │ │ ├── Checker.java │ │ │ ├── CsvTestResource.java │ │ │ ├── DummyAddressBookScenario.java │ │ │ ├── DummyAuditEventListener.java │ │ │ ├── DummyAuditService.java │ │ │ ├── DummyAuditServiceFactory.java │ │ │ ├── DummyDefaultScenario.java │ │ │ ├── DummyHrScenario.java │ │ │ ├── DummyObjectsCreator.java │ │ │ ├── DummyObjectsCreatorBuilder.java │ │ │ ├── DummyResourceContoller.java │ │ │ ├── DummyTestResource.java │ │ │ ├── DummyTestResourceInitializer.java │ │ │ ├── ExtensionValueGenerator.java │ │ │ ├── IntegrationTestTools.java │ │ │ ├── MidpointTestContextWithTask.java │ │ │ ├── ObjectChecker.java │ │ │ ├── ObjectClassName.java │ │ │ ├── ObjectCreator.java │ │ │ ├── ObjectCreatorBuilder.java │ │ │ ├── ObjectCustomizer.java │ │ │ ├── ObjectImporter.java │ │ │ ├── ObjectSource.java │ │ │ ├── PredefinedTestMethodTracing.java │ │ │ ├── ProvisioningScriptSpec.java │ │ │ ├── RepoSimpleObjectResolver.java │ │ │ ├── ReportTestUtil.java │ │ │ ├── ResourceTester.java │ │ │ ├── RunFlag.java │ │ │ ├── RunFlagsCollector.java │ │ │ ├── SimpleObjectImporterImpl.java │ │ │ ├── TaskFinishChecker.java │ │ │ ├── TestDir.java │ │ │ ├── TestObject.java │ │ │ ├── TestReport.java │ │ │ ├── TestResource.java │ │ │ ├── TestSpringBeans.java │ │ │ ├── TestTask.java │ │ │ ├── ThreadTestExecutor.java │ │ │ └── asserter │ │ │ ├── AbstractAsserter.java │ │ │ ├── AbstractRoleAsserter.java │ │ │ ├── AccCertCampaignAsserter.java │ │ │ ├── AccCertCaseAsserter.java │ │ │ ├── AccCertCaseFinder.java │ │ │ ├── AccCertCasesAsserter.java │ │ │ ├── AcquisitionMetadataAsserter.java │ │ │ ├── ActionsExecutedInfoAsserter.java │ │ │ ├── ActionsExecutedPartInfoAsserter.java │ │ │ ├── ActivationAsserter.java │ │ │ ├── ActivityBucketManagementStatisticsAsserter.java │ │ │ ├── ActivityCounterGroupAsserter.java │ │ │ ├── ActivityItemProcessingStatisticsAsserter.java │ │ │ ├── ActivityPerformanceInformationAsserter.java │ │ │ ├── ActivityPoliciesStateAsserter.java │ │ │ ├── ActivityPolicyStateAsserter.java │ │ │ ├── ActivityProgressAsserter.java │ │ │ ├── ActivityProgressInformationAsserter.java │ │ │ ├── ActivityStateAsserter.java │ │ │ ├── ActivityStateOverviewAsserter.java │ │ │ ├── ArchetypeAdminGuiConfigurationAsserter.java │ │ │ ├── ArchetypePolicyAsserter.java │ │ │ ├── ArchetypeRefAsserter.java │ │ │ ├── ArchetypeRefFinder.java │ │ │ ├── ArchetypeRefsAsserter.java │ │ │ ├── AssignmentAsserter.java │ │ │ ├── AssignmentFinder.java │ │ │ ├── AssignmentGenerator.java │ │ │ ├── AssignmentHolderAsserter.java │ │ │ ├── AssignmentsAsserter.java │ │ │ ├── CaseAsserter.java │ │ │ ├── CaseEventAsserter.java │ │ │ ├── CaseEventFinder.java │ │ │ ├── CaseEventsAsserter.java │ │ │ ├── CaseFinder.java │ │ │ ├── CaseWorkItemAsserter.java │ │ │ ├── CaseWorkItemFinder.java │ │ │ ├── CaseWorkItemsAsserter.java │ │ │ ├── ComponentsPerformanceInformationAsserter.java │ │ │ ├── ContainerDeltaAsserter.java │ │ │ ├── ContainerPanelConfigurationAsserter.java │ │ │ ├── ContainerPanelConfigurationFinder.java │ │ │ ├── ContainerPanelConfigurationsAsserter.java │ │ │ ├── CsvAsserter.java │ │ │ ├── DisplayTypeAsserter.java │ │ │ ├── DummyAccountAsserter.java │ │ │ ├── DummyGroupAsserter.java │ │ │ ├── DummyObjectAsserter.java │ │ │ ├── DummyOrgAsserter.java │ │ │ ├── ExtensionAsserter.java │ │ │ ├── FocusAsserter.java │ │ │ ├── FocusIdentitiesAsserter.java │ │ │ ├── FocusIdentityAsserter.java │ │ │ ├── FocusNormalizedDataAsserter.java │ │ │ ├── GuiObjectDetailsPageAsserter.java │ │ │ ├── IconTypeAsserter.java │ │ │ ├── ItemConstraintAsserter.java │ │ │ ├── ItemConstraintsAsserter.java │ │ │ ├── ItemsProgressInformationAsserter.java │ │ │ ├── LinkFinder.java │ │ │ ├── LinksAsserter.java │ │ │ ├── ObjectReferenceAsserter.java │ │ │ ├── OperationResultRepoSearchAsserter.java │ │ │ ├── OperationsPerformanceInformationAsserter.java │ │ │ ├── OrgAsserter.java │ │ │ ├── ParentOrgRefAsserter.java │ │ │ ├── ParentOrgRefFinder.java │ │ │ ├── ParentOrgRefsAsserter.java │ │ │ ├── PendingOperationAsserter.java │ │ │ ├── PendingOperationFinder.java │ │ │ ├── PendingOperationsAsserter.java │ │ │ ├── PropertyDeltaAsserter.java │ │ │ ├── ProvenanceMetadataAsserter.java │ │ │ ├── RepoOpAsserter.java │ │ │ ├── RepoShadowAsserter.java │ │ │ ├── ResourceAsserter.java │ │ │ ├── RoleAsserter.java │ │ │ ├── RoleMembershipRefAsserter.java │ │ │ ├── RoleMembershipRefFinder.java │ │ │ ├── RoleMembershipRefsAsserter.java │ │ │ ├── ShadowAsserter.java │ │ │ ├── ShadowAssociationAsserter.java │ │ │ ├── ShadowAssociationValueAsserter.java │ │ │ ├── ShadowAssociationsAsserter.java │ │ │ ├── ShadowAttributesAsserter.java │ │ │ ├── ShadowReferenceAsserter.java │ │ │ ├── ShadowReferenceAttributeAsserter.java │ │ │ ├── ShadowReferenceAttributeValueAsserter.java │ │ │ ├── SubcasesAsserter.java │ │ │ ├── SynchronizationInfoAsserter.java │ │ │ ├── TaskActivityStateAsserter.java │ │ │ ├── TaskAsserter.java │ │ │ ├── TaskInformationAsserter.java │ │ │ ├── TriggerAsserter.java │ │ │ ├── TriggerFinder.java │ │ │ ├── TriggersAsserter.java │ │ │ ├── UserAsserter.java │ │ │ ├── UserInterfaceFeatureAsserter.java │ │ │ ├── UserInterfaceFeatureFinder.java │ │ │ ├── ValueMetadataAsserter.java │ │ │ ├── ValueMetadataValueAsserter.java │ │ │ ├── VirtualContainerItemSpecificationAsserter.java │ │ │ ├── VirtualContainerItemsSpecificationAsserter.java │ │ │ ├── VirtualContainerSpecificationAsserter.java │ │ │ ├── VirtualContainersSpecificationAsserter.java │ │ │ ├── VirtualContainersSpecificationFinder.java │ │ │ ├── predicates │ │ │ ├── AssertionPredicate.java │ │ │ ├── AssertionPredicateEvaluation.java │ │ │ ├── ExceptionBasedAssertionPredicate.java │ │ │ ├── GenericAssertionPredicate.java │ │ │ ├── ReferenceAssertionPredicates.java │ │ │ ├── SimplifiedGenericAssertionPredicate.java │ │ │ ├── StringAssertionPredicates.java │ │ │ └── TimeAssertionPredicates.java │ │ │ ├── prism │ │ │ ├── ComplexTypeDefinitionAsserter.java │ │ │ ├── DeltaCollectionAsserter.java │ │ │ ├── DeltaSetTripleAsserter.java │ │ │ ├── DeltaSetTripleSetAsserter.java │ │ │ ├── ObjectDeltaAsserter.java │ │ │ ├── ObjectDeltaFinder.java │ │ │ ├── ObjectDeltaTypeAsserter.java │ │ │ ├── ObjectFilterAsserter.java │ │ │ ├── PolyStringAsserter.java │ │ │ ├── PrismContainerAsserter.java │ │ │ ├── PrismContainerDefinitionAsserter.java │ │ │ ├── PrismContainerValueAsserter.java │ │ │ ├── PrismContainerValueSetAsserter.java │ │ │ ├── PrismDefinitionAsserter.java │ │ │ ├── PrismItemAsserter.java │ │ │ ├── PrismObjectAsserter.java │ │ │ ├── PrismPropertyAsserter.java │ │ │ ├── PrismPropertyDefinitionAsserter.java │ │ │ ├── PrismPropertyValueAsserter.java │ │ │ ├── PrismPropertyValueSetAsserter.java │ │ │ ├── PrismSchemaAsserter.java │ │ │ ├── PrismValueAsserter.java │ │ │ ├── PrismValueDeltaSetTripleAsserter.java │ │ │ ├── PrismValueDeltaSetTripleSetAsserter.java │ │ │ ├── PrismValueSetAsserter.java │ │ │ └── ProtectedStringAsserter.java │ │ │ └── refinedschema │ │ │ ├── RefinedResourceSchemaAsserter.java │ │ │ ├── ResourceAttributeDefinitionAsserter.java │ │ │ └── ResourceObjectDefinitionAsserter.java │ │ └── resources │ │ ├── ctx-configuration-test-no-repo.xml │ │ ├── ctx-configuration-test.xml │ │ ├── ctx-expression-test.xml │ │ ├── test-config-new-repo.xml │ │ ├── test-config-no-repo.xml │ │ └── test-config.xml ├── security-api │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── evolveum │ │ └── midpoint │ │ └── security │ │ └── api │ │ ├── AuthenticationAnonymousChecker.java │ │ ├── Authorization.java │ │ ├── AuthorizationConstants.java │ │ ├── AuthorizationTransformer.java │ │ ├── ConnectionEnvironment.java │ │ ├── HttpConnectionInformation.java │ │ ├── MidPointPrincipal.java │ │ ├── MidPointPrincipalManager.java │ │ ├── OtherPrivilegesLimitations.java │ │ ├── ProfileCompilerOptions.java │ │ ├── RestAuthenticationMethod.java │ │ ├── RestAuthorizationAction.java │ │ ├── RestHandlerMethod.java │ │ ├── SecurityContextManager.java │ │ ├── SecurityContextManagerAware.java │ │ ├── SecurityUtil.java │ │ └── package-info.java ├── security-enforcer-api │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── evolveum │ │ └── midpoint │ │ └── security │ │ └── enforcer │ │ └── api │ │ ├── AbstractAuthorizationParameters.java │ │ ├── AuthorizationParameters.java │ │ ├── CompileConstraintsOptions.java │ │ ├── FilterGizmo.java │ │ ├── ItemSecurityConstraints.java │ │ ├── ObjectSecurityConstraints.java │ │ ├── PositiveNegativeItemPaths.java │ │ ├── PrismEntityOpConstraints.java │ │ ├── SecurityEnforcer.java │ │ ├── SecurityEnforcerUtil.java │ │ └── ValueAuthorizationParameters.java ├── security-enforcer-impl │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── evolveum │ │ │ └── midpoint │ │ │ └── security │ │ │ └── enforcer │ │ │ └── impl │ │ │ ├── AuthorizationEvaluation.java │ │ │ ├── AuthorizationFilterEvaluation.java │ │ │ ├── AuthorizationLimitationsCollector.java │ │ │ ├── AuthorizationSearchItemsEvaluation.java │ │ │ ├── AutzItemPaths.java │ │ │ ├── Beans.java │ │ │ ├── CompileConstraintsOperation.java │ │ │ ├── EnforcerDecisionOperation.java │ │ │ ├── EnforcerFilterOperation.java │ │ │ ├── EnforcerOperation.java │ │ │ ├── FilterGizmoObjectFilterImpl.java │ │ │ ├── ItemDecisionFunction.java │ │ │ ├── ItemDecisionOperation.java │ │ │ ├── ItemSecurityConstraintsImpl.java │ │ │ ├── LogBasedEnforcerAndSelectorTracer.java │ │ │ ├── ObjectSecurityConstraintsImpl.java │ │ │ ├── PhaseSelector.java │ │ │ ├── PhasedConstraints.java │ │ │ ├── QueryObjectAutzCoverage.java │ │ │ ├── QueryObjectsAutzCoverage.java │ │ │ ├── SecurityEnforcerImpl.java │ │ │ ├── SecurityTraceEvent.java │ │ │ ├── SelectorEvaluation.java │ │ │ ├── SelectorFilterEvaluation.java │ │ │ ├── SelectorWithItems.java │ │ │ ├── TieredSelectorWithItems.java │ │ │ ├── TracingUtil.java │ │ │ └── prism │ │ │ ├── PrismEntityCoverage.java │ │ │ ├── PrismEntityCoverageInformation.java │ │ │ ├── PrismItemCoverageInformation.java │ │ │ ├── PrismValueCoverageInformation.java │ │ │ ├── SinglePhasePrismEntityOpConstraintsImpl.java │ │ │ ├── TwoPhasesPrismEntityOpConstraintsImpl.java │ │ │ └── UpdatablePrismEntityOpConstraints.java │ │ └── resources │ │ └── ctx-security-enforcer.xml ├── security-impl │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── evolveum │ │ │ │ │ └── midpoint │ │ │ │ │ └── security │ │ │ │ │ └── impl │ │ │ │ │ └── SecurityContextManagerImpl.java │ │ │ └── resources │ │ │ │ └── ctx-security.xml │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── security │ │ │ │ └── impl │ │ │ │ ├── MidPointPrincipalManagerMock.java │ │ │ │ └── TestEmpty.java │ │ │ └── resources │ │ │ ├── ctx-security-test-main.xml │ │ │ ├── ctx-security-test.xml │ │ │ ├── logback-test.xml │ │ │ ├── security-policy.xml │ │ │ ├── system-configuration.xml │ │ │ └── user-jack.xml │ └── testng-unit.xml ├── system-init │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── evolveum │ │ │ │ │ └── midpoint │ │ │ │ │ └── init │ │ │ │ │ ├── ApplicationHomeSetup.java │ │ │ │ │ ├── AuditFactory.java │ │ │ │ │ ├── AuditServiceProxy.java │ │ │ │ │ ├── ConfigurablePrismContextFactory.java │ │ │ │ │ ├── ConfigurableProtector.java │ │ │ │ │ ├── ConfigurableProtectorFactory.java │ │ │ │ │ ├── ProtectorConfiguration.java │ │ │ │ │ ├── StartupConfiguration.java │ │ │ │ │ ├── SystemConfigurationSectionImpl.java │ │ │ │ │ ├── SystemUtil.java │ │ │ │ │ └── interpol │ │ │ │ │ ├── HostnameLookup.java │ │ │ │ │ └── RandomLookup.java │ │ │ └── resources │ │ │ │ ├── config.xml │ │ │ │ ├── ctx-configuration-10-system-init.xml │ │ │ │ ├── ctx-configuration-20-protector.xml │ │ │ │ ├── ctx-configuration-30-audit-factory.xml │ │ │ │ ├── ctx-configuration-40-prism.xml │ │ │ │ ├── ctx-configuration-no-repo.xml │ │ │ │ ├── ctx-configuration.xml │ │ │ │ ├── initial-objects │ │ │ │ ├── archetype │ │ │ │ │ ├── 020-archetype-system-user.xml │ │ │ │ │ ├── 021-archetype-system-role.xml │ │ │ │ │ ├── 022-archetype-business-role.xml │ │ │ │ │ ├── 023-archetype-manual-provisioning-case.xml │ │ │ │ │ ├── 024-archetype-operation-request.xml │ │ │ │ │ ├── 025-archetype-approval-case.xml │ │ │ │ │ ├── 026-archetype-trace.xml │ │ │ │ │ ├── 027-archetype-correlation-case.xml │ │ │ │ │ ├── 028-archetype-application-role.xml │ │ │ │ │ ├── 029-archetype-application.xml │ │ │ │ │ ├── 059-archetype-report.xml │ │ │ │ │ ├── 060-archetype-report-dashboard.xml │ │ │ │ │ ├── 061-archetype-report-collection.xml │ │ │ │ │ ├── 062-archetype-classification.xml │ │ │ │ │ ├── 063-archetype-clearance.xml │ │ │ │ │ ├── 150-archetype-location.xml │ │ │ │ │ ├── 150-archetype-organization.xml │ │ │ │ │ ├── 150-archetype-organizational-unit.xml │ │ │ │ │ ├── 150-archetype-project.xml │ │ │ │ │ ├── 150-archetype-team.xml │ │ │ │ │ ├── 501-archetype-task-reconciliation.xml │ │ │ │ │ ├── 502-archetype-task-recomputation.xml │ │ │ │ │ ├── 503-archetype-task-import.xml │ │ │ │ │ ├── 504-archetype-task-live-sync.xml │ │ │ │ │ ├── 505-archetype-task-async-update.xml │ │ │ │ │ ├── 506-archetype-task-cleanup.xml │ │ │ │ │ ├── 507-archetype-task-report.xml │ │ │ │ │ ├── 508-archetype-task-single-bulk-action.xml │ │ │ │ │ ├── 509-archetype-task-iterative-bulk-action.xml │ │ │ │ │ ├── 510-archetype-task-report-import-classic.xml │ │ │ │ │ ├── 511-archetype-task-report-export-classic.xml │ │ │ │ │ ├── 512-archetype-task-report-export-distributed.xml │ │ │ │ │ ├── 513-archetype-task-shadow-integrity-check.xml │ │ │ │ │ ├── 514-archetype-task-shadows-refresh.xml │ │ │ │ │ ├── 515-archetype-task-objects-delete.xml │ │ │ │ │ ├── 516-archetype-task-shadows-delete-long-time-not-updated.xml │ │ │ │ │ ├── 517-archetype-task-execute-change.xml │ │ │ │ │ ├── 518-archetype-task-execute-deltas.xml │ │ │ │ │ ├── 519-archetype-task-reindex-repository.xml │ │ │ │ │ ├── 520-archetype-task-certification.xml │ │ │ │ │ ├── 521-archetype-task-approval.xml │ │ │ │ │ ├── 522-archetype-task-object-integrity-check.xml │ │ │ │ │ ├── 523-archetype-task-shadow-reclassification.xml │ │ │ │ │ ├── 528-archetype-task-util.xml │ │ │ │ │ ├── 529-archetype-task-system.xml │ │ │ │ │ ├── 530-archetype-task-validity.xml │ │ │ │ │ ├── 531-archetype-task-trigger.xml │ │ │ │ │ ├── 532-archetype-task-propagation.xml │ │ │ │ │ ├── 533-archetype-task-multi-propagation.xml │ │ │ │ │ ├── 534-archetype-task-certification-open-next-stage.xml │ │ │ │ │ ├── 535-archetype-task-certification-remediation.xml │ │ │ │ │ ├── 536-archetype-task-certification-start-campaign.xml │ │ │ │ │ ├── 537-archetype-task-certification-close-current-stage.xml │ │ │ │ │ ├── 538-archetype-task-certification-reiterate-campaign.xml │ │ │ │ │ ├── 700-archetype-event-mark.xml │ │ │ │ │ ├── 701-archetype-object-mark.xml │ │ │ │ │ ├── 702-archetype-person.xml │ │ │ │ │ ├── 703-archetype-resource-template.xml │ │ │ │ │ └── 705-archetype-shadow-policy-mark.xml │ │ │ │ ├── dashboard │ │ │ │ │ ├── 310-dashboard-admin.xml │ │ │ │ │ └── 899-dashboard-compliance.xml │ │ │ │ ├── lookup-table │ │ │ │ │ ├── 200-lookup-languages.xml │ │ │ │ │ ├── 210-lookup-locales.xml │ │ │ │ │ ├── 220-lookup-timezones.xml │ │ │ │ │ ├── 230-lookup-lifecycle-state.xml │ │ │ │ │ └── 240-lookup-state.xml │ │ │ │ ├── mark │ │ │ │ │ ├── 250-mark-no-classification.xml │ │ │ │ │ ├── 250-mark-privileged-access.xml │ │ │ │ │ ├── 250-mark-unowned.xml │ │ │ │ │ ├── 710-mark-focus-activated.xml │ │ │ │ │ ├── 711-mark-focus-deactivated.xml │ │ │ │ │ ├── 712-mark-focus-renamed.xml │ │ │ │ │ ├── 713-mark-focus-assignment-changed.xml │ │ │ │ │ ├── 714-mark-focus-archetype-changed.xml │ │ │ │ │ ├── 715-mark-focus-parent-org-reference-changed.xml │ │ │ │ │ ├── 716-mark-focus-role-membership-changed.xml │ │ │ │ │ ├── 730-mark-projection-activated.xml │ │ │ │ │ ├── 731-mark-projection-deactivated.xml │ │ │ │ │ ├── 732-mark-projection-renamed.xml │ │ │ │ │ ├── 733-mark-projection-identifier-changed.xml │ │ │ │ │ ├── 734-mark-projection-entitlement-changed.xml │ │ │ │ │ ├── 735-mark-projection-password-changed.xml │ │ │ │ │ ├── 736-mark-shadow-classification-changed.xml │ │ │ │ │ ├── 737-mark-shadow-correlation-state-changed.xml │ │ │ │ │ ├── 738-mark-projection-resource-object-affected.xml │ │ │ │ │ ├── 800-mark-protected.xml │ │ │ │ │ ├── 801-mark-decommission-later.xml │ │ │ │ │ ├── 802-mark-correlate-later.xml │ │ │ │ │ ├── 803-mark-do-not-touch.xml │ │ │ │ │ ├── 804-mark-invalid-data.xml │ │ │ │ │ ├── 805-mark-unmanaged.xml │ │ │ │ │ ├── 806-mark-managed.xml │ │ │ │ │ ├── 811-exclusion-violation.xml │ │ │ │ │ ├── 812-requirement-violation.xml │ │ │ │ │ ├── 813-underassigned.xml │ │ │ │ │ ├── 814-overassigned.xml │ │ │ │ │ ├── 815-object-modified.xml │ │ │ │ │ ├── 816-assignment-modified.xml │ │ │ │ │ ├── 817-has-assignment.xml │ │ │ │ │ ├── 818-has-no-assignment.xml │ │ │ │ │ ├── 819-object-state.xml │ │ │ │ │ ├── 820-assignment-state.xml │ │ │ │ │ ├── 821-object-time-validity.xml │ │ │ │ │ ├── 822-assignment-time-validity.xml │ │ │ │ │ └── 830-suspicious.xml │ │ │ │ ├── object-collection │ │ │ │ │ ├── 250-object-collection-resource-all.xml │ │ │ │ │ ├── 251-object-collection-resource-up.xml │ │ │ │ │ ├── 252-object-collection-application-role.xml │ │ │ │ │ ├── 253-object-collection-application-active.xml │ │ │ │ │ ├── 253-object-collection-application.xml │ │ │ │ │ ├── 260-object-collection-task-all.xml │ │ │ │ │ ├── 261-object-collection-task-active.xml │ │ │ │ │ ├── 262-object-collection-task-report.xml │ │ │ │ │ ├── 263-object-collection-task-certification.xml │ │ │ │ │ ├── 270-object-collection-audit.xml │ │ │ │ │ ├── 271-object-collection-audit-24h.xml │ │ │ │ │ ├── 272-object-collection-audit-errors-24h.xml │ │ │ │ │ ├── 273-object-collection-audit-modifications-24h.xml │ │ │ │ │ ├── 280-object-collection-certification-campaign-all.xml │ │ │ │ │ ├── 290-object-collection-shadow-all.xml │ │ │ │ │ ├── 330-object-collection-my-cases.xml │ │ │ │ │ ├── 340-object-collection-resource-templates.xml │ │ │ │ │ ├── 350-object-collection-application-suspicious.xml │ │ │ │ │ ├── 350-object-collection-application-unowned.xml │ │ │ │ │ ├── 350-object-collection-application-without-classification.xml │ │ │ │ │ ├── 350-object-collection-privileged-users.xml │ │ │ │ │ ├── 350-object-collection-role-active.xml │ │ │ │ │ ├── 350-object-collection-role-all.xml │ │ │ │ │ ├── 350-object-collection-role-unowned.xml │ │ │ │ │ ├── 350-object-collection-user-active.xml │ │ │ │ │ ├── 352-suspicious-objects.xml │ │ │ │ │ ├── 353-users-with-sod-violations.xml │ │ │ │ │ ├── 354-roles-privileged.xml │ │ │ │ │ ├── 357-suspicious-roles.xml │ │ │ │ │ └── 358-suspicious-users.xml │ │ │ │ ├── object-templates │ │ │ │ │ └── 380-object-template-person.xml │ │ │ │ ├── org │ │ │ │ │ ├── 390-org-projects.xml │ │ │ │ │ ├── 390-org-teams.xml │ │ │ │ │ └── 390-org-world.xml │ │ │ │ ├── policy │ │ │ │ │ ├── 300-classification-privileged-access.xml │ │ │ │ │ ├── 300-policy-require-classification.xml │ │ │ │ │ └── 300-policy-require-owner.xml │ │ │ │ ├── report │ │ │ │ │ ├── 090-report-audit.xml │ │ │ │ │ ├── 100-report-reconciliation.xml │ │ │ │ │ ├── 110-report-user-list.xml │ │ │ │ │ ├── 130-report-certification-definitions.xml │ │ │ │ │ ├── 140-report-certification-campaigns.xml │ │ │ │ │ ├── 150-report-certification-cases.xml │ │ │ │ │ ├── 160-report-certification-work-items.xml │ │ │ │ │ ├── 170-report-simulation-objects.xml │ │ │ │ │ ├── 171-report-simulation-objects-with-metrics.xml │ │ │ │ │ ├── 172-report-simulation-items-changed.xml │ │ │ │ │ ├── 173-report-simulation-values-changed.xml │ │ │ │ │ ├── 180-report-simulation-results.xml │ │ │ │ │ └── 200-report-indirect-assignments.xml │ │ │ │ ├── role │ │ │ │ │ ├── 030-role-superuser.xml │ │ │ │ │ ├── 040-role-enduser.xml │ │ │ │ │ ├── 041-role-approver.xml │ │ │ │ │ ├── 042-role-reviewer.xml │ │ │ │ │ └── 043-role-delegator.xml │ │ │ │ ├── security-policy │ │ │ │ │ └── 015-security-policy.xml │ │ │ │ ├── service │ │ │ │ │ ├── 600-origin-internal.xml │ │ │ │ │ ├── 601-origin-user-entry.xml │ │ │ │ │ ├── 602-origin-artificial-intelligence.xml │ │ │ │ │ ├── 603-origin-system-intelligence.xml │ │ │ │ │ └── 610-service-identity-recovery.xml │ │ │ │ ├── system-configuration │ │ │ │ │ └── 000-system-configuration.xml │ │ │ │ ├── task │ │ │ │ │ ├── 550-task-cleanup.xml │ │ │ │ │ ├── 560-task-validity.xml │ │ │ │ │ ├── 570-task-trigger.xml │ │ │ │ │ └── 910-task-recompute-all-users.xml │ │ │ │ ├── user │ │ │ │ │ └── 050-user-administrator.xml │ │ │ │ └── value-policy │ │ │ │ │ └── 010-value-policy.xml │ │ │ │ └── midpoint-system.properties │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── init │ │ │ │ ├── TestConfigurationLoad.java │ │ │ │ └── TestInitialObjects.java │ │ │ └── resources │ │ │ └── logback-test.xml │ └── testng-unit.xml ├── task-api │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── evolveum │ │ └── midpoint │ │ ├── casemgmt │ │ └── api │ │ │ ├── CaseCreationListener.java │ │ │ ├── CaseEventDispatcher.java │ │ │ └── CaseEventDispatcherAware.java │ │ └── task │ │ └── api │ │ ├── CanRunSupplier.java │ │ ├── ClusterExecutionHelper.java │ │ ├── ClusterExecutionOptions.java │ │ ├── ConnIdOperationsListener.java │ │ ├── ExecutionSupport.java │ │ ├── ExitHandlerException.java │ │ ├── ExpressionEnvironment.java │ │ ├── ExpressionEnvironmentSupplier.java │ │ ├── LightweightIdentifier.java │ │ ├── LightweightIdentifierGenerator.java │ │ ├── LightweightTaskHandler.java │ │ ├── ParentAndRoot.java │ │ ├── RunningLightweightTask.java │ │ ├── RunningTask.java │ │ ├── RunningTaskStatisticsCollector.java │ │ ├── SimulationData.java │ │ ├── SimulationDataConsumer.java │ │ ├── SimulationResult.java │ │ ├── SimulationTransaction.java │ │ ├── StatisticsCollectionStrategy.java │ │ ├── Task.java │ │ ├── TaskConstants.java │ │ ├── TaskDebugUtil.java │ │ ├── TaskDeletionListener.java │ │ ├── TaskException.java │ │ ├── TaskHandler.java │ │ ├── TaskListener.java │ │ ├── TaskManager.java │ │ ├── TaskManagerAware.java │ │ ├── TaskManagerConfigurationException.java │ │ ├── TaskManagerException.java │ │ ├── TaskManagerInitializationException.java │ │ ├── TaskManagerUtil.java │ │ ├── TaskPersistenceStatus.java │ │ ├── TaskRunResult.java │ │ ├── TaskUpdatedListener.java │ │ ├── TaskUtil.java │ │ ├── Tracer.java │ │ ├── UseThreadInterrupt.java │ │ └── test │ │ └── NullTaskImpl.java └── task-quartz-impl │ ├── pom.xml │ ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ ├── casemgmt │ │ │ │ └── impl │ │ │ │ │ └── CaseEventDispatcherImpl.java │ │ │ │ └── task │ │ │ │ └── quartzimpl │ │ │ │ ├── GlobalTracingOverride.java │ │ │ │ ├── LightweightIdentifierGeneratorImpl.java │ │ │ │ ├── LightweightTaskManager.java │ │ │ │ ├── LocalNodeState.java │ │ │ │ ├── NodeIdComputer.java │ │ │ │ ├── RunningLightweightTaskImpl.java │ │ │ │ ├── RunningTaskQuartzImpl.java │ │ │ │ ├── TaskBeans.java │ │ │ │ ├── TaskHandlerRegistry.java │ │ │ │ ├── TaskListenerRegistry.java │ │ │ │ ├── TaskManagerConfiguration.java │ │ │ │ ├── TaskManagerInitializer.java │ │ │ │ ├── TaskManagerQuartzImpl.java │ │ │ │ ├── TaskQuartzImpl.java │ │ │ │ ├── UpAndDown.java │ │ │ │ ├── cluster │ │ │ │ ├── ClusterExecutionHelperImpl.java │ │ │ │ ├── ClusterManager.java │ │ │ │ ├── ClusterStatusInformation.java │ │ │ │ ├── ClusterStatusInformationRetriever.java │ │ │ │ └── NodeRegistrar.java │ │ │ │ ├── execution │ │ │ │ ├── JmxClient.java │ │ │ │ ├── LocalExecutionManager.java │ │ │ │ ├── RemoteSchedulers.java │ │ │ │ ├── Schedulers.java │ │ │ │ ├── StalledTasksWatcher.java │ │ │ │ ├── TaskStopper.java │ │ │ │ ├── TaskThreadsDumper.java │ │ │ │ ├── package-info.java │ │ │ │ └── remote │ │ │ │ │ └── RestConnector.java │ │ │ │ ├── handlers │ │ │ │ └── JdbcPingTaskHandler.java │ │ │ │ ├── nodes │ │ │ │ ├── NodeCleaner.java │ │ │ │ ├── NodeRetriever.java │ │ │ │ └── package-info.java │ │ │ │ ├── quartz │ │ │ │ ├── LocalScheduler.java │ │ │ │ ├── NextStartTimes.java │ │ │ │ ├── QuartzInitializationHelper.java │ │ │ │ ├── QuartzUtil.java │ │ │ │ ├── RepositoryConnectionProvider.java │ │ │ │ ├── TaskSynchronizer.java │ │ │ │ └── package-info.java │ │ │ │ ├── run │ │ │ │ ├── BucketAwareHandlerExecution.java │ │ │ │ ├── ConcurrentExecutionChecker.java │ │ │ │ ├── GroupLimitsChecker.java │ │ │ │ ├── HandlerExecutor.java │ │ │ │ ├── JobExecutor.java │ │ │ │ ├── StopJobException.java │ │ │ │ ├── StopTaskException.java │ │ │ │ ├── TaskCycleExecutor.java │ │ │ │ └── package-info.java │ │ │ │ ├── statistics │ │ │ │ └── Statistics.java │ │ │ │ ├── tasks │ │ │ │ ├── CloseHelper.java │ │ │ │ ├── NodeFoundDeadHelper.java │ │ │ │ ├── ResumeHelper.java │ │ │ │ ├── ScheduleNowHelper.java │ │ │ │ ├── SuspendAndDeleteHelper.java │ │ │ │ ├── TaskCleaner.java │ │ │ │ ├── TaskInstantiator.java │ │ │ │ ├── TaskMigrator.java │ │ │ │ ├── TaskPersister.java │ │ │ │ ├── TaskRetriever.java │ │ │ │ ├── TaskStateManager.java │ │ │ │ ├── UnpauseHelper.java │ │ │ │ └── package-info.java │ │ │ │ ├── tracing │ │ │ │ ├── LogCompressor.java │ │ │ │ ├── TracerImpl.java │ │ │ │ └── TracingOutputCreator.java │ │ │ │ └── util │ │ │ │ └── TimeBoundary.java │ │ └── resources │ │ │ ├── com │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── task │ │ │ │ └── quartzimpl │ │ │ │ └── execution │ │ │ │ ├── readme.txt │ │ │ │ ├── tables_oracle.sql │ │ │ │ ├── tables_postgres.sql │ │ │ │ └── tables_sqlServer.sql │ │ │ └── ctx-task.xml │ └── test │ │ ├── java │ │ └── com │ │ │ └── evolveum │ │ │ └── midpoint │ │ │ └── task │ │ │ └── quartzimpl │ │ │ ├── AbstractTaskManagerTest.java │ │ │ ├── CleanupTest.java │ │ │ ├── MockParallelTaskHandler.java │ │ │ ├── MockTaskHandler.java │ │ │ ├── TestMiscellaneous.java │ │ │ ├── TestTaskManagerBasic.java │ │ │ └── TestTaskManagerJdbc.java │ │ └── resources │ │ ├── basic │ │ ├── owner.xml │ │ ├── owner2.xml │ │ ├── task-allowed-not.xml │ │ ├── task-allowed.xml │ │ ├── task-cycle-loose-cron.xml │ │ ├── task-cycle-loose.xml │ │ ├── task-cycle-tight.xml │ │ ├── task-dummy.xml │ │ ├── task-for-extension-test.xml │ │ ├── task-group-limit-concurrent.xml │ │ ├── task-group-limit.xml │ │ ├── task-long-running.xml │ │ ├── task-non-existing-owner.xml │ │ ├── task-run-on-demand.xml │ │ ├── task-sec-group-limit-exp-1-ram-1.xml │ │ ├── task-sec-group-limit-exp-1.xml │ │ ├── task-sec-group-limit-ram-null.xml │ │ ├── task-simple-waiting.xml │ │ ├── task-single-run.xml │ │ ├── task-suspended-tree-child-1-1.xml │ │ ├── task-suspended-tree-child-1.xml │ │ ├── task-suspended-tree-child-2.xml │ │ ├── task-suspended-tree-root.xml │ │ ├── task-to-delete.xml │ │ ├── task-to-resume-and-suspend.xml │ │ ├── task-to-suspend.xml │ │ ├── task-tree-child-1.xml │ │ ├── task-tree-child-2.xml │ │ ├── task-tree-root.xml │ │ ├── task-waiting-for-no-one.xml │ │ ├── task-with-threads-to-suspend.xml │ │ ├── task-with-threads.xml │ │ ├── task-without-progress.xml │ │ └── tasks-for-cleanup.xml │ │ ├── common │ │ ├── system-configuration.xml │ │ └── user-administrator.xml │ │ ├── ctx-task-test.xml │ │ ├── logback-test.xml │ │ ├── miscellaneous │ │ ├── task-42-closed.xml │ │ ├── task-42-runnable.xml │ │ ├── task-42-suspended.xml │ │ └── task-42-waiting.xml │ │ └── schema │ │ └── extension.xsd │ ├── testng-integration.xml │ └── testng-unit.xml ├── samples └── README ├── testing ├── conntest │ ├── pom.xml │ ├── src │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── testing │ │ │ │ └── conntest │ │ │ │ ├── Abstract389DsDnTest.java │ │ │ │ ├── Abstract389DsNsUniqueIdTest.java │ │ │ │ ├── Abstract389DsTest.java │ │ │ │ ├── AbstractEDirTest.java │ │ │ │ ├── AbstractLdapConnTest.java │ │ │ │ ├── AbstractLdapSynchronizationTest.java │ │ │ │ ├── AbstractLdapTest.java │ │ │ │ ├── Test389DsDnLocalhost.java │ │ │ │ ├── Test389DsDnPhobos.java │ │ │ │ ├── Test389DsNsUniqueIdLocalhost.java │ │ │ │ ├── Test389DsNsUniqueIdPhobos.java │ │ │ │ ├── TestEDirAthena.java │ │ │ │ ├── TestEDirDeimos.java │ │ │ │ ├── TestOpenLdap.java │ │ │ │ ├── TestOpenLdapDumber.java │ │ │ │ ├── UserLdapConnectionConfig.java │ │ │ │ ├── ad │ │ │ │ ├── AbstractAdLdapTest.java │ │ │ │ ├── AdTestMixin.java │ │ │ │ ├── big │ │ │ │ │ └── AbstractAdLdapBigTest.java │ │ │ │ ├── multidomain │ │ │ │ │ ├── AbstractAdLdapMultidomainRunAsTest.java │ │ │ │ │ ├── AbstractAdLdapMultidomainTest.java │ │ │ │ │ ├── TestAdLdapAd2019.java │ │ │ │ │ ├── TestAdLdapAd2019Strange.java │ │ │ │ │ ├── TestAdLdapAd2022.java │ │ │ │ │ ├── TestAdLdapAd2022Strange.java │ │ │ │ │ ├── TestAdLdapChimera.java │ │ │ │ │ ├── TestAdLdapChimeraNativeSchema.java │ │ │ │ │ ├── TestAdLdapChimeraRunAs.java │ │ │ │ │ └── TestAdLdapChimeraStrange.java │ │ │ │ └── simple │ │ │ │ │ ├── AbstractAdLdapCookedTest.java │ │ │ │ │ ├── AbstractAdLdapRawTest.java │ │ │ │ │ ├── AbstractAdLdapSimpleTest.java │ │ │ │ │ ├── TestAdLdapLocalhost.java │ │ │ │ │ ├── TestAdLdapMedusa.java │ │ │ │ │ ├── TestAdLdapMedusaSyncTimestamp.java │ │ │ │ │ ├── TestAdLdapRawLocalhost.java │ │ │ │ │ └── TestAdLdapRawMedusa.java │ │ │ │ └── opendj │ │ │ │ ├── AbstractOpenDjNoiseTest.java │ │ │ │ ├── TestOpenDj.java │ │ │ │ ├── TestOpenDjDn.java │ │ │ │ ├── TestOpenDjDumber.java │ │ │ │ └── TestOpenDjUnsafe.java │ │ │ └── resources │ │ │ ├── 389ds │ │ │ ├── resource-dn-localhost.xml │ │ │ ├── resource-dn-phobos.xml │ │ │ ├── resource-nsuniqueid-localhost.xml │ │ │ ├── resource-nsuniqueid-phobos.xml │ │ │ ├── task-sync-inetorgperson.xml │ │ │ └── task-sync.xml │ │ │ ├── ad-ldap-big │ │ │ └── role-big.xml │ │ │ ├── ad-ldap-multidomain │ │ │ ├── resource-ad2019-strange.xml │ │ │ ├── resource-ad2019.xml │ │ │ ├── resource-ad2022-strange.xml │ │ │ ├── resource-ad2022.xml │ │ │ ├── resource-chimera-native-schema.xml │ │ │ ├── resource-chimera-runas.xml │ │ │ ├── resource-chimera-strange.xml │ │ │ ├── resource-chimera.xml │ │ │ ├── role-meta-org-group.xml │ │ │ ├── role-meta-org.xml │ │ │ ├── role-pirate.xml │ │ │ ├── role-submissive.xml │ │ │ ├── shadow-ghost-2019.xml │ │ │ ├── shadow-ghost-2022.xml │ │ │ ├── task-reconcile-ad2019-users.xml │ │ │ ├── task-reconcile-ad2022-users.xml │ │ │ ├── task-reconcile-chimera-users.xml │ │ │ ├── task-sync.xml │ │ │ ├── user-subman.xml │ │ │ └── user-submarine.xml │ │ │ ├── ad-ldap-simple │ │ │ ├── resource-localhost.xml │ │ │ ├── resource-medusa-sync-timestamp.xml │ │ │ ├── resource-medusa.xml │ │ │ ├── resource-raw-localhost.xml │ │ │ ├── resource-raw-medusa.xml │ │ │ ├── role-meta-org.xml │ │ │ ├── role-pirate.xml │ │ │ ├── task-sync-user.xml │ │ │ └── task-sync.xml │ │ │ ├── common │ │ │ ├── role-end-user.xml │ │ │ ├── role-evil.xml │ │ │ ├── role-superuser.xml │ │ │ ├── role-undead.xml │ │ │ ├── system-configuration.xml │ │ │ ├── user-administrator.xml │ │ │ ├── user-barbossa.xml │ │ │ ├── user-guybrush.xml │ │ │ └── user-lechuck.xml │ │ │ ├── ctx-conntest-test-main.xml │ │ │ ├── ctx-conntest-test.xml │ │ │ ├── edir │ │ │ ├── resource-athena.xml │ │ │ ├── resource-deimos.xml │ │ │ ├── role-meta-org.xml │ │ │ └── role-pirate.xml │ │ │ ├── logback-test.xml │ │ │ ├── logging.properties │ │ │ ├── opendj-dumber │ │ │ ├── resource.xml │ │ │ ├── shadow-bilbo.xml │ │ │ ├── task-sync-inetorgperson.xml │ │ │ └── task-sync.xml │ │ │ ├── opendj │ │ │ ├── resource-dn.xml │ │ │ ├── resource-unsafe.xml │ │ │ ├── resource.xml │ │ │ ├── shadow-bilbo-dn.xml │ │ │ ├── shadow-bilbo.xml │ │ │ ├── task-sync-inetorgperson.xml │ │ │ └── task-sync.xml │ │ │ ├── openldap-dumber │ │ │ ├── resource.xml │ │ │ ├── task-sync-inetorgperson.xml │ │ │ └── task-sync.xml │ │ │ ├── openldap │ │ │ ├── resource.xml │ │ │ ├── task-sync-inetorgperson.xml │ │ │ └── task-sync.xml │ │ │ ├── schema │ │ │ └── extension-whatever.xsd │ │ │ └── truststore.jks │ └── testng-integration.xml ├── longtest │ ├── pom.xml │ ├── src │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── testing │ │ │ │ └── longtest │ │ │ │ ├── AbstractLongTest.java │ │ │ │ ├── TestGenericSynchronization.java │ │ │ │ ├── TestLdap.java │ │ │ │ ├── TestLdapComplex.java │ │ │ │ ├── TestLdapUniversity.java │ │ │ │ ├── TestOrgHierarchy.java │ │ │ │ └── TestRunAs.java │ │ │ └── resources │ │ │ ├── common │ │ │ ├── dot.jpg │ │ │ ├── object-template-org.xml │ │ │ ├── resource-opendj-generic-sync.xml │ │ │ ├── resource-opendj-university.xml │ │ │ ├── resource-opendj-vlv.xml │ │ │ ├── resource-opendj.xml │ │ │ ├── role-superuser.xml │ │ │ ├── system-configuration.xml │ │ │ ├── user-administrator.xml │ │ │ ├── user-barbossa.xml │ │ │ └── user-guybrush.xml │ │ │ ├── ctx-longtest-test-main.xml │ │ │ ├── ctx-longtest-test.xml │ │ │ ├── ldap-complex │ │ │ ├── org.xml │ │ │ ├── resource-opendj-complex.xml │ │ │ ├── role-captain.xml │ │ │ ├── role-judge.xml │ │ │ ├── role-pirate.xml │ │ │ ├── role-sailor.xml │ │ │ ├── role-security.xml │ │ │ ├── roles.ldif │ │ │ └── user-template.xml │ │ │ ├── ldap │ │ │ ├── role-pirate.xml │ │ │ ├── task-delete-opendj-accounts.xml │ │ │ └── task-delete-opendj-shadows.xml │ │ │ ├── logback-test.xml │ │ │ ├── logging.properties │ │ │ ├── runas │ │ │ ├── resource-dummy.xml │ │ │ ├── user-robot.xml │ │ │ ├── user-template-plain.xml │ │ │ └── user-template-runas.xml │ │ │ └── schema │ │ │ ├── orgsync.xsd │ │ │ ├── piracy.xsd │ │ │ └── university.xsd │ └── testng-integration.xml ├── pom.xml ├── rest │ ├── pom.xml │ ├── src │ │ └── test │ │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── testing │ │ │ │ └── rest │ │ │ │ ├── AbstractRestServiceInitializer.java │ │ │ │ ├── RestServiceInitializer.java │ │ │ │ ├── TestAbstractRestService.java │ │ │ │ ├── TestRestServiceJson.java │ │ │ │ ├── TestRestServiceJsonSecQ.java │ │ │ │ ├── TestRestServiceProxyAuthentication.java │ │ │ │ ├── TestRestServiceXml.java │ │ │ │ ├── TestRestServiceYaml.java │ │ │ │ ├── TestRestWithoutAuditingLoginAndLogout.java │ │ │ │ ├── TestSchemaRestService.java │ │ │ │ ├── TestSecurityQuestionChallengeResponse.java │ │ │ │ └── authentication │ │ │ │ ├── TestAbstractAuthentication.java │ │ │ │ ├── TestBasicAuthentication.java │ │ │ │ └── oidc │ │ │ │ ├── TestAbstractOidcRestModule.java │ │ │ │ ├── TestAzureOidcRestAuthModule.java │ │ │ │ └── TestKeycloakOidcRestAuthModule.java │ │ │ └── resources │ │ │ ├── authentication │ │ │ ├── configuration │ │ │ │ └── oidc.properties │ │ │ ├── keycloak.json │ │ │ └── repo │ │ │ │ ├── security-policy-default.xml │ │ │ │ ├── security-policy-disabled.xml │ │ │ │ ├── security-policy-enabled.xml │ │ │ │ ├── security-policy-issuer-uri.xml │ │ │ │ ├── security-policy-jws-uri-wrong-alg.xml │ │ │ │ ├── security-policy-jws-uri.xml │ │ │ │ ├── security-policy-public-key-keystore.xml │ │ │ │ ├── security-policy-public-key-wrong-alg.xml │ │ │ │ ├── security-policy-public-key.xml │ │ │ │ ├── security-policy-unsuccessful.xml │ │ │ │ ├── security-policy-user-info-uri.xml │ │ │ │ ├── security-policy-wrong-attribute-name.xml │ │ │ │ └── user-admin-azure.xml │ │ │ ├── ctx-rest-test-main.xml │ │ │ ├── ctx-rest-test.xml │ │ │ ├── logback-test.xml │ │ │ ├── repo │ │ │ ├── json │ │ │ │ ├── account-chuck.json │ │ │ │ ├── function-library-hello.json │ │ │ │ ├── policy-generate-bad-path.json │ │ │ │ ├── policy-generate-execute.json │ │ │ │ ├── policy-generate-explicit.json │ │ │ │ ├── policy-generate-honorific-prefix-execute.json │ │ │ │ ├── policy-generate-password-execute.json │ │ │ │ ├── policy-generate.json │ │ │ │ ├── policy-validate-explicit-conflict.json │ │ │ │ ├── policy-validate-explicit-no-value-policy.json │ │ │ │ ├── policy-validate-explicit.json │ │ │ │ ├── policy-validate-implicit-multi-conflict.json │ │ │ │ ├── policy-validate-implicit-multi.json │ │ │ │ ├── policy-validate-implicit-password.json │ │ │ │ ├── policy-validate-implicit-single.json │ │ │ │ ├── policy-validate-password-history-conflict.json │ │ │ │ ├── policy-validate-security-answer-check-expression-fail.json │ │ │ │ ├── policy-validate-security-answer-check-expression.json │ │ │ │ ├── role-adder.json │ │ │ │ ├── role-modifier.json │ │ │ │ ├── script-generate-passwords.json │ │ │ │ ├── script-modify-validTo.json │ │ │ │ ├── user-darthadder.json │ │ │ │ ├── user-nopassword.json │ │ │ │ └── user-template.json │ │ │ ├── resource-opendj.xml │ │ │ ├── role-enduser.xml │ │ │ ├── role-meta-approval.xml │ │ │ ├── role-proxy.xml │ │ │ ├── role-reader.xml │ │ │ ├── role-rest-limited.xml │ │ │ ├── role-rest.xml │ │ │ ├── role-superuser.xml │ │ │ ├── role-to-approve.xml │ │ │ ├── security-policy-no-history.xml │ │ │ ├── security-policy.xml │ │ │ ├── system-configuration-without-auditing.xml │ │ │ ├── system-configuration.xml │ │ │ ├── user-administrator.xml │ │ │ ├── user-cyclops.xml │ │ │ ├── user-egoist.xml │ │ │ ├── user-head.xml │ │ │ ├── user-jack.xml │ │ │ ├── user-nobody.xml │ │ │ ├── user-proxy.xml │ │ │ ├── user-rest-limited.xml │ │ │ ├── user-somebody.xml │ │ │ ├── value-policy-general.xml │ │ │ ├── value-policy-numeric.xml │ │ │ ├── value-policy-security-answer.xml │ │ │ ├── value-policy-simple.xml │ │ │ ├── xml │ │ │ │ ├── account-chuck.xml │ │ │ │ ├── function-library-hello.xml │ │ │ │ ├── policy-generate-bad-path.xml │ │ │ │ ├── policy-generate-execute.xml │ │ │ │ ├── policy-generate-explicit.xml │ │ │ │ ├── policy-generate-honorific-prefix-execute.xml │ │ │ │ ├── policy-generate-password-execute.xml │ │ │ │ ├── policy-generate.xml │ │ │ │ ├── policy-validate-explicit-conflict.xml │ │ │ │ ├── policy-validate-explicit-no-value-policy.xml │ │ │ │ ├── policy-validate-explicit.xml │ │ │ │ ├── policy-validate-implicit-multi-conflict.xml │ │ │ │ ├── policy-validate-implicit-multi.xml │ │ │ │ ├── policy-validate-implicit-password.xml │ │ │ │ ├── policy-validate-implicit-single.xml │ │ │ │ ├── policy-validate-password-history-conflict.xml │ │ │ │ ├── policy-validate-security-answer-check-expression-fail.xml │ │ │ │ ├── policy-validate-security-answer-check-expression.xml │ │ │ │ ├── role-adder.xml │ │ │ │ ├── role-modifier.xml │ │ │ │ ├── script-generate-passwords.xml │ │ │ │ ├── script-modify-validTo.xml │ │ │ │ ├── user-darthadder.xml │ │ │ │ ├── user-nopassword.xml │ │ │ │ └── user-template.xml │ │ │ └── yaml │ │ │ │ ├── account-chuck.yml │ │ │ │ ├── function-library-hello.yml │ │ │ │ ├── policy-generate-bad-path.yml │ │ │ │ ├── policy-generate-execute.yml │ │ │ │ ├── policy-generate-explicit.yml │ │ │ │ ├── policy-generate-honorific-prefix-execute.yml │ │ │ │ ├── policy-generate-password-execute.yml │ │ │ │ ├── policy-generate.yml │ │ │ │ ├── policy-validate-explicit-conflict.yml │ │ │ │ ├── policy-validate-explicit-no-value-policy.yml │ │ │ │ ├── policy-validate-explicit.yml │ │ │ │ ├── policy-validate-implicit-multi-conflict.yml │ │ │ │ ├── policy-validate-implicit-multi.yml │ │ │ │ ├── policy-validate-implicit-password.yml │ │ │ │ ├── policy-validate-implicit-single.yml │ │ │ │ ├── policy-validate-password-history-conflict.yml │ │ │ │ ├── policy-validate-security-answer-check-expression-fail.yml │ │ │ │ ├── policy-validate-security-answer-check-expression.yml │ │ │ │ ├── role-adder.yml │ │ │ │ ├── role-modifier.yml │ │ │ │ ├── script-generate-passwords.yml │ │ │ │ ├── script-modify-validTo.yml │ │ │ │ ├── user-darthadder.yml │ │ │ │ ├── user-nopassword.yml │ │ │ │ └── user-template.yml │ │ │ ├── req │ │ │ ├── json │ │ │ │ ├── execute-credential-reset.json │ │ │ │ ├── modification-assign-role-modifier.json │ │ │ │ ├── modification-disable.json │ │ │ │ ├── modification-enable.json │ │ │ │ ├── modification-force-password-change.json │ │ │ │ ├── modification-replace-answer-id-1-value.json │ │ │ │ ├── modification-replace-answer.json │ │ │ │ ├── modification-replace-no-answer.json │ │ │ │ └── modification-replace-two-answers.json │ │ │ ├── xml │ │ │ │ ├── execute-credential-reset.xml │ │ │ │ ├── modification-assign-role-modifier.xml │ │ │ │ ├── modification-disable.xml │ │ │ │ ├── modification-enable.xml │ │ │ │ ├── modification-force-password-change.xml │ │ │ │ ├── modification-replace-answer-id-1-value.xml │ │ │ │ ├── modification-replace-answer.xml │ │ │ │ ├── modification-replace-no-answer.xml │ │ │ │ └── modification-replace-two-answers.xml │ │ │ └── yaml │ │ │ │ ├── execute-credential-reset.yml │ │ │ │ ├── modification-assign-role-modifier.yml │ │ │ │ ├── modification-disable.yml │ │ │ │ ├── modification-enable.yml │ │ │ │ ├── modification-force-password-change.yml │ │ │ │ ├── modification-replace-answer-id-1-value.yml │ │ │ │ ├── modification-replace-answer.yml │ │ │ │ ├── modification-replace-no-answer.yml │ │ │ │ └── modification-replace-two-answers.yml │ │ │ └── schema │ │ │ └── piracy.xsd │ ├── testng-authentication.xml │ └── testng-integration.xml └── story │ ├── pom.xml │ ├── src │ └── test │ │ ├── java │ │ └── com │ │ │ └── evolveum │ │ │ └── midpoint │ │ │ └── testing │ │ │ └── story │ │ │ ├── AbstractStoryTest.java │ │ │ ├── CountingInspector.java │ │ │ ├── TestConfiguredCapabilitiesActivation.java │ │ │ ├── TestDelayedEnable.java │ │ │ ├── TestDelivery.java │ │ │ ├── TestDependencyRename.java │ │ │ ├── TestEnergy.java │ │ │ ├── TestEntertainment.java │ │ │ ├── TestExistentialIssues.java │ │ │ ├── TestFirstSteps.java │ │ │ ├── TestImportGroups.java │ │ │ ├── TestInboundOutboundAssociation.java │ │ │ ├── TestInducement.java │ │ │ ├── TestLargeGroups.java │ │ │ ├── TestLimitedResources.java │ │ │ ├── TestLiveSyncMadness.java │ │ │ ├── TestMachineIntelligence.java │ │ │ ├── TestManyThreads.java │ │ │ ├── TestMapleLeaf.java │ │ │ ├── TestMappingMadness.java │ │ │ ├── TestMisbehavingResources.java │ │ │ ├── TestNormalizers.java │ │ │ ├── TestNullAttribute.java │ │ │ ├── TestOperationCounts.java │ │ │ ├── TestOperationPerf.java │ │ │ ├── TestOrgSync.java │ │ │ ├── TestOrphanedTasks.java │ │ │ ├── TestPhotoAssignment.java │ │ │ ├── TestPlentyOfAssignments.java │ │ │ ├── TestReconNullValue.java │ │ │ ├── TestResourceInMaintenance.java │ │ │ ├── TestRetirement.java │ │ │ ├── TestScience.java │ │ │ ├── TestServiceAccounts.java │ │ │ ├── TestServiceAccountsClassifier.java │ │ │ ├── TestShadowsPerformance.java │ │ │ ├── TestStrings.java │ │ │ ├── TestThresholdsStory.java │ │ │ ├── TestThresholdsStoryLiveSync.java │ │ │ ├── TestThresholdsStoryLiveSyncExecute.java │ │ │ ├── TestThresholdsStoryLiveSyncExecuteMultithreaded.java │ │ │ ├── TestThresholdsStoryLiveSyncSimulate.java │ │ │ ├── TestThresholdsStoryLiveSyncSimulateMultithreaded.java │ │ │ ├── TestThresholdsStoryRecon.java │ │ │ ├── TestThresholdsStoryReconExecute.java │ │ │ ├── TestThresholdsStoryReconExecuteMultinode.java │ │ │ ├── TestThresholdsStoryReconExecuteMultithreaded.java │ │ │ ├── TestThresholdsStoryReconSimulate.java │ │ │ ├── TestThresholdsStoryReconSimulateMultithreaded.java │ │ │ ├── TestTrustedBulkActions.java │ │ │ ├── TestUniversity.java │ │ │ ├── TestUnix.java │ │ │ ├── TestUnixTolerantAux.java │ │ │ ├── TestVeryAuthoritativeSource.java │ │ │ ├── TestVillage.java │ │ │ ├── TestWriter.java │ │ │ ├── associations │ │ │ ├── DummyAdScenario.java │ │ │ ├── DummyDmsScenario.java │ │ │ ├── TestAssociationsFirstSteps.java │ │ │ ├── TestAssociationsFirstStepsActiveDirectory.java │ │ │ └── TestAssociationsFirstStepsReal.java │ │ │ ├── async │ │ │ └── TestAsyncProvisioning.java │ │ │ ├── buckets │ │ │ └── TestBucketsPerformance.java │ │ │ ├── consistency │ │ │ ├── TestConsistencyMechanism.java │ │ │ └── TestConsistencyReaper.java │ │ │ ├── correlation │ │ │ ├── AbstractCorrelationTest.java │ │ │ ├── AbstractIdMatchCorrelationTest.java │ │ │ ├── AbstractMediumIdMatchCorrelationTest.java │ │ │ ├── AbstractMultiAccountsIdMatchCorrelationTest.java │ │ │ ├── AbstractSimpleIdMatchCorrelationTest.java │ │ │ ├── AbstractSimpleInternalCorrelationTest.java │ │ │ ├── IdMatchTestUtil.java │ │ │ ├── TestCorrelationMisc.java │ │ │ ├── TestIdMatchCorrelationMediumDummy.java │ │ │ ├── TestIdMatchCorrelationMediumReal.java │ │ │ ├── TestIdMatchCorrelationMultiAccountsDummy.java │ │ │ ├── TestIdMatchCorrelationMultiAccountsReal.java │ │ │ ├── TestIdMatchCorrelationSimpleDummy.java │ │ │ ├── TestIdMatchCorrelationSimpleReal.java │ │ │ ├── TestInternalCorrelationMedium.java │ │ │ ├── TestInternalCorrelationMultiAccounts.java │ │ │ ├── TestInternalCorrelationSimple.java │ │ │ └── TestInternalCorrelationSimpleSimplified.java │ │ │ ├── grouper │ │ │ ├── AbstractGrouperTest.java │ │ │ ├── MockAsyncUpdateSource.java │ │ │ ├── TestGrouperAsyncUpdate.java │ │ │ ├── TestGrouperLargeGroupImport.java │ │ │ └── TestGrouperLargeGroupReconciliation.java │ │ │ ├── ldap │ │ │ ├── AbstractLdapTest.java │ │ │ ├── TestLdapAssociationPerformance.java │ │ │ ├── TestLdapComplex.java │ │ │ ├── TestLdapDependency.java │ │ │ ├── TestLdapMutilated.java │ │ │ ├── TestLdapReconPerformance.java │ │ │ ├── TestLdapSyncMassive.java │ │ │ ├── TestLdapVirtualGroup.java │ │ │ └── hierarchy │ │ │ │ ├── AbstractLdapHierarchyTest.java │ │ │ │ ├── TestLdapDeeplyHierarchical.java │ │ │ │ ├── TestLdapFlat.java │ │ │ │ ├── TestLdapHierarchical.java │ │ │ │ └── TestLdapNested.java │ │ │ ├── notorious │ │ │ ├── AbstractNotoriousTest.java │ │ │ ├── TestNotoriousOrg.java │ │ │ ├── TestNotoriousRole.java │ │ │ └── TestSupernotoriousOrg.java │ │ │ ├── perf │ │ │ ├── Generate.java │ │ │ ├── TestImport.java │ │ │ └── TestSearch.java │ │ │ ├── security │ │ │ ├── PerfTestRoleMembers.java │ │ │ ├── TestPrivacy.java │ │ │ └── TestRoleMembers.java │ │ │ ├── sysperf │ │ │ ├── Associations.java │ │ │ ├── DetailsOutputFile.java │ │ │ ├── ImportConfiguration.java │ │ │ ├── OperationDelay.java │ │ │ ├── OtherParameters.java │ │ │ ├── ProgressOutputFile.java │ │ │ ├── RandomSource.java │ │ │ ├── RecomputationConfiguration.java │ │ │ ├── ReconciliationWithSourceConfiguration.java │ │ │ ├── ReconciliationWithTargetConfiguration.java │ │ │ ├── RolesConfiguration.java │ │ │ ├── SchemaConfiguration.java │ │ │ ├── SourceInitializer.java │ │ │ ├── SourcesConfiguration.java │ │ │ ├── SummaryOutputFile.java │ │ │ ├── TargetInitializer.java │ │ │ ├── TargetsConfiguration.java │ │ │ ├── TaskDistribution.java │ │ │ ├── TaskDumper.java │ │ │ ├── TestSystemPerformance.java │ │ │ ├── Util.java │ │ │ └── VelocityGenerator.java │ │ │ └── uuid │ │ │ ├── AbstractUuidTest.java │ │ │ ├── TestUuidClient.java │ │ │ └── TestUuidExtension.java │ │ └── resources │ │ ├── associations-first-steps-ad │ │ ├── archetype-group.xml │ │ ├── object-template-user.xml │ │ ├── resource-ad-100.xml │ │ ├── resource-ad-120.xml │ │ ├── resource-ad-130.xml │ │ ├── resource-ad-140.xml │ │ ├── resource-ad-150.xml │ │ ├── resource-ad-300.xml │ │ └── system-configuration.xml │ │ ├── associations-first-steps │ │ ├── archetype-document.xml │ │ ├── object-template-user.xml │ │ ├── resource-dms-100.xml │ │ ├── resource-dms-120.xml │ │ ├── resource-dms-130.xml │ │ ├── resource-dms-140.xml │ │ ├── resource-dms-150.xml │ │ ├── resource-dms-170.xml │ │ ├── resource-dms-300.xml │ │ ├── resource-dms-xxx.xml │ │ └── system-configuration.xml │ │ ├── associations-real │ │ ├── 100-baseEntry.ldif │ │ ├── 105-ldap-people.ldif │ │ ├── 110-ldap-people-system.ldif │ │ ├── 200-groups-large.ldif │ │ ├── 200-groups.ldif │ │ ├── archetype-ad-group.xml │ │ ├── archetype-app-group.xml │ │ ├── archetype-person.xml │ │ ├── hr.csv │ │ ├── object-template-person.xml │ │ ├── resource-hr.xml │ │ ├── resource-ldap.xml │ │ ├── run-test-repeatedly.bat │ │ ├── system-configuration.xml │ │ ├── task-ad-account-recon.xml │ │ ├── task-ad-group-recon.xml │ │ ├── task-app-group-recon.xml │ │ ├── task-hr-recon-looping.xml │ │ └── task-hr-recon.xml │ │ ├── async │ │ ├── resource-async-inbound.xml │ │ ├── resource-async-outbound.xml │ │ ├── system-configuration.xml │ │ ├── task-async-update-multi.xml │ │ ├── task-async-update.xml │ │ └── task-recompute-multi.xml │ │ ├── broker.xml │ │ ├── buckets │ │ ├── role-slow.xml │ │ ├── system-configuration.xml │ │ ├── task-recompute-16-04.xml │ │ └── task-recompute-256-30.xml │ │ ├── common │ │ ├── archetype-correlation-case.xml │ │ ├── archetype-task-recomputation.xml │ │ ├── role-superuser.xml │ │ ├── system-configuration.xml │ │ ├── task-trigger-scanner.xml │ │ ├── task-validity-scanner.xml │ │ ├── user-administrator.xml │ │ ├── user-jack.xml │ │ └── user-mike.xml │ │ ├── configured-capabilities-activation │ │ ├── resource-dummy-activation-native-simulated.xml │ │ ├── resource-dummy-activation-native.xml │ │ ├── resource-dummy-activation-simulated.xml │ │ ├── role-pirate.xml │ │ └── shadow-sample-activation-simulated.xml │ │ ├── consistency │ │ ├── account-chuck.xml │ │ ├── account-deniels.xml │ │ ├── account-guybrush-not-found.xml │ │ ├── account-guybrush.xml │ │ ├── account-hector-not-found.xml │ │ ├── account-herman.xml │ │ ├── account-jack.xml │ │ ├── adminsGroup.ldif │ │ ├── discovery.ldif │ │ ├── elaine.ldif │ │ ├── modify-rename.ldif │ │ ├── morgan.ldif │ │ ├── resource-opendj-reaper.xml │ │ ├── resource-opendj.xml │ │ ├── role-admins.xml │ │ ├── role-superuser.xml │ │ ├── system-configuration.xml │ │ ├── task-opendj-reconciliation.xml │ │ ├── user-abom.xml │ │ ├── user-abomba.xml │ │ ├── user-administrator.xml │ │ ├── user-alice.xml │ │ ├── user-angelika.xml │ │ ├── user-bob-no-given-name.xml │ │ ├── user-chuck.xml │ │ ├── user-deniels.xml │ │ ├── user-discovery.xml │ │ ├── user-donald.xml │ │ ├── user-e.xml │ │ ├── user-elaine.xml │ │ ├── user-guybrush-modify-not-found.xml │ │ ├── user-guybrush.xml │ │ ├── user-hector.xml │ │ ├── user-herman.xml │ │ ├── user-jack.xml │ │ ├── user-jackie.xml │ │ ├── user-john.xml │ │ ├── user-morgan.xml │ │ ├── user-template.xml │ │ ├── user-trainee.xml │ │ ├── user-will.xml │ │ ├── usersOu.ldif │ │ └── will.ldif │ │ ├── correlation │ │ ├── idmatch │ │ │ ├── medium │ │ │ │ ├── object-template-user.xml │ │ │ │ ├── resource-external.xml │ │ │ │ ├── resource-hr.xml │ │ │ │ ├── resource-sis.xml │ │ │ │ ├── system-configuration.xml │ │ │ │ ├── task-import-external.xml │ │ │ │ ├── task-import-hr.xml │ │ │ │ └── task-import-sis.xml │ │ │ ├── multi-accounts │ │ │ │ ├── 000-system-configuration.xml │ │ │ │ ├── 002-message-template-correlation.xml │ │ │ │ ├── 005-function-library-idmatch.xml │ │ │ │ ├── 011-archetype-program.xml │ │ │ │ ├── 020-object-template-user.xml │ │ │ │ ├── 030-org-programs.xml │ │ │ │ ├── 034-org-program-bioch.xml │ │ │ │ ├── 035-org-program-comp-bio.xml │ │ │ │ ├── 036-org-program-e-eng.xml │ │ │ │ ├── 037-org-program-mat-eng.xml │ │ │ │ ├── 038-org-program-math.xml │ │ │ │ ├── 039-org-program-sw-eng.xml │ │ │ │ ├── 040-org-program-sw-eng-doctoral.xml │ │ │ │ ├── 060-org-correlation-operators.xml │ │ │ │ ├── 100-user-fred.xml │ │ │ │ ├── 110-user-alice.xml │ │ │ │ ├── resource-sis.xml │ │ │ │ ├── task-import-sis.xml │ │ │ │ └── task-update-sis.xml │ │ │ └── simple │ │ │ │ ├── object-template-user.xml │ │ │ │ ├── resource-sis.xml │ │ │ │ └── system-configuration.xml │ │ ├── internal │ │ │ ├── medium │ │ │ │ ├── archetype-person.xml │ │ │ │ ├── object-template-user.xml │ │ │ │ ├── resource-external.xml │ │ │ │ ├── resource-hr.xml │ │ │ │ ├── resource-sis.xml │ │ │ │ ├── system-configuration.xml │ │ │ │ ├── task-import-external.xml │ │ │ │ ├── task-import-hr.xml │ │ │ │ └── task-import-sis.xml │ │ │ ├── multi-accounts │ │ │ │ ├── 000-system-configuration.xml │ │ │ │ ├── 005-function-library.xml │ │ │ │ ├── 011-archetype-program.xml │ │ │ │ ├── 020-object-template-person.xml │ │ │ │ ├── 021-archetype-person.xml │ │ │ │ ├── 030-org-programs.xml │ │ │ │ ├── 034-org-program-bioch.xml │ │ │ │ ├── 035-org-program-comp-bio.xml │ │ │ │ ├── 036-org-program-e-eng.xml │ │ │ │ ├── 037-org-program-mat-eng.xml │ │ │ │ ├── 038-org-program-math.xml │ │ │ │ ├── 039-org-program-sw-eng.xml │ │ │ │ ├── 040-org-program-sw-eng-doctoral.xml │ │ │ │ ├── resource-sis.xml │ │ │ │ └── task-import-sis.xml │ │ │ └── simple │ │ │ │ ├── object-template-user.xml │ │ │ │ ├── resource-hr.csv │ │ │ │ ├── resource-hr.xml │ │ │ │ ├── resource-target-simplified.xml │ │ │ │ ├── resource-target.csv │ │ │ │ ├── resource-target.xml │ │ │ │ ├── system-configuration.xml │ │ │ │ ├── task-import-hr.xml │ │ │ │ └── task-import-target.xml │ │ ├── misc │ │ │ └── resource-dummy-source.xml │ │ └── system-configuration.xml │ │ ├── counts │ │ ├── resource-dummy-one.xml │ │ ├── resource-dummy-three.xml │ │ ├── resource-dummy-two.xml │ │ ├── role-one.xml │ │ ├── role-three.xml │ │ ├── role-two.xml │ │ ├── system-configuration.xml │ │ ├── template-user.xml │ │ ├── user-alice.xml │ │ └── user-bob.xml │ │ ├── ctx-story-test-main.xml │ │ ├── ctx-story-test.xml │ │ ├── delayed-enable │ │ ├── object-template-user.xml │ │ ├── resource-dummy-hr.xml │ │ ├── task-dumy-hr-livesync.xml │ │ └── user-mancomb.xml │ │ ├── delivery │ │ ├── orgs │ │ │ └── 0-org-monkey-island-modified.xml │ │ ├── resource-opendj.xml │ │ ├── roles │ │ │ ├── role-end-user.xml │ │ │ ├── role-it-1-for-tpu-10-elaine.xml │ │ │ ├── role-it-2-for-tpu-10.xml │ │ │ ├── role-it-3-for-tpu-10-and-cc-1900-elaine-administrator.xml │ │ │ ├── role-it-4-not-for-tpu-10-elaine.xml │ │ │ ├── role-it-5-requires-it-1-elaine.xml │ │ │ └── role-opendj.xml │ │ ├── rules │ │ │ ├── k10-cc-1900-rem-administrator.xml │ │ │ ├── k10-tpu-10-rem-elaine.xml │ │ │ ├── k10-tpu-10.xml │ │ │ ├── k10.xml │ │ │ ├── k11-tpu-10-rem-elaine.xml │ │ │ ├── k11.xml │ │ │ ├── k20-it-1-rem-elaine.xml │ │ │ ├── k20.xml │ │ │ ├── k21-it-1-rem-elaine.xml │ │ │ ├── k21.xml │ │ │ ├── k23-rem-elaine.xml │ │ │ ├── k23.xml │ │ │ └── library.xml │ │ └── users │ │ │ ├── barkeeper.xml │ │ │ ├── bob.xml │ │ │ ├── carla.xml │ │ │ ├── cheese.xml │ │ │ ├── chef.xml │ │ │ ├── elaine.xml │ │ │ ├── guybrush.xml │ │ │ └── lechuck.xml │ │ ├── dependency-rename │ │ ├── object-template-user.xml │ │ ├── resource-dummy-phonebook.xml │ │ ├── resource-opendj.xml │ │ └── role-basic.xml │ │ ├── energy │ │ ├── resource-dummy-ad.xml │ │ ├── system-configuration.xml │ │ └── task-reconcile-ad.xml │ │ ├── entertainment │ │ ├── org-games-top.xml │ │ ├── org-poker.xml │ │ ├── resource-opendj.xml │ │ └── role-meta-org-groups.xml │ │ ├── existential │ │ ├── resource-dummy-lazy.xml │ │ └── user-descartes.xml │ │ ├── first-steps │ │ ├── hr.csv │ │ ├── initial.ldif │ │ ├── resource-hr-100.xml │ │ ├── resource-hr-110.xml │ │ ├── resource-hr-120.xml │ │ ├── resource-hr-130.xml │ │ ├── resource-hr-140.xml │ │ ├── resource-hr-150.xml │ │ ├── resource-hr-160.xml │ │ ├── resource-hr-170.xml │ │ ├── resource-opendj-200.xml │ │ ├── resource-opendj-210.xml │ │ ├── resource-opendj-220.xml │ │ ├── resource-opendj-240.xml │ │ ├── resource-opendj-250.xml │ │ ├── resource-opendj-260.xml │ │ ├── resource-opendj-270.xml │ │ ├── resource-opendj-280.xml │ │ ├── resource-opendj-290.xml │ │ ├── resource-opendj-300.xml │ │ ├── resource-opendj-template.xml │ │ └── system-configuration.xml │ │ ├── grouper │ │ ├── archetype-affiliation.xml │ │ ├── change-110-alumni-add.json │ │ ├── change-115-staff-add.json │ │ ├── change-200-banderson-add-alumni.json │ │ ├── change-210-banderson-add-staff.json │ │ ├── change-220-jlewis685-add-alumni.json │ │ ├── change-221-jlewis685-add-staff.json │ │ ├── change-230-nobody-add-alumni.json │ │ ├── change-250-banderson-delete-alumni.json │ │ ├── change-305-staff-rename.json │ │ ├── change-310-staff-delete.json │ │ ├── function-library-grouper.xml │ │ ├── ldif-initial-objects.ldif │ │ ├── metarole-grouper-provided-group.xml │ │ ├── metarole-ldap-group.xml │ │ ├── org-affiliations.xml │ │ ├── resource-grouper.xml │ │ ├── resource-ldap.xml │ │ ├── role-ldap-basic.xml │ │ ├── system-configuration.xml │ │ ├── task-async-update.xml │ │ ├── task-group-scavenger.xml │ │ ├── task-import-groups.xml │ │ ├── task-reconcile-groups.xml │ │ ├── template-user.xml │ │ ├── user-banderson.xml │ │ └── user-jlewis685.xml │ │ ├── import-group │ │ ├── groups.ldif │ │ ├── resource-opendj-import-group.xml │ │ └── task-opendj-import-groups.xml │ │ ├── inbound-outbound-association │ │ ├── object-template-role-group.xml │ │ ├── resource-dummy-dir.xml │ │ ├── role-meta-group.xml │ │ ├── task-dumy-dir-livesync.xml │ │ └── user-mancomb.xml │ │ ├── inducement │ │ ├── role-lock.xml │ │ ├── role-processor.xml │ │ ├── role-role1.xml │ │ ├── role-role2.xml │ │ ├── role-role3.xml │ │ └── user-simple.xml │ │ ├── jndi.properties │ │ ├── large-groups │ │ └── resource-dummy.xml │ │ ├── ldap │ │ ├── assoc-perf │ │ │ ├── resource-opendj.xml │ │ │ ├── role-ldap.xml │ │ │ ├── role-meta.xml │ │ │ ├── role-test.xml │ │ │ ├── system-configuration-no-role-cache.xml │ │ │ ├── system-configuration.xml │ │ │ ├── task-recompute-1.xml │ │ │ ├── task-recompute-4.xml │ │ │ ├── task-recompute-multinode-multithreaded.xml │ │ │ ├── task-recompute-multinode.xml │ │ │ ├── task-recompute-no-role-and-shadow-cache.xml │ │ │ ├── user-template.xml │ │ │ └── user-test.xml │ │ ├── complex │ │ │ ├── org-functional-top.xml │ │ │ ├── org-project-top.xml │ │ │ └── resource-opendj.xml │ │ ├── dependency │ │ │ ├── org-top.xml │ │ │ ├── resource-opendj.xml │ │ │ ├── role-meta-org-supervip.xml │ │ │ ├── role-meta-org-vip.xml │ │ │ └── role-meta-org.xml │ │ ├── hierarchy │ │ │ ├── deeply-hierarchical │ │ │ │ ├── org-top.xml │ │ │ │ ├── resource-opendj.xml │ │ │ │ └── role-meta-org.xml │ │ │ ├── flat │ │ │ │ ├── org-top.xml │ │ │ │ ├── resource-opendj.xml │ │ │ │ └── role-meta-org.xml │ │ │ ├── hierarchical │ │ │ │ ├── org-top.xml │ │ │ │ ├── resource-opendj.xml │ │ │ │ └── role-meta-org.xml │ │ │ └── nested │ │ │ │ ├── org-top.xml │ │ │ │ ├── resource-opendj.xml │ │ │ │ └── role-meta-org.xml │ │ ├── mutilated │ │ │ └── resource-opendj.xml │ │ ├── recon-perf │ │ │ ├── resource-opendj.xml │ │ │ ├── task-reconcile-1-opendj.xml │ │ │ └── task-reconcile-4-opendj.xml │ │ ├── sync-massive │ │ │ ├── resource-opendj.xml │ │ │ ├── task-live-sync.xml │ │ │ └── will.ldif │ │ └── virtualgroup │ │ │ ├── org-top.xml │ │ │ ├── resource-opendj.xml │ │ │ ├── role-it-hr-thisobject.xml │ │ │ ├── role-it-hr.xml │ │ │ ├── role-jobrole-devops.xml │ │ │ ├── role-jobrole-multijobs.xml │ │ │ ├── role-meta-ldap-thisobject.xml │ │ │ └── role-meta-ldap.xml │ │ ├── limited-resources │ │ ├── resource-dummy-no-attribute-add-delete.xml │ │ └── resource-dummy-no-create.xml │ │ ├── livesync-madness │ │ ├── object-template-user.xml │ │ ├── resource-dummy-hr.xml │ │ ├── resource-dummy.xml │ │ ├── role-basic.xml │ │ └── task-dumy-hr-livesync.xml │ │ ├── logback-test.xml │ │ ├── machineintelligence │ │ ├── HR.csv │ │ ├── resource-csv-HR.xml │ │ ├── shadow-chappie.xml │ │ └── shadow-rur.xml │ │ ├── mapleLeaf │ │ ├── mapleLeafGroups.ldif │ │ ├── meta-role-monkey-donkey.xml │ │ ├── object-template-user.xml │ │ ├── resource-opendj.xml │ │ ├── role-maple-leaf-faculty-license.xml │ │ ├── role-maple-leaf-faculty.xml │ │ ├── role-maple-leaf-graduate-license.xml │ │ ├── role-maple-leaf-graduate.xml │ │ ├── role-squirrel.xml │ │ ├── security-policy.xml │ │ └── system-configuration.xml │ │ ├── mapping-madness │ │ ├── archetype-overmapped.xml │ │ ├── resource-dummy-nontolerant.xml │ │ ├── resource-dummy-smart-range.xml │ │ ├── resource-dummy-tolerant-range.xml │ │ ├── resource-dummy-tolerant.xml │ │ ├── system-configuration.xml │ │ ├── template-overmapped.xml │ │ ├── user-matching.xml │ │ └── user-not-matching.xml │ │ ├── misbehaving-resources │ │ └── resource-dummy.xml │ │ ├── normalizers │ │ ├── system-configuration-normalizer-ascii7.xml │ │ └── user-teleke.xml │ │ ├── notorious │ │ ├── org-notorious.xml │ │ ├── org-supernotorious.xml │ │ └── role-notorious.xml │ │ ├── nullattribute │ │ ├── object-template-user.xml │ │ ├── resource-dummy.xml │ │ ├── role-accountonly.xml │ │ ├── role-shipnweapon.xml │ │ ├── system-configuration.xml │ │ └── user-smack.xml │ │ ├── operation-perf │ │ ├── object-template-user.xml │ │ ├── system-configuration.xml │ │ ├── user-alice.xml │ │ └── user-bob.xml │ │ ├── orgsync │ │ ├── booty-lookout.ldif │ │ ├── booty.ldif │ │ ├── object-template-org.xml │ │ ├── object-template-role.xml │ │ ├── object-template-user.xml │ │ ├── org-top.xml │ │ ├── resource-dummy-hr.xml │ │ ├── resource-opendj.xml │ │ ├── role-basic.xml │ │ ├── role-meta-replicated-org.xml │ │ ├── role-meta-responsibility.xml │ │ ├── scabb.ldif │ │ ├── task-dummy-hr-livesync-simulation.xml │ │ ├── task-dummy-hr-livesync.xml │ │ ├── task-reconcile-opendj-default-single.xml │ │ └── task-reconcile-opendj-ldapgroup-single.xml │ │ ├── orphaned-tasks │ │ ├── system-configuration.xml │ │ ├── task-child.xml │ │ ├── task-mark-orphaned-tasks.xml │ │ ├── task-orphaned.xml │ │ ├── task-parent-volatile.xml │ │ └── task-parent.xml │ │ ├── perf │ │ ├── import │ │ │ ├── org-basic.xml │ │ │ ├── resource-source.xml │ │ │ ├── source.sql │ │ │ ├── system-configuration.xml │ │ │ ├── task-import.xml │ │ │ └── template-import.xml │ │ └── search │ │ │ ├── resource-dummy.xml │ │ │ └── system-configuration.xml │ │ ├── photo │ │ ├── archetype-id-card.xml │ │ ├── service-card-10001.xml │ │ └── user-joe.xml │ │ ├── plenty-of-assignments │ │ ├── resource-dummy.xml │ │ ├── role-basic.xml │ │ ├── user-alice.xml │ │ ├── user-bob.xml │ │ └── user-cheese.xml │ │ ├── recon-null-value │ │ ├── object-template-user.xml │ │ ├── org-top.xml │ │ ├── resource-opendj.xml │ │ └── role-ldap.xml │ │ ├── resource-in-maintenance │ │ ├── csv-resource1.xml │ │ ├── data-resource1.csv │ │ ├── role1.xml │ │ ├── shadow-user1.xml │ │ ├── task-reconcile-csv.xml │ │ ├── task-refresh.xml │ │ └── users.xml │ │ ├── retirement │ │ ├── org-retired.xml │ │ ├── org-top.xml │ │ ├── resource-opendj.xml │ │ └── role-meta-org.xml │ │ ├── schema │ │ ├── big-user-extension.xsd │ │ ├── delayed-enable.xsd │ │ ├── delivery.xsd │ │ ├── grouper.xsd │ │ ├── idmatch.xsd │ │ ├── ldap.xsd │ │ ├── mapleLeaf.xsd │ │ ├── nullattribute.xsd │ │ ├── orgsync.xsd │ │ ├── perf-import.xsd │ │ ├── photo.xsd │ │ ├── piracy.xsd │ │ ├── science.xsd │ │ ├── serviceAccountsClassifier.xsd │ │ ├── trafo.xsd │ │ ├── unix.xsd │ │ └── whatever.xsd │ │ ├── science │ │ ├── group-stats.ldif │ │ ├── resource-dummy-stats.xml │ │ ├── resource-dummy-unix.xml │ │ ├── resource-opendj-ad-simulation.xml │ │ └── role-statistics.xml │ │ ├── security │ │ ├── privacy │ │ │ ├── resource-dummy.xml │ │ │ ├── role-privacy-end-user.xml │ │ │ └── users.xml │ │ └── role-members │ │ │ └── users-roles.xml │ │ ├── service-accounts-classifier │ │ ├── resource-dummy-classifier.xml │ │ ├── role-employee.xml │ │ ├── service-github.xml │ │ ├── service-jira.xml │ │ ├── shadow-github.xml │ │ └── task-dummy-classifier-reconcile.xml │ │ ├── service-accounts │ │ ├── account-barellium-dummy.xml │ │ ├── resource-dummy.xml │ │ ├── service-barellium.xml │ │ ├── task-dummy-livesync.xml │ │ └── task-dummy-reconcile.xml │ │ ├── shadows │ │ ├── resource-dummy.xml │ │ ├── system-configuration.xml │ │ ├── task-bulk-delete.xml │ │ ├── task-import.xml │ │ └── task-reconciliation.xml │ │ ├── strings │ │ ├── orgs │ │ │ ├── 0-org-monkey-island-modified.xml │ │ │ ├── 1-teams.xml │ │ │ ├── 2-role-catalog.xml │ │ │ ├── security-approvers.xml │ │ │ └── sod-approvers.xml │ │ ├── roles-specific │ │ │ ├── a-test-1.xml │ │ │ ├── a-test-2a.xml │ │ │ ├── a-test-2b.xml │ │ │ ├── a-test-3a.xml │ │ │ ├── a-test-3b.xml │ │ │ ├── a-test-3x.xml │ │ │ ├── a-test-3y.xml │ │ │ └── a-test-4.xml │ │ ├── roles │ │ │ ├── form-user-details.xml │ │ │ ├── global-policy-rules.xml │ │ │ ├── metarole-approval-role-approvers-first.xml │ │ │ ├── metarole-approval-role-approvers-form.xml │ │ │ ├── metarole-approval-security.xml │ │ │ └── role-end-user.xml │ │ └── users │ │ │ ├── barkeeper.xml │ │ │ ├── bob.xml │ │ │ ├── carla.xml │ │ │ ├── cheese.xml │ │ │ ├── chef.xml │ │ │ ├── elaine.xml │ │ │ ├── guybrush.xml │ │ │ ├── lechuck-deputy-deputy.xml │ │ │ ├── lechuck-deputy-limited.xml │ │ │ ├── lechuck-deputy.xml │ │ │ └── lechuck.xml │ │ ├── system-perf │ │ ├── archetype-basic-user.xml │ │ ├── metarole-technical.xml │ │ ├── resource-source.vm.xml │ │ ├── resource-target.vm.xml │ │ ├── role-business.vm.xml │ │ ├── role-targets.vm.xml │ │ ├── role-technical.vm.xml │ │ ├── schema.vm.xsd │ │ ├── system-configuration.vm.xml │ │ ├── task-import.vm.xml │ │ ├── task-recomputation.vm.xml │ │ ├── task-reconciliation-with-source.vm.xml │ │ ├── task-reconciliation-with-target.vm.xml │ │ └── template-user.xml │ │ ├── threads │ │ └── resource-dummy.xml │ │ ├── thresholds │ │ ├── resource-opendj.xml │ │ ├── role-stop-on-3rd-status-change.xml │ │ ├── role-stop-on-3rd-user-deletion.xml │ │ ├── role-stop-on-5th-user-creation.xml │ │ ├── system-configuration.xml │ │ ├── task-opendj-import-base-users.xml │ │ ├── task-opendj-livesync-full.xml │ │ ├── task-opendj-livesync-simulate.xml │ │ ├── task-opendj-reconcile-deleted-execute.xml │ │ ├── task-opendj-reconcile-deleted-simulate-execute.xml │ │ ├── task-opendj-reconcile-execute-multinode.xml │ │ ├── task-opendj-reconcile-execute.xml │ │ ├── task-opendj-reconcile-simulate-multinode.xml │ │ ├── task-opendj-reconcile-simulate.xml │ │ ├── users-base.ldif │ │ ├── users-change-activation.ldif │ │ ├── users-first-import.ldif │ │ └── users-second-import.ldif │ │ ├── trusted-bulk-actions │ │ ├── archetype-little-trusted-task.xml │ │ ├── archetype-trusted-role.xml │ │ ├── archetype-trusted-task.xml │ │ ├── function-library-one.xml │ │ ├── role-unprivileged.xml │ │ ├── role-with-scripting-action.xml │ │ ├── system-configuration.xml │ │ ├── task-template-scripting-little-trusted-run-privileged.xml │ │ ├── task-template-scripting-little-trusted.xml │ │ ├── task-template-scripting-no-profile-non-iterative.xml │ │ ├── task-template-scripting-no-profile.xml │ │ ├── task-template-scripting-trusted.xml │ │ └── user-joe.xml │ │ ├── university │ │ ├── object-template-org.xml │ │ ├── org-top.xml │ │ ├── resource-dummy-hr.xml │ │ ├── resource-opendj.xml │ │ ├── role-meta-org.xml │ │ └── task-dummy-hr-livesync.xml │ │ ├── unix │ │ ├── object-template-user.xml │ │ ├── resource-opendj-inbound.xml │ │ ├── resource-opendj-tolerant-aux.xml │ │ ├── resource-opendj.xml │ │ ├── role-accounts-autz.xml │ │ ├── role-basic.xml │ │ ├── role-meta-ldap-group.xml │ │ ├── role-meta-unix-group.xml │ │ ├── role-meta-unix-group2.xml │ │ ├── role-unix.xml │ │ ├── sequence-gidnumber.xml │ │ ├── sequence-uidnumber.xml │ │ ├── struct.ldif │ │ └── user-alice.xml │ │ ├── uuid │ │ ├── object-template-user.xml │ │ ├── ou-clients.ldif │ │ ├── resource-opendj-client.xml │ │ ├── resource-opendj-extension.xml │ │ ├── role-client.xml │ │ ├── role-employee.xml │ │ ├── system-configuration-client.xml │ │ └── system-configuration-extension.xml │ │ ├── very-authoritative-source │ │ ├── resource-source.xml │ │ ├── resource-target.xml │ │ ├── role-target.xml │ │ ├── system-configuration.xml │ │ ├── task-reconciliation-source.xml │ │ ├── template-delete-description.xml │ │ └── template-global.xml │ │ ├── village │ │ ├── global-password-policy.xml │ │ ├── group-exec-monkey-island.ldif │ │ ├── group-gov-monkey-island.ldif │ │ ├── object-template-user.xml │ │ ├── org-password-policy.xml │ │ ├── org-project-jolly-roger.xml │ │ ├── orgs.xml │ │ ├── resource-dummy-source.xml │ │ ├── resource-opendj.xml │ │ ├── role-account-construction.xml │ │ ├── role-basic.xml │ │ ├── role-meta-functional-org.xml │ │ ├── role-meta-project-org.xml │ │ ├── system-configuration.xml │ │ ├── task-dumy-source-livesync.xml │ │ └── user-murray.xml │ │ └── writer │ │ └── resource-writer.xml │ └── testng-integration.xml └── tools ├── copyheader.pl ├── etimes.pl ├── generate-midpoint-users-xml-example-template.xml ├── generate-midpoint-users-xml.pl ├── gotcha.pl ├── jenkins ├── midpoint-compile-pipeline ├── midpoint-conntest-pipeline ├── midpoint-main-generic-oracle-pipeline ├── midpoint-main-generic-sql-server-pipeline ├── midpoint-main-nativepg-caching-use-cached-pipeline ├── midpoint-main-nativepg-caching-use-fresh-pipeline ├── midpoint-main-nativepg-deploy-pipeline ├── midpoint-main-nativepg-no-caching-pipeline ├── midpoint-main-nativepg-pipeline ├── midpoint-main-pipeline ├── midpoint-quick-nativepg-pipeline ├── midpoint-quick-pipeline ├── midpoint-sbom-dependencytrack-pipeline └── midpoint-security-pipeline ├── midpoint-boot-layout ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── evolveum │ └── midpoint │ └── launcher │ ├── MidPointJarLayout.java │ ├── MidPointJarLayoutFactory.java │ ├── MidPointLauncher.java │ └── MidPointLayoutCommon.java ├── ninja ├── pom.xml ├── src │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── evolveum │ │ │ │ └── midpoint │ │ │ │ └── ninja │ │ │ │ ├── Main.java │ │ │ │ ├── MainResult.java │ │ │ │ ├── action │ │ │ │ ├── AbstractRepositorySearchAction.java │ │ │ │ ├── Action.java │ │ │ │ ├── ActionResult.java │ │ │ │ ├── BaseImportExportOptions.java │ │ │ │ ├── BaseOptions.java │ │ │ │ ├── BasicExportOptions.java │ │ │ │ ├── BasicGeneratorOptions.java │ │ │ │ ├── BasicImportOptions.java │ │ │ │ ├── ConnectionOptions.java │ │ │ │ ├── CountOptions.java │ │ │ │ ├── CountRepositoryAction.java │ │ │ │ ├── DeleteOptions.java │ │ │ │ ├── DeleteRepositoryAction.java │ │ │ │ ├── ExportConfigurationAction.java │ │ │ │ ├── ExportConfigurationOptions.java │ │ │ │ ├── ExportOptions.java │ │ │ │ ├── ExportRepositoryAction.java │ │ │ │ ├── ExportResourceSchemaAction.java │ │ │ │ ├── ExportResourceSchemaOptions.java │ │ │ │ ├── ExportShadowStatisticsAction.java │ │ │ │ ├── ExportShadowStatisticsOptions.java │ │ │ │ ├── HelpAction.java │ │ │ │ ├── HelpOptions.java │ │ │ │ ├── ImportOptions.java │ │ │ │ ├── ImportRepositoryAction.java │ │ │ │ ├── InfoOptions.java │ │ │ │ ├── InfoRepositoryAction.java │ │ │ │ ├── ListKeysOptions.java │ │ │ │ ├── ListKeysRepositoryAction.java │ │ │ │ ├── OutputOptions.java │ │ │ │ ├── PolyStringNormalizerOptions.java │ │ │ │ ├── RepositoryAction.java │ │ │ │ ├── RunSqlAction.java │ │ │ │ ├── RunSqlOptions.java │ │ │ │ ├── SearchOptions.java │ │ │ │ ├── UpgradeBaseAction.java │ │ │ │ ├── VerifyAction.java │ │ │ │ ├── VerifyOptions.java │ │ │ │ ├── VerifyResult.java │ │ │ │ ├── audit │ │ │ │ │ ├── AuditRecordValidator.java │ │ │ │ │ ├── BaseAuditImportExportOptions.java │ │ │ │ │ ├── ExportAuditConsumerWorker.java │ │ │ │ │ ├── ExportAuditOptions.java │ │ │ │ │ ├── ExportAuditProducerWorker.java │ │ │ │ │ ├── ExportAuditRepositoryAction.java │ │ │ │ │ ├── ImportAuditConsumerWorker.java │ │ │ │ │ ├── ImportAuditOptions.java │ │ │ │ │ ├── ImportAuditRepositoryAction.java │ │ │ │ │ ├── VerifyAuditConsumerWorker.java │ │ │ │ │ ├── VerifyAuditOptions.java │ │ │ │ │ └── VerifyAuditRepositoryAction.java │ │ │ │ ├── mining │ │ │ │ │ ├── BaseMiningOptions.java │ │ │ │ │ ├── ExportMiningConsumerWorker.java │ │ │ │ │ ├── ExportMiningOptions.java │ │ │ │ │ ├── ExportMiningProducerWorker.java │ │ │ │ │ ├── ExportMiningRepositoryAction.java │ │ │ │ │ └── generator │ │ │ │ │ │ ├── BaseGeneratorOptions.java │ │ │ │ │ │ ├── GeneratorMiningRepositoryAction.java │ │ │ │ │ │ ├── GeneratorOptions.java │ │ │ │ │ │ ├── context │ │ │ │ │ │ ├── ImportAction.java │ │ │ │ │ │ ├── RbacBasicStructure.java │ │ │ │ │ │ ├── RbacGeneratorUtils.java │ │ │ │ │ │ ├── RbacObjectCategoryBuilder.java │ │ │ │ │ │ ├── RbacObjectCategoryProcessor.java │ │ │ │ │ │ └── RbacUserType.java │ │ │ │ │ │ └── object │ │ │ │ │ │ ├── InitialAbstractRole.java │ │ │ │ │ │ ├── InitialArchetype.java │ │ │ │ │ │ ├── InitialBusinessRole.java │ │ │ │ │ │ ├── InitialObjectsDefinition.java │ │ │ │ │ │ └── InitialOrg.java │ │ │ │ ├── stats │ │ │ │ │ ├── CategoriesDistribution.java │ │ │ │ │ ├── ExportFocusStatisticsAction.java │ │ │ │ │ ├── ExportFocusStatisticsOptions.java │ │ │ │ │ ├── ExportFocusStatisticsWorker.java │ │ │ │ │ ├── FocusStats.java │ │ │ │ │ ├── FocusTypeCounter.java │ │ │ │ │ ├── FocusTypeStats.java │ │ │ │ │ ├── MagnitudeCounter.java │ │ │ │ │ ├── PrismTransformableRecord.java │ │ │ │ │ ├── PropertyStats.java │ │ │ │ │ ├── PropertyStatsCounter.java │ │ │ │ │ └── StatsCounter.java │ │ │ │ ├── trace │ │ │ │ │ ├── EditTraceAction.java │ │ │ │ │ ├── EditTraceOptions.java │ │ │ │ │ └── TraceStatistics.java │ │ │ │ ├── upgrade │ │ │ │ │ ├── ConsoleProgressListener.java │ │ │ │ │ ├── DistributionManager.java │ │ │ │ │ ├── ProgressListener.java │ │ │ │ │ ├── ProgressResponseBody.java │ │ │ │ │ ├── SkipUpgradeItem.java │ │ │ │ │ ├── UpgradeCommonOptions.java │ │ │ │ │ ├── UpgradeConstants.java │ │ │ │ │ ├── UpgradeObjectHandler.java │ │ │ │ │ ├── UpgradeObjectResult.java │ │ │ │ │ ├── UpgradeObjectsConsumerWorker.java │ │ │ │ │ ├── UpgradeObjectsItemsSummary.java │ │ │ │ │ └── action │ │ │ │ │ │ ├── DownloadDistributionAction.java │ │ │ │ │ │ ├── DownloadDistributionOptions.java │ │ │ │ │ │ ├── DownloadDistributionResult.java │ │ │ │ │ │ ├── InitialObjectsAction.java │ │ │ │ │ │ ├── InitialObjectsOptions.java │ │ │ │ │ │ ├── InitialObjectsResult.java │ │ │ │ │ │ ├── PreUpgradeCheckAction.java │ │ │ │ │ │ ├── PreUpgradeCheckOptions.java │ │ │ │ │ │ ├── UpgradeAction.java │ │ │ │ │ │ ├── UpgradeDistributionAction.java │ │ │ │ │ │ ├── UpgradeDistributionOptions.java │ │ │ │ │ │ ├── UpgradeInstallationAction.java │ │ │ │ │ │ ├── UpgradeInstallationOptions.java │ │ │ │ │ │ ├── UpgradeObjectsAction.java │ │ │ │ │ │ ├── UpgradeObjectsOptions.java │ │ │ │ │ │ └── UpgradeOptions.java │ │ │ │ ├── verify │ │ │ │ │ └── VerificationReporter.java │ │ │ │ └── worker │ │ │ │ │ ├── AbstractWriterConsumerWorker.java │ │ │ │ │ ├── BaseWorker.java │ │ │ │ │ ├── ExportConfigurationSeparateWorker.java │ │ │ │ │ ├── ExportConfigurationWorker.java │ │ │ │ │ ├── ExportConsumerWorker.java │ │ │ │ │ ├── ImportProducerWorker.java │ │ │ │ │ ├── ImportRepositoryConsumerWorker.java │ │ │ │ │ ├── ProgressReporterWorker.java │ │ │ │ │ ├── SearchProducerWorker.java │ │ │ │ │ └── VerifyConsumerWorker.java │ │ │ │ ├── impl │ │ │ │ ├── Command.java │ │ │ │ ├── Log.java │ │ │ │ ├── LogLevel.java │ │ │ │ ├── LogTarget.java │ │ │ │ ├── LogVerbosity.java │ │ │ │ ├── NinjaApplicationContextLevel.java │ │ │ │ ├── NinjaContext.java │ │ │ │ ├── NinjaException.java │ │ │ │ └── NinjaUsageFormatter.java │ │ │ │ └── util │ │ │ │ ├── BasicLightweightIdentifierGenerator.java │ │ │ │ ├── ConsoleFormat.java │ │ │ │ ├── EnumConverterValidator.java │ │ │ │ ├── FileReference.java │ │ │ │ ├── FileReferenceConverter.java │ │ │ │ ├── InputParameterException.java │ │ │ │ ├── ItemPathConverter.java │ │ │ │ ├── NinjaUtils.java │ │ │ │ ├── NonBlankValidator.java │ │ │ │ ├── ObjectTypesConverter.java │ │ │ │ ├── OperationStatus.java │ │ │ │ ├── RunModeConverterValidator.java │ │ │ │ ├── ThrowableSupplier.java │ │ │ │ └── URIConverter.java │ │ └── resources │ │ │ ├── ctx-ninja.xml │ │ │ ├── logback.xml │ │ │ ├── messages.properties │ │ │ ├── version │ │ │ └── version-long │ └── test │ │ ├── java │ │ └── com │ │ │ └── evolveum │ │ │ └── midpoint │ │ │ └── ninja │ │ │ ├── BaseUpgradeTest.java │ │ │ ├── DeleteRepositoryTest.java │ │ │ ├── DistributionManagerTest.java │ │ │ ├── HelpVersionTest.java │ │ │ ├── ImportInvalidRepositoryTest.java │ │ │ ├── ImportRepositoryTest.java │ │ │ ├── ListKeysTest.java │ │ │ ├── LogBeanPostProcessor.java │ │ │ ├── NinjaNativeTest.java │ │ │ ├── NinjaSpringTest.java │ │ │ ├── NinjaTestMixin.java │ │ │ ├── PreUpgradeCheckTest.java │ │ │ ├── TestUtils.java │ │ │ ├── VerifyUpgradeTest.java │ │ │ └── upgrade │ │ │ ├── CreateDatabaseTest.java │ │ │ ├── UpgradeFromFeatureToLtsTest.java │ │ │ ├── UpgradeFromLtsToLtsTest.java │ │ │ └── UpgradeTest.java │ │ └── resources │ │ ├── ctx-ninja-no-repository-test.xml │ │ ├── ctx-ninja-test.xml │ │ ├── ctx-ninja.xml │ │ ├── filter.xml │ │ ├── logback-test.xml │ │ ├── mid-7668-roles.xml │ │ ├── ninja-native │ │ ├── config-template.xml │ │ ├── create-ninja-native-db.sql │ │ └── drop-ninja-native-db.sql │ │ ├── org-monkey-island-simple.xml │ │ └── unknown-nodes │ │ ├── 00-org-monkey-island-simple.xml │ │ ├── 01-connector-attribute.xml │ │ ├── 02-filter-attribute.xml │ │ ├── 03-filter-element.xml │ │ ├── 04-reference-attribute.xml │ │ ├── 05-reference-element.xml │ │ ├── 06-connector-config-element.xml │ │ └── 07-connector-config-nested.xml └── testng-unit.xml ├── perf-test ├── perf-results-db.sql └── perf-test-process.sh └── pom.xml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/sync-to-gitlab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/.github/workflows/sync-to-gitlab.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/INSTALL -------------------------------------------------------------------------------- /INSTALL-dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/INSTALL-dist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.CC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/LICENSE.CC -------------------------------------------------------------------------------- /LICENSE.EUPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/LICENSE.EUPL -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/NEWS -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/NOTICE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/RELEASE-NOTES -------------------------------------------------------------------------------- /config/checkstyle/checkstyle-suppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/checkstyle/checkstyle-suppressions.xml -------------------------------------------------------------------------------- /config/checkstyle/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/checkstyle/checkstyle.xml -------------------------------------------------------------------------------- /config/config-native.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/config-native.xml -------------------------------------------------------------------------------- /config/false-positives.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/false-positives.xml -------------------------------------------------------------------------------- /config/initial-objects/mark/250-mark-unowned.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/mark/250-mark-unowned.xml -------------------------------------------------------------------------------- /config/initial-objects/mark/800-mark-protected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/mark/800-mark-protected.xml -------------------------------------------------------------------------------- /config/initial-objects/mark/805-mark-unmanaged.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/mark/805-mark-unmanaged.xml -------------------------------------------------------------------------------- /config/initial-objects/mark/806-mark-managed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/mark/806-mark-managed.xml -------------------------------------------------------------------------------- /config/initial-objects/mark/813-underassigned.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/mark/813-underassigned.xml -------------------------------------------------------------------------------- /config/initial-objects/mark/814-overassigned.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/mark/814-overassigned.xml -------------------------------------------------------------------------------- /config/initial-objects/mark/815-object-modified.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/mark/815-object-modified.xml -------------------------------------------------------------------------------- /config/initial-objects/mark/817-has-assignment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/mark/817-has-assignment.xml -------------------------------------------------------------------------------- /config/initial-objects/mark/819-object-state.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/mark/819-object-state.xml -------------------------------------------------------------------------------- /config/initial-objects/mark/820-assignment-state.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/mark/820-assignment-state.xml -------------------------------------------------------------------------------- /config/initial-objects/mark/830-suspicious.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/mark/830-suspicious.xml -------------------------------------------------------------------------------- /config/initial-objects/org/390-org-projects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/org/390-org-projects.xml -------------------------------------------------------------------------------- /config/initial-objects/org/390-org-teams.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/org/390-org-teams.xml -------------------------------------------------------------------------------- /config/initial-objects/org/390-org-world.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/org/390-org-world.xml -------------------------------------------------------------------------------- /config/initial-objects/report/090-report-audit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/report/090-report-audit.xml -------------------------------------------------------------------------------- /config/initial-objects/role/030-role-superuser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/role/030-role-superuser.xml -------------------------------------------------------------------------------- /config/initial-objects/role/040-role-enduser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/role/040-role-enduser.xml -------------------------------------------------------------------------------- /config/initial-objects/role/041-role-approver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/role/041-role-approver.xml -------------------------------------------------------------------------------- /config/initial-objects/role/042-role-reviewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/role/042-role-reviewer.xml -------------------------------------------------------------------------------- /config/initial-objects/role/043-role-delegator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/role/043-role-delegator.xml -------------------------------------------------------------------------------- /config/initial-objects/task/550-task-cleanup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/task/550-task-cleanup.xml -------------------------------------------------------------------------------- /config/initial-objects/task/560-task-validity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/task/560-task-validity.xml -------------------------------------------------------------------------------- /config/initial-objects/task/570-task-trigger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/initial-objects/task/570-task-trigger.xml -------------------------------------------------------------------------------- /config/sql/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/sql/README.txt -------------------------------------------------------------------------------- /config/sql/native/postgres-audit-upgrade.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/sql/native/postgres-audit-upgrade.sql -------------------------------------------------------------------------------- /config/sql/native/postgres-audit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/sql/native/postgres-audit.sql -------------------------------------------------------------------------------- /config/sql/native/postgres-quartz.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/sql/native/postgres-quartz.sql -------------------------------------------------------------------------------- /config/sql/native/postgres-upgrade.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/sql/native/postgres-upgrade.sql -------------------------------------------------------------------------------- /config/sql/native/postgres.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/config/sql/native/postgres.sql -------------------------------------------------------------------------------- /custom/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/custom/pom.xml -------------------------------------------------------------------------------- /custom/testng-integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/custom/testng-integration.xml -------------------------------------------------------------------------------- /custom/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/custom/testng-unit.xml -------------------------------------------------------------------------------- /dist/javadoc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/dist/javadoc/pom.xml -------------------------------------------------------------------------------- /dist/midpoint-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/dist/midpoint-api/pom.xml -------------------------------------------------------------------------------- /dist/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/dist/pom.xml -------------------------------------------------------------------------------- /dist/src/main/assembly/dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/dist/src/main/assembly/dist.xml -------------------------------------------------------------------------------- /dist/src/main/bin/midpoint.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/dist/src/main/bin/midpoint.bat -------------------------------------------------------------------------------- /dist/src/main/bin/midpoint.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/dist/src/main/bin/midpoint.exe -------------------------------------------------------------------------------- /dist/src/main/bin/midpoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/dist/src/main/bin/midpoint.sh -------------------------------------------------------------------------------- /dist/src/main/bin/midpointw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/dist/src/main/bin/midpointw.exe -------------------------------------------------------------------------------- /dist/src/main/bin/ninja.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/dist/src/main/bin/ninja.bat -------------------------------------------------------------------------------- /dist/src/main/bin/ninja.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/dist/src/main/bin/ninja.sh -------------------------------------------------------------------------------- /dist/src/main/bin/service.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/dist/src/main/bin/service.bat -------------------------------------------------------------------------------- /dist/src/main/bin/start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/dist/src/main/bin/start.bat -------------------------------------------------------------------------------- /dist/src/main/bin/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/dist/src/main/bin/start.sh -------------------------------------------------------------------------------- /dist/src/main/bin/stop.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/dist/src/main/bin/stop.bat -------------------------------------------------------------------------------- /dist/src/main/bin/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/dist/src/main/bin/stop.sh -------------------------------------------------------------------------------- /dist/src/main/var/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/dist/src/main/var/README.txt -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/_reference-disclaimer.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/_reference-disclaimer.adoc -------------------------------------------------------------------------------- /docs/admin-gui/admin-gui-config/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/admin-gui-config/index.adoc -------------------------------------------------------------------------------- /docs/admin-gui/area-categories.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/area-categories.adoc -------------------------------------------------------------------------------- /docs/admin-gui/collections-views/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/collections-views/index.adoc -------------------------------------------------------------------------------- /docs/admin-gui/custom-forms/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/custom-forms/index.adoc -------------------------------------------------------------------------------- /docs/admin-gui/dashboards/configuration/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/dashboards/configuration/index.adoc -------------------------------------------------------------------------------- /docs/admin-gui/dashboards/configuration/object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/dashboards/configuration/object.png -------------------------------------------------------------------------------- /docs/admin-gui/dashboards/configuration/of.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/dashboards/configuration/of.png -------------------------------------------------------------------------------- /docs/admin-gui/dashboards/configuration/slash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/dashboards/configuration/slash.png -------------------------------------------------------------------------------- /docs/admin-gui/dashboards/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/dashboards/index.adoc -------------------------------------------------------------------------------- /docs/admin-gui/delta-visualization.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/delta-visualization.adoc -------------------------------------------------------------------------------- /docs/admin-gui/deployment-information/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/deployment-information/index.adoc -------------------------------------------------------------------------------- /docs/admin-gui/feature-customization.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/feature-customization.adoc -------------------------------------------------------------------------------- /docs/admin-gui/gui-user-profile/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/gui-user-profile/index.adoc -------------------------------------------------------------------------------- /docs/admin-gui/gui-user-profile/save-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/gui-user-profile/save-button.png -------------------------------------------------------------------------------- /docs/admin-gui/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/index.adoc -------------------------------------------------------------------------------- /docs/admin-gui/localization-configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/localization-configuration.adoc -------------------------------------------------------------------------------- /docs/admin-gui/localization.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/localization.adoc -------------------------------------------------------------------------------- /docs/admin-gui/look-feel-customization.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/look-feel-customization.adoc -------------------------------------------------------------------------------- /docs/admin-gui/preview-new-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/preview-new-advanced.png -------------------------------------------------------------------------------- /docs/admin-gui/preview-new-simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/preview-new-simple.png -------------------------------------------------------------------------------- /docs/admin-gui/preview-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/preview-old.png -------------------------------------------------------------------------------- /docs/admin-gui/request-access/configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/request-access/configuration.adoc -------------------------------------------------------------------------------- /docs/admin-gui/request-access/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/request-access/index.adoc -------------------------------------------------------------------------------- /docs/admin-gui/request-access/step-1-poi-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/request-access/step-1-poi-group.png -------------------------------------------------------------------------------- /docs/admin-gui/request-access/step-1-poi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/request-access/step-1-poi.png -------------------------------------------------------------------------------- /docs/admin-gui/request-access/step-2-relation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/request-access/step-2-relation.png -------------------------------------------------------------------------------- /docs/admin-gui/request-access/step-4-checkout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/request-access/step-4-checkout.png -------------------------------------------------------------------------------- /docs/admin-gui/resource-wizard/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/resource-wizard/index.adoc -------------------------------------------------------------------------------- /docs/admin-gui/resource-wizard/limitation-all.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/resource-wizard/limitation-all.adoc -------------------------------------------------------------------------------- /docs/admin-gui/resource-wizard/see-also.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/resource-wizard/see-also.adoc -------------------------------------------------------------------------------- /docs/admin-gui/role-wizard/arw-step-1-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/role-wizard/arw-step-1-basic.png -------------------------------------------------------------------------------- /docs/admin-gui/role-wizard/arw-step-2-tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/role-wizard/arw-step-2-tiles.png -------------------------------------------------------------------------------- /docs/admin-gui/role-wizard/arw-step-3-governance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/role-wizard/arw-step-3-governance.png -------------------------------------------------------------------------------- /docs/admin-gui/role-wizard/arw-step-3-member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/role-wizard/arw-step-3-member.png -------------------------------------------------------------------------------- /docs/admin-gui/role-wizard/brw-step-1-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/role-wizard/brw-step-1-basic.png -------------------------------------------------------------------------------- /docs/admin-gui/role-wizard/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/role-wizard/index.adoc -------------------------------------------------------------------------------- /docs/admin-gui/role-wizard/role-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/role-wizard/role-details.png -------------------------------------------------------------------------------- /docs/admin-gui/sections-object-details/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/sections-object-details/index.adoc -------------------------------------------------------------------------------- /docs/admin-gui/self-service/dasboard-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/self-service/dasboard-home.png -------------------------------------------------------------------------------- /docs/admin-gui/self-service/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/self-service/index.adoc -------------------------------------------------------------------------------- /docs/admin-gui/simulations.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/simulations.adoc -------------------------------------------------------------------------------- /docs/admin-gui/simulations/simulation-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/simulations/simulation-result.png -------------------------------------------------------------------------------- /docs/admin-gui/simulations/simulation-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/simulations/simulation-results.png -------------------------------------------------------------------------------- /docs/admin-gui/task-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/task-list.png -------------------------------------------------------------------------------- /docs/admin-gui/tasks.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/tasks.adoc -------------------------------------------------------------------------------- /docs/admin-gui/user-interface-form-fields.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/admin-gui/user-interface-form-fields.adoc -------------------------------------------------------------------------------- /docs/cases/approval/examples/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/cases/approval/examples/index.adoc -------------------------------------------------------------------------------- /docs/cases/approval/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/cases/approval/index.adoc -------------------------------------------------------------------------------- /docs/cases/approval/policy-based-approvals.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/cases/approval/policy-based-approvals.adoc -------------------------------------------------------------------------------- /docs/cases/authorizations.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/cases/authorizations.adoc -------------------------------------------------------------------------------- /docs/cases/escalation.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/cases/escalation.adoc -------------------------------------------------------------------------------- /docs/cases/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/cases/index.adoc -------------------------------------------------------------------------------- /docs/cases/multiple-approval-processes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/cases/multiple-approval-processes.adoc -------------------------------------------------------------------------------- /docs/cases/notifications.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/cases/notifications.adoc -------------------------------------------------------------------------------- /docs/concepts/activation/archived_icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/activation/archived_icon1.png -------------------------------------------------------------------------------- /docs/concepts/activation/disabled_icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/activation/disabled_icon1.png -------------------------------------------------------------------------------- /docs/concepts/activation/enabled_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/activation/enabled_icon.png -------------------------------------------------------------------------------- /docs/concepts/activation/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/activation/index.adoc -------------------------------------------------------------------------------- /docs/concepts/channel.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/channel.adoc -------------------------------------------------------------------------------- /docs/concepts/clockwork/clockwork-and-projector.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/clockwork/clockwork-and-projector.adoc -------------------------------------------------------------------------------- /docs/concepts/clockwork/hooks.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/clockwork/hooks.adoc -------------------------------------------------------------------------------- /docs/concepts/clockwork/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/clockwork/index.adoc -------------------------------------------------------------------------------- /docs/concepts/clockwork/model-context/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/clockwork/model-context/index.adoc -------------------------------------------------------------------------------- /docs/concepts/clockwork/scripting-hooks.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/clockwork/scripting-hooks.adoc -------------------------------------------------------------------------------- /docs/concepts/data-representation-formats.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/data-representation-formats.adoc -------------------------------------------------------------------------------- /docs/concepts/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/index.adoc -------------------------------------------------------------------------------- /docs/concepts/item-path.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/item-path.adoc -------------------------------------------------------------------------------- /docs/concepts/iteration/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/iteration/index.adoc -------------------------------------------------------------------------------- /docs/concepts/iteration/unique-account-username.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/iteration/unique-account-username.adoc -------------------------------------------------------------------------------- /docs/concepts/iteration/unique-property-value.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/iteration/unique-property-value.adoc -------------------------------------------------------------------------------- /docs/concepts/mark/event-marks.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/mark/event-marks.adoc -------------------------------------------------------------------------------- /docs/concepts/mark/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/mark/index.adoc -------------------------------------------------------------------------------- /docs/concepts/matching-rules.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/matching-rules.adoc -------------------------------------------------------------------------------- /docs/concepts/metadata/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/metadata/index.adoc -------------------------------------------------------------------------------- /docs/concepts/object-lifecycle/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/object-lifecycle/index.adoc -------------------------------------------------------------------------------- /docs/concepts/polystring.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/polystring.adoc -------------------------------------------------------------------------------- /docs/concepts/query/IMG_24022017_180501_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/query/IMG_24022017_180501_0.png -------------------------------------------------------------------------------- /docs/concepts/query/full-text-search.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/query/full-text-search.adoc -------------------------------------------------------------------------------- /docs/concepts/query/image2017-2-28-10-46-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/query/image2017-2-28-10-46-42.png -------------------------------------------------------------------------------- /docs/concepts/query/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/query/index.adoc -------------------------------------------------------------------------------- /docs/concepts/query/query-concepts/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/query/query-concepts/index.adoc -------------------------------------------------------------------------------- /docs/concepts/query/query-concepts/org-filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/query/query-concepts/org-filters.png -------------------------------------------------------------------------------- /docs/concepts/query/reindex.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/query/reindex.PNG -------------------------------------------------------------------------------- /docs/concepts/query/xml-query-language.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/query/xml-query-language.adoc -------------------------------------------------------------------------------- /docs/concepts/relation/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/relation/index.adoc -------------------------------------------------------------------------------- /docs/concepts/relation/relation-configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/relation/relation-configuration.adoc -------------------------------------------------------------------------------- /docs/concepts/relativity.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/relativity.adoc -------------------------------------------------------------------------------- /docs/concepts/system-configuration-object.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/system-configuration-object.adoc -------------------------------------------------------------------------------- /docs/concepts/workflows/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/concepts/workflows/index.adoc -------------------------------------------------------------------------------- /docs/correlation/confidence-formula.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/correlation/confidence-formula.png -------------------------------------------------------------------------------- /docs/correlation/correlation-case-list.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/correlation/correlation-case-list.webp -------------------------------------------------------------------------------- /docs/correlation/correlation-cases.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/correlation/correlation-cases.adoc -------------------------------------------------------------------------------- /docs/correlation/custom-indexing.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/correlation/custom-indexing.adoc -------------------------------------------------------------------------------- /docs/correlation/fuzzy-searching.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/correlation/fuzzy-searching.adoc -------------------------------------------------------------------------------- /docs/correlation/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/correlation/index.adoc -------------------------------------------------------------------------------- /docs/correlation/items-correlator.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/correlation/items-correlator.adoc -------------------------------------------------------------------------------- /docs/correlation/mapping-redirection-1.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/correlation/mapping-redirection-1.drawio.png -------------------------------------------------------------------------------- /docs/correlation/mapping-redirection-2.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/correlation/mapping-redirection-2.drawio.png -------------------------------------------------------------------------------- /docs/correlation/mapping-redirection.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/correlation/mapping-redirection.drawio -------------------------------------------------------------------------------- /docs/correlation/multiple-identity-data-sources.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/correlation/multiple-identity-data-sources.adoc -------------------------------------------------------------------------------- /docs/correlation/naive-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/correlation/naive-example.png -------------------------------------------------------------------------------- /docs/correlation/rule-composition.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/correlation/rule-composition.adoc -------------------------------------------------------------------------------- /docs/correlation/tiers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/correlation/tiers.png -------------------------------------------------------------------------------- /docs/correlation/to-discuss.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/correlation/to-discuss.adoc -------------------------------------------------------------------------------- /docs/deployment/clustering-ha/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/clustering-ha/index.adoc -------------------------------------------------------------------------------- /docs/deployment/concepts/Basic-Deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/concepts/Basic-Deployment.png -------------------------------------------------------------------------------- /docs/deployment/concepts/Complex-Deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/concepts/Complex-Deployment.png -------------------------------------------------------------------------------- /docs/deployment/concepts/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/concepts/index.adoc -------------------------------------------------------------------------------- /docs/deployment/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/index.adoc -------------------------------------------------------------------------------- /docs/deployment/initial-objects.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/initial-objects.adoc -------------------------------------------------------------------------------- /docs/deployment/maven-overlay-project.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/maven-overlay-project.adoc -------------------------------------------------------------------------------- /docs/deployment/midpoint-home-directory/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/midpoint-home-directory/index.adoc -------------------------------------------------------------------------------- /docs/deployment/multitenancy.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/multitenancy.adoc -------------------------------------------------------------------------------- /docs/deployment/ninja/command/count.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/ninja/command/count.adoc -------------------------------------------------------------------------------- /docs/deployment/ninja/command/delete.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/ninja/command/delete.adoc -------------------------------------------------------------------------------- /docs/deployment/ninja/command/export-audit.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/ninja/command/export-audit.adoc -------------------------------------------------------------------------------- /docs/deployment/ninja/command/export-mining.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/ninja/command/export-mining.adoc -------------------------------------------------------------------------------- /docs/deployment/ninja/command/export.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/ninja/command/export.adoc -------------------------------------------------------------------------------- /docs/deployment/ninja/command/help.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/ninja/command/help.adoc -------------------------------------------------------------------------------- /docs/deployment/ninja/command/import-audit.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/ninja/command/import-audit.adoc -------------------------------------------------------------------------------- /docs/deployment/ninja/command/import.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/ninja/command/import.adoc -------------------------------------------------------------------------------- /docs/deployment/ninja/command/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/ninja/command/index.adoc -------------------------------------------------------------------------------- /docs/deployment/ninja/command/info.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/ninja/command/info.adoc -------------------------------------------------------------------------------- /docs/deployment/ninja/command/initial-objects.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/ninja/command/initial-objects.adoc -------------------------------------------------------------------------------- /docs/deployment/ninja/command/keys.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/ninja/command/keys.adoc -------------------------------------------------------------------------------- /docs/deployment/ninja/command/pre-upgrade-check.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/ninja/command/pre-upgrade-check.adoc -------------------------------------------------------------------------------- /docs/deployment/ninja/command/run-sql.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/ninja/command/run-sql.adoc -------------------------------------------------------------------------------- /docs/deployment/ninja/command/trace.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/ninja/command/trace.adoc -------------------------------------------------------------------------------- /docs/deployment/ninja/command/upgrade-objects.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/ninja/command/upgrade-objects.adoc -------------------------------------------------------------------------------- /docs/deployment/ninja/command/verify-audit.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/ninja/command/verify-audit.adoc -------------------------------------------------------------------------------- /docs/deployment/ninja/command/verify.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/ninja/command/verify.adoc -------------------------------------------------------------------------------- /docs/deployment/ninja/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/ninja/index.adoc -------------------------------------------------------------------------------- /docs/deployment/ninja/use-case/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/ninja/use-case/index.adoc -------------------------------------------------------------------------------- /docs/deployment/ports-80-and-443.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/ports-80-and-443.adoc -------------------------------------------------------------------------------- /docs/deployment/post-initial-import.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/post-initial-import.adoc -------------------------------------------------------------------------------- /docs/deployment/removing-obsolete-information.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/removing-obsolete-information.adoc -------------------------------------------------------------------------------- /docs/deployment/spring-boot-actuator-endpoints.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/spring-boot-actuator-endpoints.adoc -------------------------------------------------------------------------------- /docs/deployment/stand-alone-deployment.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/deployment/stand-alone-deployment.adoc -------------------------------------------------------------------------------- /docs/diag/aggressive-log-report.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/aggressive-log-report.adoc -------------------------------------------------------------------------------- /docs/diag/common-problems.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/common-problems.adoc -------------------------------------------------------------------------------- /docs/diag/diagnostics-abbreviations.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/diagnostics-abbreviations.adoc -------------------------------------------------------------------------------- /docs/diag/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/index.adoc -------------------------------------------------------------------------------- /docs/diag/logging/configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/logging/configuration.adoc -------------------------------------------------------------------------------- /docs/diag/logging/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/logging/index.adoc -------------------------------------------------------------------------------- /docs/diag/logging/initial-logging.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/logging/initial-logging.adoc -------------------------------------------------------------------------------- /docs/diag/logging/log-levels.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/logging/log-levels.adoc -------------------------------------------------------------------------------- /docs/diag/logging/syslog-logging.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/logging/syslog-logging.adoc -------------------------------------------------------------------------------- /docs/diag/logging/useful-loggers.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/logging/useful-loggers.adoc -------------------------------------------------------------------------------- /docs/diag/performance.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/performance.adoc -------------------------------------------------------------------------------- /docs/diag/progress-reporting-and-abort.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/progress-reporting-and-abort.adoc -------------------------------------------------------------------------------- /docs/diag/thread-dump/image2019-2-11-11-30-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/thread-dump/image2019-2-11-11-30-36.png -------------------------------------------------------------------------------- /docs/diag/thread-dump/image2019-2-11-11-31-55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/thread-dump/image2019-2-11-11-31-55.png -------------------------------------------------------------------------------- /docs/diag/thread-dump/image2019-2-11-11-33-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/thread-dump/image2019-2-11-11-33-6.png -------------------------------------------------------------------------------- /docs/diag/thread-dump/image2019-2-11-11-34-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/thread-dump/image2019-2-11-11-34-26.png -------------------------------------------------------------------------------- /docs/diag/thread-dump/image2019-2-11-11-35-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/thread-dump/image2019-2-11-11-35-9.png -------------------------------------------------------------------------------- /docs/diag/thread-dump/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/thread-dump/index.adoc -------------------------------------------------------------------------------- /docs/diag/troubleshooting/authorizations.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/troubleshooting/authorizations.adoc -------------------------------------------------------------------------------- /docs/diag/troubleshooting/connectors.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/troubleshooting/connectors.adoc -------------------------------------------------------------------------------- /docs/diag/troubleshooting/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/troubleshooting/index.adoc -------------------------------------------------------------------------------- /docs/diag/troubleshooting/localization.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/troubleshooting/localization.adoc -------------------------------------------------------------------------------- /docs/diag/troubleshooting/mappings/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/diag/troubleshooting/mappings/index.adoc -------------------------------------------------------------------------------- /docs/docstest/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/docstest/index.html -------------------------------------------------------------------------------- /docs/docstest/params.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/docstest/params.html -------------------------------------------------------------------------------- /docs/expressions/constants/configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/constants/configuration.adoc -------------------------------------------------------------------------------- /docs/expressions/constants/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/constants/index.adoc -------------------------------------------------------------------------------- /docs/expressions/expression-trace.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/expression-trace.adoc -------------------------------------------------------------------------------- /docs/expressions/expressions/filter/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/expressions/filter/index.adoc -------------------------------------------------------------------------------- /docs/expressions/expressions/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/expressions/index.adoc -------------------------------------------------------------------------------- /docs/expressions/expressions/profiles/coverage.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/expressions/profiles/coverage.adoc -------------------------------------------------------------------------------- /docs/expressions/expressions/profiles/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/expressions/profiles/index.adoc -------------------------------------------------------------------------------- /docs/expressions/expressions/script/groovy.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/expressions/script/groovy.adoc -------------------------------------------------------------------------------- /docs/expressions/expressions/script/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/expressions/script/index.adoc -------------------------------------------------------------------------------- /docs/expressions/expressions/script/javascript.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/expressions/script/javascript.adoc -------------------------------------------------------------------------------- /docs/expressions/expressions/script/python.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/expressions/script/python.adoc -------------------------------------------------------------------------------- /docs/expressions/expressions/security/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/expressions/security/index.adoc -------------------------------------------------------------------------------- /docs/expressions/function-libraries/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/function-libraries/index.adoc -------------------------------------------------------------------------------- /docs/expressions/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/index.adoc -------------------------------------------------------------------------------- /docs/expressions/mappings/condition/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/mappings/condition/index.adoc -------------------------------------------------------------------------------- /docs/expressions/mappings/inbound-mapping.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/mappings/inbound-mapping.adoc -------------------------------------------------------------------------------- /docs/expressions/mappings/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/mappings/index.adoc -------------------------------------------------------------------------------- /docs/expressions/mappings/mapping-complete.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/mappings/mapping-complete.drawio -------------------------------------------------------------------------------- /docs/expressions/mappings/mapping-complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/mappings/mapping-complete.png -------------------------------------------------------------------------------- /docs/expressions/mappings/mapping-guide.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/mappings/mapping-guide.adoc -------------------------------------------------------------------------------- /docs/expressions/mappings/proposed-improvements.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/mappings/proposed-improvements.adoc -------------------------------------------------------------------------------- /docs/expressions/mappings/range/custom.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/mappings/range/custom.adoc -------------------------------------------------------------------------------- /docs/expressions/mappings/range/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/mappings/range/index.adoc -------------------------------------------------------------------------------- /docs/expressions/object-template.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/object-template.adoc -------------------------------------------------------------------------------- /docs/expressions/practices/gotchas.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/practices/gotchas.adoc -------------------------------------------------------------------------------- /docs/expressions/practices/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/practices/index.adoc -------------------------------------------------------------------------------- /docs/expressions/practices/removing-values.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/practices/removing-values.adoc -------------------------------------------------------------------------------- /docs/expressions/sequences/configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/sequences/configuration.adoc -------------------------------------------------------------------------------- /docs/expressions/sequences/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/sequences/index.adoc -------------------------------------------------------------------------------- /docs/expressions/synchronization-mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/synchronization-mapping.png -------------------------------------------------------------------------------- /docs/expressions/variables.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/expressions/variables.adoc -------------------------------------------------------------------------------- /docs/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/index.adoc -------------------------------------------------------------------------------- /docs/interfaces/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/index.adoc -------------------------------------------------------------------------------- /docs/interfaces/midpoint-client-java/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/midpoint-client-java/index.adoc -------------------------------------------------------------------------------- /docs/interfaces/model-java/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/model-java/index.adoc -------------------------------------------------------------------------------- /docs/interfaces/model-java/introduction.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/model-java/introduction.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/concepts/authentication.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/concepts/authentication.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/concepts/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/concepts/index.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/concepts/media-types-rest.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/concepts/media-types-rest.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/concepts/raw/index.adoc: -------------------------------------------------------------------------------- 1 | :page-visibility: hidden 2 | -------------------------------------------------------------------------------- /docs/interfaces/rest/concepts/raw/outcome.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/concepts/raw/outcome.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/archetypes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/archetypes.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/cases.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/cases.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/connector-hosts.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/connector-hosts.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/connectors.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/connectors.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/dashboards.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/dashboards.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/forms.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/forms.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/functions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/functions.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/generic-objects.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/generic-objects.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/index.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/lookup-tables.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/lookup-tables.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/nodes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/nodes.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/object-templates.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/object-templates.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/report-data.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/report-data.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/reports.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/reports.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/resources.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/resources.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/roles.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/roles.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/rpc.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/rpc.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/sequences.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/sequences.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/services.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/services.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/shadows.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/shadows.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/tasks.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/tasks.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/users.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/users.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/endpoints/value-policies.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/endpoints/value-policies.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/index.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/operations/create-op-rest.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/operations/create-op-rest.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/operations/delete-op-rest.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/operations/delete-op-rest.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/operations/examples/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/operations/examples/index.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/operations/examples/raw/index.adoc: -------------------------------------------------------------------------------- 1 | :page-visibility: hidden 2 | -------------------------------------------------------------------------------- /docs/interfaces/rest/operations/get-op-rest.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/operations/get-op-rest.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/operations/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/operations/index.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/operations/raw/a-auth.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/operations/raw/a-auth.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/operations/raw/index.adoc: -------------------------------------------------------------------------------- 1 | :page-visibility: hidden 2 | -------------------------------------------------------------------------------- /docs/interfaces/rest/operations/raw/m-auth.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/operations/raw/m-auth.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/raw/curl-env-note.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/interfaces/rest/raw/curl-env-note.adoc -------------------------------------------------------------------------------- /docs/interfaces/rest/raw/index.adoc: -------------------------------------------------------------------------------- 1 | :page-visibility: hidden 2 | -------------------------------------------------------------------------------- /docs/misc/bulk/actions/generate-value.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/bulk/actions/generate-value.adoc -------------------------------------------------------------------------------- /docs/misc/bulk/actions/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/bulk/actions/index.adoc -------------------------------------------------------------------------------- /docs/misc/bulk/actions/recompute.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/bulk/actions/recompute.adoc -------------------------------------------------------------------------------- /docs/misc/bulk/actions/script-and-expression.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/bulk/actions/script-and-expression.adoc -------------------------------------------------------------------------------- /docs/misc/bulk/actions/search.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/bulk/actions/search.adoc -------------------------------------------------------------------------------- /docs/misc/bulk/constant.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/bulk/constant.adoc -------------------------------------------------------------------------------- /docs/misc/bulk/filter-content.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/bulk/filter-content.adoc -------------------------------------------------------------------------------- /docs/misc/bulk/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/bulk/index.adoc -------------------------------------------------------------------------------- /docs/misc/bulk/password.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/bulk/password.adoc -------------------------------------------------------------------------------- /docs/misc/bulk/pipeline.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/bulk/pipeline.adoc -------------------------------------------------------------------------------- /docs/misc/bulk/raw-mode.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/bulk/raw-mode.adoc -------------------------------------------------------------------------------- /docs/misc/bulk/runscript.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/bulk/runscript.adoc -------------------------------------------------------------------------------- /docs/misc/bulk/scripting-tasks.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/bulk/scripting-tasks.adoc -------------------------------------------------------------------------------- /docs/misc/bulk/select.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/bulk/select.adoc -------------------------------------------------------------------------------- /docs/misc/bulk/sequence.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/bulk/sequence.adoc -------------------------------------------------------------------------------- /docs/misc/bulk/variables.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/bulk/variables.adoc -------------------------------------------------------------------------------- /docs/misc/deputy.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/deputy.adoc -------------------------------------------------------------------------------- /docs/misc/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/index.adoc -------------------------------------------------------------------------------- /docs/misc/lookup-tables.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/lookup-tables.adoc -------------------------------------------------------------------------------- /docs/misc/notifications/configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/notifications/configuration.adoc -------------------------------------------------------------------------------- /docs/misc/notifications/custom-transport.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/notifications/custom-transport.adoc -------------------------------------------------------------------------------- /docs/misc/notifications/general.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/notifications/general.adoc -------------------------------------------------------------------------------- /docs/misc/notifications/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/notifications/index.adoc -------------------------------------------------------------------------------- /docs/misc/notifications/message-templates.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/notifications/message-templates.adoc -------------------------------------------------------------------------------- /docs/misc/notifications/task-notifications.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/notifications/task-notifications.adoc -------------------------------------------------------------------------------- /docs/misc/notifications/velocity.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/notifications/velocity.adoc -------------------------------------------------------------------------------- /docs/misc/persona/configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/persona/configuration.adoc -------------------------------------------------------------------------------- /docs/misc/persona/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/persona/index.adoc -------------------------------------------------------------------------------- /docs/misc/persona/personas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/persona/personas.png -------------------------------------------------------------------------------- /docs/misc/prism-experimental-features.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/prism-experimental-features.adoc -------------------------------------------------------------------------------- /docs/misc/reports/configuration/dashboard-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/reports/configuration/dashboard-view.png -------------------------------------------------------------------------------- /docs/misc/reports/configuration/import-report.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/reports/configuration/import-report.adoc -------------------------------------------------------------------------------- /docs/misc/reports/configuration/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/reports/configuration/index.adoc -------------------------------------------------------------------------------- /docs/misc/reports/configuration/legacy/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/reports/configuration/legacy/index.adoc -------------------------------------------------------------------------------- /docs/misc/reports/configuration/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/reports/configuration/users.png -------------------------------------------------------------------------------- /docs/misc/reports/create-report-guide/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/reports/create-report-guide/index.adoc -------------------------------------------------------------------------------- /docs/misc/reports/examples/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/reports/examples/index.adoc -------------------------------------------------------------------------------- /docs/misc/reports/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/reports/index.adoc -------------------------------------------------------------------------------- /docs/misc/reports/raw/file-format.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/reports/raw/file-format.adoc -------------------------------------------------------------------------------- /docs/misc/reports/raw/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/reports/raw/index.adoc -------------------------------------------------------------------------------- /docs/misc/reports/report-formats.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/reports/report-formats.adoc -------------------------------------------------------------------------------- /docs/misc/self-registration/confirm-message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/self-registration/confirm-message.png -------------------------------------------------------------------------------- /docs/misc/self-registration/confirmation-mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/self-registration/confirmation-mail.png -------------------------------------------------------------------------------- /docs/misc/self-registration/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/self-registration/index.adoc -------------------------------------------------------------------------------- /docs/misc/self-registration/login-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/self-registration/login-page.png -------------------------------------------------------------------------------- /docs/misc/self-registration/registration-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/self-registration/registration-page.png -------------------------------------------------------------------------------- /docs/misc/self-registration/self-registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/self-registration/self-registration.png -------------------------------------------------------------------------------- /docs/misc/services/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/services/index.adoc -------------------------------------------------------------------------------- /docs/misc/services/serviceDefinition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/services/serviceDefinition.png -------------------------------------------------------------------------------- /docs/misc/services/userServiceAssignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/services/userServiceAssignment.png -------------------------------------------------------------------------------- /docs/misc/tips-tricks.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/misc/tips-tricks.adoc -------------------------------------------------------------------------------- /docs/org/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/org/index.adoc -------------------------------------------------------------------------------- /docs/org/organizational-structure/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/org/organizational-structure/index.adoc -------------------------------------------------------------------------------- /docs/org/organizational-structure/org-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/org/organizational-structure/org-1.png -------------------------------------------------------------------------------- /docs/org/organizational-structure/org-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/org/organizational-structure/org-2.png -------------------------------------------------------------------------------- /docs/org/organizational-structure/org-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/org/organizational-structure/org-3.png -------------------------------------------------------------------------------- /docs/org/organizational-structure/org-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/org/organizational-structure/org-4.png -------------------------------------------------------------------------------- /docs/org/organizational-structure/org-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/org/organizational-structure/org-5.png -------------------------------------------------------------------------------- /docs/repository/configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/repository/configuration.adoc -------------------------------------------------------------------------------- /docs/repository/images/native-tables-audit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/repository/images/native-tables-audit.png -------------------------------------------------------------------------------- /docs/repository/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/repository/index.adoc -------------------------------------------------------------------------------- /docs/repository/native-audit.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/repository/native-audit.adoc -------------------------------------------------------------------------------- /docs/repository/native-postgresql/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/repository/native-postgresql/index.adoc -------------------------------------------------------------------------------- /docs/repository/native-postgresql/migration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/repository/native-postgresql/migration.adoc -------------------------------------------------------------------------------- /docs/repository/native-postgresql/repo-native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/repository/native-postgresql/repo-native.png -------------------------------------------------------------------------------- /docs/repository/native-postgresql/usage.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/repository/native-postgresql/usage.adoc -------------------------------------------------------------------------------- /docs/repository/repository-database-support.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/repository/repository-database-support.adoc -------------------------------------------------------------------------------- /docs/repository/repository-objects-inspection.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/repository/repository-objects-inspection.adoc -------------------------------------------------------------------------------- /docs/repository/sql-schema-scripts.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/repository/sql-schema-scripts.adoc -------------------------------------------------------------------------------- /docs/resources/asynchronous/inbound/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/asynchronous/inbound/index.adoc -------------------------------------------------------------------------------- /docs/resources/asynchronous/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/asynchronous/index.adoc -------------------------------------------------------------------------------- /docs/resources/asynchronous/outbound/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/asynchronous/outbound/index.adoc -------------------------------------------------------------------------------- /docs/resources/attribute-caching.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/attribute-caching.adoc -------------------------------------------------------------------------------- /docs/resources/auxiliary-object-classes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/auxiliary-object-classes.adoc -------------------------------------------------------------------------------- /docs/resources/connector-setup.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/connector-setup.adoc -------------------------------------------------------------------------------- /docs/resources/connid.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/connid.adoc -------------------------------------------------------------------------------- /docs/resources/entitlements/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/entitlements/index.adoc -------------------------------------------------------------------------------- /docs/resources/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/index.adoc -------------------------------------------------------------------------------- /docs/resources/maintenance-state.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/maintenance-state.adoc -------------------------------------------------------------------------------- /docs/resources/manual/configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/manual/configuration.adoc -------------------------------------------------------------------------------- /docs/resources/manual/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/manual/index.adoc -------------------------------------------------------------------------------- /docs/resources/manual/itsm-plugin.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/manual/itsm-plugin.adoc -------------------------------------------------------------------------------- /docs/resources/multi-connector-resource.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/multi-connector-resource.adoc -------------------------------------------------------------------------------- /docs/resources/multiaccounts.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/multiaccounts.adoc -------------------------------------------------------------------------------- /docs/resources/propagation/configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/propagation/configuration.adoc -------------------------------------------------------------------------------- /docs/resources/propagation/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/propagation/index.adoc -------------------------------------------------------------------------------- /docs/resources/provisioning-dependencies.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/provisioning-dependencies.adoc -------------------------------------------------------------------------------- /docs/resources/provisioning-scripts.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/provisioning-scripts.adoc -------------------------------------------------------------------------------- /docs/resources/resource-configuration/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/resource-configuration/index.adoc -------------------------------------------------------------------------------- /docs/resources/resource-schema/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/resource-schema/index.adoc -------------------------------------------------------------------------------- /docs/resources/shadow/dead.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/shadow/dead.adoc -------------------------------------------------------------------------------- /docs/resources/shadow/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/shadow/index.adoc -------------------------------------------------------------------------------- /docs/resources/shadow/integrity-check.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/shadow/integrity-check.adoc -------------------------------------------------------------------------------- /docs/resources/shadow/kind-intent-objectclass.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/shadow/kind-intent-objectclass.adoc -------------------------------------------------------------------------------- /docs/resources/shadow/purpose.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/shadow/purpose.adoc -------------------------------------------------------------------------------- /docs/resources/shadow/schemas-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/shadow/schemas-shadow.png -------------------------------------------------------------------------------- /docs/resources/weird.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/resources/weird.adoc -------------------------------------------------------------------------------- /docs/roles-policies/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/roles-policies/index.adoc -------------------------------------------------------------------------------- /docs/roles-policies/policies/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/roles-policies/policies/index.adoc -------------------------------------------------------------------------------- /docs/roles-policies/policies/metaroles/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/roles-policies/policies/metaroles/index.adoc -------------------------------------------------------------------------------- /docs/roles-policies/policies/policy-rules.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/roles-policies/policies/policy-rules.adoc -------------------------------------------------------------------------------- /docs/roles-policies/roles/assignment/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/roles-policies/roles/assignment/index.adoc -------------------------------------------------------------------------------- /docs/roles-policies/roles/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/roles-policies/roles/index.adoc -------------------------------------------------------------------------------- /docs/roles-policies/roles/mining/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/roles-policies/roles/mining/index.adoc -------------------------------------------------------------------------------- /docs/roles-policies/roles/pdrbac/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/roles-policies/roles/pdrbac/index.adoc -------------------------------------------------------------------------------- /docs/roles-policies/roles/pdrbac/rbac-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/roles-policies/roles/pdrbac/rbac-overview.png -------------------------------------------------------------------------------- /docs/roles-policies/roles/rbac/best-practice.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/roles-policies/roles/rbac/best-practice.adoc -------------------------------------------------------------------------------- /docs/roles-policies/roles/rbac/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/roles-policies/roles/rbac/index.adoc -------------------------------------------------------------------------------- /docs/roles-policies/roles/rbac/rbac-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/roles-policies/roles/rbac/rbac-1.png -------------------------------------------------------------------------------- /docs/roles-policies/roles/rbac/rbac-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/roles-policies/roles/rbac/rbac-6.png -------------------------------------------------------------------------------- /docs/roles-policies/roles/role-lifecycle.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/roles-policies/roles/role-lifecycle.adoc -------------------------------------------------------------------------------- /docs/roles-policies/roles_policies.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/roles-policies/roles_policies.webp -------------------------------------------------------------------------------- /docs/samples/distribution-samples.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/samples/distribution-samples.adoc -------------------------------------------------------------------------------- /docs/samples/evolveum-demo-sample.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/samples/evolveum-demo-sample.adoc -------------------------------------------------------------------------------- /docs/samples/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/samples/index.adoc -------------------------------------------------------------------------------- /docs/samples/iot-cloud/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/samples/iot-cloud/index.adoc -------------------------------------------------------------------------------- /docs/samples/iot-cloud/schema-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/samples/iot-cloud/schema-0.png -------------------------------------------------------------------------------- /docs/samples/iot-cloud/thingspeak-resource.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/samples/iot-cloud/thingspeak-resource.adoc -------------------------------------------------------------------------------- /docs/samples/multitenant-saas.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/samples/multitenant-saas.adoc -------------------------------------------------------------------------------- /docs/samples/object-counts.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/samples/object-counts.adoc -------------------------------------------------------------------------------- /docs/samples/story-tests/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/samples/story-tests/index.adoc -------------------------------------------------------------------------------- /docs/samples/story-tests/ldap-hierarchy.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/samples/story-tests/ldap-hierarchy.adoc -------------------------------------------------------------------------------- /docs/samples/story-tests/orgsync.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/samples/story-tests/orgsync.adoc -------------------------------------------------------------------------------- /docs/samples/story-tests/unix.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/samples/story-tests/unix.adoc -------------------------------------------------------------------------------- /docs/schema/archetypes/configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/schema/archetypes/configuration.adoc -------------------------------------------------------------------------------- /docs/schema/archetypes/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/schema/archetypes/index.adoc -------------------------------------------------------------------------------- /docs/schema/archetypes/person-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/schema/archetypes/person-example.png -------------------------------------------------------------------------------- /docs/schema/archetypes/person.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/schema/archetypes/person.adoc -------------------------------------------------------------------------------- /docs/schema/common-data-model/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/schema/common-data-model/index.adoc -------------------------------------------------------------------------------- /docs/schema/custom-schema-extension/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/schema/custom-schema-extension/index.adoc -------------------------------------------------------------------------------- /docs/schema/data-model-essentials/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/schema/data-model-essentials/index.adoc -------------------------------------------------------------------------------- /docs/schema/focus-and-projections/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/schema/focus-and-projections/index.adoc -------------------------------------------------------------------------------- /docs/schema/generic-objects.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/schema/generic-objects.adoc -------------------------------------------------------------------------------- /docs/schema/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/schema/index.adoc -------------------------------------------------------------------------------- /docs/schema/notes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/schema/notes.adoc -------------------------------------------------------------------------------- /docs/schema/object-references/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/schema/object-references/index.adoc -------------------------------------------------------------------------------- /docs/schema/policy.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/schema/policy.adoc -------------------------------------------------------------------------------- /docs/schema/polystring-normalization.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/schema/polystring-normalization.adoc -------------------------------------------------------------------------------- /docs/schema/schemadoc.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/schema/schemadoc.adoc -------------------------------------------------------------------------------- /docs/schema/subtype.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/schema/subtype.adoc -------------------------------------------------------------------------------- /docs/security/audit/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/security/audit/index.adoc -------------------------------------------------------------------------------- /docs/security/authentication/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/security/authentication/index.adoc -------------------------------------------------------------------------------- /docs/security/authorization/actuators.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/security/authorization/actuators.adoc -------------------------------------------------------------------------------- /docs/security/authorization/admin-gui.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/security/authorization/admin-gui.adoc -------------------------------------------------------------------------------- /docs/security/authorization/bulk-actions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/security/authorization/bulk-actions.adoc -------------------------------------------------------------------------------- /docs/security/authorization/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/security/authorization/index.adoc -------------------------------------------------------------------------------- /docs/security/authorization/model.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/security/authorization/model.adoc -------------------------------------------------------------------------------- /docs/security/authorization/roles.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/security/authorization/roles.adoc -------------------------------------------------------------------------------- /docs/security/authorization/service.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/security/authorization/service.adoc -------------------------------------------------------------------------------- /docs/security/credentials/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/security/credentials/index.adoc -------------------------------------------------------------------------------- /docs/security/credentials/password-policy.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/security/credentials/password-policy.adoc -------------------------------------------------------------------------------- /docs/security/crypto/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/security/crypto/index.adoc -------------------------------------------------------------------------------- /docs/security/crypto/keystore-configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/security/crypto/keystore-configuration.adoc -------------------------------------------------------------------------------- /docs/security/crypto/openssl-tips-tricks.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/security/crypto/openssl-tips-tricks.adoc -------------------------------------------------------------------------------- /docs/security/csrf-protection.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/security/csrf-protection.adoc -------------------------------------------------------------------------------- /docs/security/error-reporting.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/security/error-reporting.adoc -------------------------------------------------------------------------------- /docs/security/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/security/index.adoc -------------------------------------------------------------------------------- /docs/security/power-of-attorney.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/security/power-of-attorney.adoc -------------------------------------------------------------------------------- /docs/security/privilege-elevation.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/security/privilege-elevation.adoc -------------------------------------------------------------------------------- /docs/security/security-policy/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/security/security-policy/index.adoc -------------------------------------------------------------------------------- /docs/security/session-cookie.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/security/session-cookie.adoc -------------------------------------------------------------------------------- /docs/security/trusted-actions/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/security/trusted-actions/index.adoc -------------------------------------------------------------------------------- /docs/simulation/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/index.adoc -------------------------------------------------------------------------------- /docs/simulation/lifecycle-states.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/lifecycle-states.drawio -------------------------------------------------------------------------------- /docs/simulation/lifecycle-states.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/lifecycle-states.drawio.png -------------------------------------------------------------------------------- /docs/simulation/mode-config-matrix.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/mode-config-matrix.drawio -------------------------------------------------------------------------------- /docs/simulation/mode-config-matrix.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/mode-config-matrix.drawio.png -------------------------------------------------------------------------------- /docs/simulation/production-development-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/production-development-mode.png -------------------------------------------------------------------------------- /docs/simulation/reports/example-items-changed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/reports/example-items-changed.png -------------------------------------------------------------------------------- /docs/simulation/reports/example-objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/reports/example-objects.png -------------------------------------------------------------------------------- /docs/simulation/reports/example-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/reports/example-results.png -------------------------------------------------------------------------------- /docs/simulation/reports/example-values-changed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/reports/example-values-changed.png -------------------------------------------------------------------------------- /docs/simulation/reports/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/reports/index.adoc -------------------------------------------------------------------------------- /docs/simulation/reports/items-changed.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/reports/items-changed.adoc -------------------------------------------------------------------------------- /docs/simulation/reports/objects-with-metrics.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/reports/objects-with-metrics.adoc -------------------------------------------------------------------------------- /docs/simulation/reports/objects.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/reports/objects.adoc -------------------------------------------------------------------------------- /docs/simulation/reports/results.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/reports/results.adoc -------------------------------------------------------------------------------- /docs/simulation/reports/values-changed.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/reports/values-changed.adoc -------------------------------------------------------------------------------- /docs/simulation/results/definition.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/results/definition.adoc -------------------------------------------------------------------------------- /docs/simulation/results/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/results/index.adoc -------------------------------------------------------------------------------- /docs/simulation/results/metrics.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/results/metrics.adoc -------------------------------------------------------------------------------- /docs/simulation/tutorial/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/tutorial/index.adoc -------------------------------------------------------------------------------- /docs/simulation/tutorial/marked-shadows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/tutorial/marked-shadows.png -------------------------------------------------------------------------------- /docs/simulation/tutorial/renamed-users-objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/tutorial/renamed-users-objects.png -------------------------------------------------------------------------------- /docs/simulation/tutorial/renamed-users-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/tutorial/renamed-users-report.png -------------------------------------------------------------------------------- /docs/simulation/tutorial/renamed-users-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/tutorial/renamed-users-result.png -------------------------------------------------------------------------------- /docs/simulation/tutorial/simulated-import-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/tutorial/simulated-import-1.png -------------------------------------------------------------------------------- /docs/simulation/tutorial/simulated-import-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/tutorial/simulated-import-2.png -------------------------------------------------------------------------------- /docs/simulation/tutorial/simulated-import-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/tutorial/simulated-import-3.png -------------------------------------------------------------------------------- /docs/simulation/tutorial/simulated-import-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/tutorial/simulated-import-4.png -------------------------------------------------------------------------------- /docs/simulation/tutorial/temporary-usernames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/tutorial/temporary-usernames.png -------------------------------------------------------------------------------- /docs/simulation/tutorial/unclassified-accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/simulation/tutorial/unclassified-accounts.png -------------------------------------------------------------------------------- /docs/synchronization/consistency/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/synchronization/consistency/index.adoc -------------------------------------------------------------------------------- /docs/synchronization/consistency/theory.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/synchronization/consistency/theory.adoc -------------------------------------------------------------------------------- /docs/synchronization/examples/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/synchronization/examples/index.adoc -------------------------------------------------------------------------------- /docs/synchronization/flavors.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/synchronization/flavors.adoc -------------------------------------------------------------------------------- /docs/synchronization/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/synchronization/index.adoc -------------------------------------------------------------------------------- /docs/synchronization/introduction/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/synchronization/introduction/index.adoc -------------------------------------------------------------------------------- /docs/synchronization/linked-objects/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/synchronization/linked-objects/index.adoc -------------------------------------------------------------------------------- /docs/synchronization/policies/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/synchronization/policies/index.adoc -------------------------------------------------------------------------------- /docs/synchronization/projection-policy.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/synchronization/projection-policy.adoc -------------------------------------------------------------------------------- /docs/synchronization/situations.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/synchronization/situations.adoc -------------------------------------------------------------------------------- /docs/synchronization/synchronization-sorter.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/synchronization/synchronization-sorter.adoc -------------------------------------------------------------------------------- /docs/tasks/activities/activities.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/activities/activities.drawio -------------------------------------------------------------------------------- /docs/tasks/activities/activity-categorization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/activities/activity-categorization.png -------------------------------------------------------------------------------- /docs/tasks/activities/activity-reconciliation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/activities/activity-reconciliation.png -------------------------------------------------------------------------------- /docs/tasks/activities/control-flow.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/activities/control-flow.adoc -------------------------------------------------------------------------------- /docs/tasks/activities/distribution.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/activities/distribution.adoc -------------------------------------------------------------------------------- /docs/tasks/activities/error-handling.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/activities/error-handling.adoc -------------------------------------------------------------------------------- /docs/tasks/activities/execution-mode.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/activities/execution-mode.adoc -------------------------------------------------------------------------------- /docs/tasks/activities/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/activities/index.adoc -------------------------------------------------------------------------------- /docs/tasks/activities/migration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/activities/migration.adoc -------------------------------------------------------------------------------- /docs/tasks/activities/new-in-4.4.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/activities/new-in-4.4.adoc -------------------------------------------------------------------------------- /docs/tasks/activities/reporting/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/activities/reporting/index.adoc -------------------------------------------------------------------------------- /docs/tasks/activities/reporting/item-counting.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/activities/reporting/item-counting.adoc -------------------------------------------------------------------------------- /docs/tasks/activities/reporting/logging.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/activities/reporting/logging.adoc -------------------------------------------------------------------------------- /docs/tasks/activities/reporting/profiling.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/activities/reporting/profiling.adoc -------------------------------------------------------------------------------- /docs/tasks/activities/reporting/tracing.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/activities/reporting/tracing.adoc -------------------------------------------------------------------------------- /docs/tasks/activities/tailoring.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/activities/tailoring.adoc -------------------------------------------------------------------------------- /docs/tasks/activities/work.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/activities/work.adoc -------------------------------------------------------------------------------- /docs/tasks/activity-policies.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/activity-policies.adoc -------------------------------------------------------------------------------- /docs/tasks/activity-policies/00-policy-simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/activity-policies/00-policy-simple.xml -------------------------------------------------------------------------------- /docs/tasks/auto-scaling.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/auto-scaling.adoc -------------------------------------------------------------------------------- /docs/tasks/custom-task-java.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/custom-task-java.adoc -------------------------------------------------------------------------------- /docs/tasks/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/index.adoc -------------------------------------------------------------------------------- /docs/tasks/new-in-4-3.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/new-in-4-3.adoc -------------------------------------------------------------------------------- /docs/tasks/node-sticky-tasks/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/node-sticky-tasks/index.adoc -------------------------------------------------------------------------------- /docs/tasks/orphaned-tasks.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/orphaned-tasks.adoc -------------------------------------------------------------------------------- /docs/tasks/parallelized-background-tasks.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/parallelized-background-tasks.adoc -------------------------------------------------------------------------------- /docs/tasks/recompute-task.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/recompute-task.adoc -------------------------------------------------------------------------------- /docs/tasks/redundant-objects-processing/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/redundant-objects-processing/index.adoc -------------------------------------------------------------------------------- /docs/tasks/shadow-reclassification-task/gui.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/shadow-reclassification-task/gui.adoc -------------------------------------------------------------------------------- /docs/tasks/shadow-reclassification-task/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/shadow-reclassification-task/index.adoc -------------------------------------------------------------------------------- /docs/tasks/shadow-refresh-task.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/shadow-refresh-task.adoc -------------------------------------------------------------------------------- /docs/tasks/specific/focus-validity-scan.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/specific/focus-validity-scan.adoc -------------------------------------------------------------------------------- /docs/tasks/specific/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/specific/index.adoc -------------------------------------------------------------------------------- /docs/tasks/synchronization-tasks/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/synchronization-tasks/index.adoc -------------------------------------------------------------------------------- /docs/tasks/task-chaining.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/task-chaining.adoc -------------------------------------------------------------------------------- /docs/tasks/task-errors-gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/task-errors-gui.png -------------------------------------------------------------------------------- /docs/tasks/task-errors.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/task-errors.adoc -------------------------------------------------------------------------------- /docs/tasks/task-manager/configuration.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/task-manager/configuration.adoc -------------------------------------------------------------------------------- /docs/tasks/task-manager/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/task-manager/index.adoc -------------------------------------------------------------------------------- /docs/tasks/task-template.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/task-template.adoc -------------------------------------------------------------------------------- /docs/tasks/thresholds.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/tasks/thresholds.adoc -------------------------------------------------------------------------------- /docs/upgrade/connectors/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/upgrade/connectors/index.adoc -------------------------------------------------------------------------------- /docs/upgrade/database-schema-upgrade.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/upgrade/database-schema-upgrade.adoc -------------------------------------------------------------------------------- /docs/upgrade/faq-issues.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/upgrade/faq-issues.adoc -------------------------------------------------------------------------------- /docs/upgrade/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/upgrade/index.adoc -------------------------------------------------------------------------------- /docs/upgrade/migration-from-sun-idm.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/upgrade/migration-from-sun-idm.adoc -------------------------------------------------------------------------------- /docs/upgrade/upgrade-guide.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/upgrade/upgrade-guide.adoc -------------------------------------------------------------------------------- /docs/upgrade/upgradeability.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/docs/upgrade/upgradeability.adoc -------------------------------------------------------------------------------- /gui/admin-gui/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/.npmrc -------------------------------------------------------------------------------- /gui/admin-gui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/package-lock.json -------------------------------------------------------------------------------- /gui/admin-gui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/package.json -------------------------------------------------------------------------------- /gui/admin-gui/patches/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/patches/.gitattributes -------------------------------------------------------------------------------- /gui/admin-gui/patches/admin-lte#3.2.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/patches/admin-lte#3.2.0.patch -------------------------------------------------------------------------------- /gui/admin-gui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/pom.xml -------------------------------------------------------------------------------- /gui/admin-gui/src/frontend/js/ace-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/frontend/js/ace-editor.js -------------------------------------------------------------------------------- /gui/admin-gui/src/frontend/js/honeypot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/frontend/js/honeypot.js -------------------------------------------------------------------------------- /gui/admin-gui/src/frontend/js/midpoint-theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/frontend/js/midpoint-theme.js -------------------------------------------------------------------------------- /gui/admin-gui/src/frontend/js/midpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/frontend/js/midpoint.js -------------------------------------------------------------------------------- /gui/admin-gui/src/frontend/js/vendors-passwords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/frontend/js/vendors-passwords.js -------------------------------------------------------------------------------- /gui/admin-gui/src/frontend/js/vendors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/frontend/js/vendors.js -------------------------------------------------------------------------------- /gui/admin-gui/src/frontend/scss/_color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/frontend/scss/_color.scss -------------------------------------------------------------------------------- /gui/admin-gui/src/frontend/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/frontend/scss/_grid.scss -------------------------------------------------------------------------------- /gui/admin-gui/src/frontend/scss/_rounded-icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/frontend/scss/_rounded-icon.scss -------------------------------------------------------------------------------- /gui/admin-gui/src/frontend/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/frontend/scss/_tables.scss -------------------------------------------------------------------------------- /gui/admin-gui/src/frontend/scss/_tiles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/frontend/scss/_tiles.scss -------------------------------------------------------------------------------- /gui/admin-gui/src/frontend/scss/autocomplete.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/frontend/scss/autocomplete.scss -------------------------------------------------------------------------------- /gui/admin-gui/src/frontend/scss/icon-style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/frontend/scss/icon-style.scss -------------------------------------------------------------------------------- /gui/admin-gui/src/frontend/scss/menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/frontend/scss/menu.scss -------------------------------------------------------------------------------- /gui/admin-gui/src/frontend/scss/midpoint.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/frontend/scss/midpoint.scss -------------------------------------------------------------------------------- /gui/admin-gui/src/frontend/scss/prism-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/frontend/scss/prism-forms.scss -------------------------------------------------------------------------------- /gui/admin-gui/src/frontend/scss/role-mining.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/frontend/scss/role-mining.scss -------------------------------------------------------------------------------- /gui/admin-gui/src/frontend/scss/smart-int.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/frontend/scss/smart-int.scss -------------------------------------------------------------------------------- /gui/admin-gui/src/frontend/scss/vendors-fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/frontend/scss/vendors-fonts.scss -------------------------------------------------------------------------------- /gui/admin-gui/src/frontend/scss/vendors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/frontend/scss/vendors.scss -------------------------------------------------------------------------------- /gui/admin-gui/src/frontend/scss/wicket.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/frontend/scss/wicket.scss -------------------------------------------------------------------------------- /gui/admin-gui/src/main/resources/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/main/resources/DejaVuSans.ttf -------------------------------------------------------------------------------- /gui/admin-gui/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/main/resources/application.yml -------------------------------------------------------------------------------- /gui/admin-gui/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/main/resources/banner.txt -------------------------------------------------------------------------------- /gui/admin-gui/src/main/resources/ctx-init.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/main/resources/ctx-init.xml -------------------------------------------------------------------------------- /gui/admin-gui/src/main/resources/ctx-overlay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/main/resources/ctx-overlay.xml -------------------------------------------------------------------------------- /gui/admin-gui/src/main/resources/ctx-webapp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/main/resources/ctx-webapp.xml -------------------------------------------------------------------------------- /gui/admin-gui/src/main/resources/jar-signing.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/main/resources/jar-signing.cer -------------------------------------------------------------------------------- /gui/admin-gui/src/main/resources/logback-alt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/main/resources/logback-alt.xml -------------------------------------------------------------------------------- /gui/admin-gui/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/main/resources/logback.xml -------------------------------------------------------------------------------- /gui/admin-gui/src/test/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/test/resources/application.yml -------------------------------------------------------------------------------- /gui/admin-gui/src/test/resources/keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/test/resources/keystore -------------------------------------------------------------------------------- /gui/admin-gui/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /gui/admin-gui/src/test/resources/schema/piracy.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/src/test/resources/schema/piracy.xsd -------------------------------------------------------------------------------- /gui/admin-gui/testng-integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/testng-integration.xml -------------------------------------------------------------------------------- /gui/admin-gui/testng-perf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/testng-perf.xml -------------------------------------------------------------------------------- /gui/admin-gui/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/testng-unit.xml -------------------------------------------------------------------------------- /gui/admin-gui/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/webpack.common.js -------------------------------------------------------------------------------- /gui/admin-gui/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/webpack.config.js -------------------------------------------------------------------------------- /gui/admin-gui/webpack.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/webpack.development.js -------------------------------------------------------------------------------- /gui/admin-gui/webpack.production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/admin-gui/webpack.production.js -------------------------------------------------------------------------------- /gui/midpoint-jar/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/midpoint-jar/pom.xml -------------------------------------------------------------------------------- /gui/midpoint-jar/src/main/resources/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/midpoint-jar/src/main/resources/banner.txt -------------------------------------------------------------------------------- /gui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/gui/pom.xml -------------------------------------------------------------------------------- /icf-connectors/dummy-connector-fake/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/icf-connectors/dummy-connector-fake/pom.xml -------------------------------------------------------------------------------- /icf-connectors/dummy-connector/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/icf-connectors/dummy-connector/pom.xml -------------------------------------------------------------------------------- /icf-connectors/dummy-resource/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/icf-connectors/dummy-resource/pom.xml -------------------------------------------------------------------------------- /icf-connectors/dummy-resource/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/icf-connectors/dummy-resource/testng-unit.xml -------------------------------------------------------------------------------- /icf-connectors/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/icf-connectors/pom.xml -------------------------------------------------------------------------------- /infra/common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/common/pom.xml -------------------------------------------------------------------------------- /infra/common/src/main/resources/ctx-common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/common/src/main/resources/ctx-common.xml -------------------------------------------------------------------------------- /infra/common/src/test/resources/bad-utf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/common/src/test/resources/bad-utf.txt -------------------------------------------------------------------------------- /infra/common/src/test/resources/cleanup/user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/common/src/test/resources/cleanup/user.xml -------------------------------------------------------------------------------- /infra/common/src/test/resources/common/delta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/common/src/test/resources/common/delta.xml -------------------------------------------------------------------------------- /infra/common/src/test/resources/keystore.jceks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/common/src/test/resources/keystore.jceks -------------------------------------------------------------------------------- /infra/common/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/common/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /infra/common/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/common/testng-unit.xml -------------------------------------------------------------------------------- /infra/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/pom.xml -------------------------------------------------------------------------------- /infra/schema-pure-jaxb/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/schema-pure-jaxb/pom.xml -------------------------------------------------------------------------------- /infra/schema/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/schema/pom.xml -------------------------------------------------------------------------------- /infra/schema/src/test/resources/common/filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/schema/src/test/resources/common/filter.xml -------------------------------------------------------------------------------- /infra/schema/src/test/resources/common/role.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/schema/src/test/resources/common/role.xml -------------------------------------------------------------------------------- /infra/schema/src/test/resources/common/task-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/schema/src/test/resources/common/task-1.xml -------------------------------------------------------------------------------- /infra/schema/src/test/resources/diff/res-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/schema/src/test/resources/diff/res-1.xml -------------------------------------------------------------------------------- /infra/schema/src/test/resources/diff/res-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/schema/src/test/resources/diff/res-2.xml -------------------------------------------------------------------------------- /infra/schema/src/test/resources/diff/role-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/schema/src/test/resources/diff/role-1.xml -------------------------------------------------------------------------------- /infra/schema/src/test/resources/diff/role-2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/schema/src/test/resources/diff/role-2.xml -------------------------------------------------------------------------------- /infra/schema/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/schema/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /infra/schema/src/test/resources/util/user-utf8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/schema/src/test/resources/util/user-utf8.xml -------------------------------------------------------------------------------- /infra/schema/src/test/resources/validator/role.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/schema/src/test/resources/validator/role.xml -------------------------------------------------------------------------------- /infra/schema/testng-perf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/schema/testng-perf.xml -------------------------------------------------------------------------------- /infra/schema/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/schema/testng-unit.xml -------------------------------------------------------------------------------- /infra/test-util/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/test-util/pom.xml -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj-4000.template/config/admin-keystore.pin: -------------------------------------------------------------------------------- 1 | fHju7Eth7OXTQnci7JyF9v3SQRzaTq3mBSRKyyUJM0rL4pDb7A 2 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj-4000.template/config/ads-truststore.pin: -------------------------------------------------------------------------------- 1 | gJZpEpd4QSUF2tcct1qZMHD9m46R9CERBOJEPWRA1g38YX1oOw 2 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj-4000.template/config/buildinfo: -------------------------------------------------------------------------------- 1 | 2.6.2.-1 -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj-4000.template/db/userRoot/je.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj-4000.template/locks/backend-adminRoot.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj-4000.template/locks/backend-ads-truststore.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj-4000.template/locks/backend-backup.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj-4000.template/locks/backend-monitor.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj-4000.template/locks/backend-replicationChanges.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj-4000.template/locks/backend-schema.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj-4000.template/locks/backend-tasks.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj-4000.template/locks/backend-userRoot.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj-4000.template/locks/server.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template.ri/config/admin-keystore.pin: -------------------------------------------------------------------------------- 1 | fHju7Eth7OXTQnci7JyF9v3SQRzaTq3mBSRKyyUJM0rL4pDb7A 2 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template.ri/config/ads-truststore.pin: -------------------------------------------------------------------------------- 1 | gJZpEpd4QSUF2tcct1qZMHD9m46R9CERBOJEPWRA1g38YX1oOw 2 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template.ri/config/buildinfo: -------------------------------------------------------------------------------- 1 | 2.6.2.-1 -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template.ri/db/userRoot/je.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template.ri/locks/backend-adminRoot.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template.ri/locks/backend-ads-truststore.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template.ri/locks/backend-backup.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template.ri/locks/backend-monitor.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template.ri/locks/backend-replicationChanges.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template.ri/locks/backend-schema.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template.ri/locks/backend-tasks.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template.ri/locks/backend-userRoot.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template.ri/locks/server.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template/config/admin-keystore.pin: -------------------------------------------------------------------------------- 1 | fHju7Eth7OXTQnci7JyF9v3SQRzaTq3mBSRKyyUJM0rL4pDb7A 2 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template/config/ads-truststore.pin: -------------------------------------------------------------------------------- 1 | gJZpEpd4QSUF2tcct1qZMHD9m46R9CERBOJEPWRA1g38YX1oOw 2 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template/config/buildinfo: -------------------------------------------------------------------------------- 1 | 2.6.2.-1 -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template/db/userRoot/je.lck: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template/locks/backend-adminRoot.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template/locks/backend-ads-truststore.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template/locks/backend-backup.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template/locks/backend-monitor.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template/locks/backend-replicationChanges.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template/locks/backend-schema.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template/locks/backend-tasks.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template/locks/backend-userRoot.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/src/main/resources/test-data/opendj.template/locks/server.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/test-util/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/infra/test-util/testng-unit.xml -------------------------------------------------------------------------------- /install-dist.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/install-dist.adoc -------------------------------------------------------------------------------- /model/authentication-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/authentication-api/pom.xml -------------------------------------------------------------------------------- /model/authentication-impl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/authentication-impl/pom.xml -------------------------------------------------------------------------------- /model/authentication-impl/testng-integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/authentication-impl/testng-integration.xml -------------------------------------------------------------------------------- /model/authentication-impl/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/authentication-impl/testng-unit.xml -------------------------------------------------------------------------------- /model/cases-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/cases-api/pom.xml -------------------------------------------------------------------------------- /model/cases-impl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/cases-impl/pom.xml -------------------------------------------------------------------------------- /model/cases-impl/src/main/resources/ctx-cases.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/cases-impl/src/main/resources/ctx-cases.xml -------------------------------------------------------------------------------- /model/certification-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/certification-api/pom.xml -------------------------------------------------------------------------------- /model/certification-impl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/certification-impl/pom.xml -------------------------------------------------------------------------------- /model/certification-impl/testng-integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/certification-impl/testng-integration.xml -------------------------------------------------------------------------------- /model/certification-impl/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/certification-impl/testng-unit.xml -------------------------------------------------------------------------------- /model/model-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/model-api/pom.xml -------------------------------------------------------------------------------- /model/model-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/model-common/pom.xml -------------------------------------------------------------------------------- /model/model-common/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/model-common/testng-unit.xml -------------------------------------------------------------------------------- /model/model-impl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/model-impl/pom.xml -------------------------------------------------------------------------------- /model/model-impl/src/main/resources/META-INF/cxf/org.apache.cxf.Logger: -------------------------------------------------------------------------------- 1 | org.apache.cxf.common.logging.Slf4jLogger -------------------------------------------------------------------------------- /model/model-impl/src/main/resources/ctx-model.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/model-impl/src/main/resources/ctx-model.xml -------------------------------------------------------------------------------- /model/model-impl/src/test/resources/misc/case1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/model-impl/src/test/resources/misc/case1.xml -------------------------------------------------------------------------------- /model/model-impl/src/test/resources/misc/case2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/model-impl/src/test/resources/misc/case2.xml -------------------------------------------------------------------------------- /model/model-impl/src/test/resources/misc/case3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/model-impl/src/test/resources/misc/case3.xml -------------------------------------------------------------------------------- /model/model-impl/src/test/resources/misc/user1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/model-impl/src/test/resources/misc/user1.xml -------------------------------------------------------------------------------- /model/model-impl/src/test/resources/misc/user2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/model-impl/src/test/resources/misc/user2.xml -------------------------------------------------------------------------------- /model/model-impl/src/test/resources/user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/model-impl/src/test/resources/user.xml -------------------------------------------------------------------------------- /model/model-impl/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/model-impl/testng-unit.xml -------------------------------------------------------------------------------- /model/model-intest/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/model-intest/pom.xml -------------------------------------------------------------------------------- /model/model-intest/src/test/resources/file-secret-provider/file-secret: -------------------------------------------------------------------------------- 1 | my-file-secret 2 | -------------------------------------------------------------------------------- /model/model-intest/testng-db-specific.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/model-intest/testng-db-specific.xml -------------------------------------------------------------------------------- /model/model-intest/testng-integration-fast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/model-intest/testng-integration-fast.xml -------------------------------------------------------------------------------- /model/model-intest/testng-integration-full.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/model-intest/testng-integration-full.xml -------------------------------------------------------------------------------- /model/model-intest/testng-integration-security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/model-intest/testng-integration-security.xml -------------------------------------------------------------------------------- /model/model-intest/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/model-intest/testng-unit.xml -------------------------------------------------------------------------------- /model/model-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/model-test/pom.xml -------------------------------------------------------------------------------- /model/notifications-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/notifications-api/pom.xml -------------------------------------------------------------------------------- /model/notifications-impl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/notifications-impl/pom.xml -------------------------------------------------------------------------------- /model/notifications-impl/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/notifications-impl/testng-unit.xml -------------------------------------------------------------------------------- /model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/pom.xml -------------------------------------------------------------------------------- /model/report-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/report-api/pom.xml -------------------------------------------------------------------------------- /model/report-impl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/report-impl/pom.xml -------------------------------------------------------------------------------- /model/report-impl/testng-integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/report-impl/testng-integration.xml -------------------------------------------------------------------------------- /model/report-impl/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/report-impl/testng-unit.xml -------------------------------------------------------------------------------- /model/rest-impl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/rest-impl/pom.xml -------------------------------------------------------------------------------- /model/smart-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/smart-api/pom.xml -------------------------------------------------------------------------------- /model/smart-impl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/smart-impl/pom.xml -------------------------------------------------------------------------------- /model/smart-impl/testng-integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/smart-impl/testng-integration.xml -------------------------------------------------------------------------------- /model/smart-impl/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/smart-impl/testng-unit.xml -------------------------------------------------------------------------------- /model/workflow-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/workflow-api/pom.xml -------------------------------------------------------------------------------- /model/workflow-impl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/workflow-impl/pom.xml -------------------------------------------------------------------------------- /model/workflow-impl/testng-integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/workflow-impl/testng-integration.xml -------------------------------------------------------------------------------- /model/workflow-impl/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/model/workflow-impl/testng-unit.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/pom.xml -------------------------------------------------------------------------------- /provisioning/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/provisioning/pom.xml -------------------------------------------------------------------------------- /provisioning/provisioning-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/provisioning/provisioning-api/pom.xml -------------------------------------------------------------------------------- /provisioning/provisioning-impl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/provisioning/provisioning-impl/pom.xml -------------------------------------------------------------------------------- /provisioning/provisioning-impl/src/test/script/csvscript.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo -n Hello $NAME > target/hello.txt 4 | -------------------------------------------------------------------------------- /provisioning/provisioning-impl/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/provisioning/provisioning-impl/testng-unit.xml -------------------------------------------------------------------------------- /provisioning/ucf-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/provisioning/ucf-api/pom.xml -------------------------------------------------------------------------------- /provisioning/ucf-impl-builtin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/provisioning/ucf-impl-builtin/pom.xml -------------------------------------------------------------------------------- /provisioning/ucf-impl-connid/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/provisioning/ucf-impl-connid/pom.xml -------------------------------------------------------------------------------- /provisioning/ucf-impl-connid/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/provisioning/ucf-impl-connid/testng-unit.xml -------------------------------------------------------------------------------- /release-notes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/release-notes.adoc -------------------------------------------------------------------------------- /repo/audit-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/audit-api/pom.xml -------------------------------------------------------------------------------- /repo/audit-log-impl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/audit-log-impl/pom.xml -------------------------------------------------------------------------------- /repo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/pom.xml -------------------------------------------------------------------------------- /repo/repo-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/repo-api/pom.xml -------------------------------------------------------------------------------- /repo/repo-cache/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/repo-cache/pom.xml -------------------------------------------------------------------------------- /repo/repo-cache/src/test/resources/test-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/repo-cache/src/test/resources/test-config.xml -------------------------------------------------------------------------------- /repo/repo-cache/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/repo-cache/testng-unit.xml -------------------------------------------------------------------------------- /repo/repo-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/repo-common/pom.xml -------------------------------------------------------------------------------- /repo/repo-common/testng-db-specific.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/repo-common/testng-db-specific.xml -------------------------------------------------------------------------------- /repo/repo-common/testng-integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/repo-common/testng-integration.xml -------------------------------------------------------------------------------- /repo/repo-common/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/repo-common/testng-unit.xml -------------------------------------------------------------------------------- /repo/repo-sqale/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/repo-sqale/pom.xml -------------------------------------------------------------------------------- /repo/repo-sqale/src/test/resources/config-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/repo-sqale/src/test/resources/config-test.xml -------------------------------------------------------------------------------- /repo/repo-sqale/src/test/resources/ctx-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/repo-sqale/src/test/resources/ctx-test.xml -------------------------------------------------------------------------------- /repo/repo-sqale/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/repo-sqale/testng-unit.xml -------------------------------------------------------------------------------- /repo/repo-sql-impl-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/repo-sql-impl-test/pom.xml -------------------------------------------------------------------------------- /repo/repo-sql-impl-test/testng-db-specific.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/repo-sql-impl-test/testng-db-specific.xml -------------------------------------------------------------------------------- /repo/repo-sql-impl-test/testng-integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/repo-sql-impl-test/testng-integration.xml -------------------------------------------------------------------------------- /repo/repo-sql-impl-test/testng-perf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/repo-sql-impl-test/testng-perf.xml -------------------------------------------------------------------------------- /repo/repo-sql-impl-test/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/repo-sql-impl-test/testng-unit.xml -------------------------------------------------------------------------------- /repo/repo-sqlbase/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/repo-sqlbase/pom.xml -------------------------------------------------------------------------------- /repo/repo-test-util/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/repo-test-util/pom.xml -------------------------------------------------------------------------------- /repo/security-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/security-api/pom.xml -------------------------------------------------------------------------------- /repo/security-enforcer-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/security-enforcer-api/pom.xml -------------------------------------------------------------------------------- /repo/security-enforcer-impl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/security-enforcer-impl/pom.xml -------------------------------------------------------------------------------- /repo/security-impl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/security-impl/pom.xml -------------------------------------------------------------------------------- /repo/security-impl/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/security-impl/testng-unit.xml -------------------------------------------------------------------------------- /repo/system-init/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/system-init/pom.xml -------------------------------------------------------------------------------- /repo/system-init/src/main/resources/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/system-init/src/main/resources/config.xml -------------------------------------------------------------------------------- /repo/system-init/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/system-init/testng-unit.xml -------------------------------------------------------------------------------- /repo/task-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/task-api/pom.xml -------------------------------------------------------------------------------- /repo/task-quartz-impl/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/task-quartz-impl/pom.xml -------------------------------------------------------------------------------- /repo/task-quartz-impl/testng-integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/task-quartz-impl/testng-integration.xml -------------------------------------------------------------------------------- /repo/task-quartz-impl/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/repo/task-quartz-impl/testng-unit.xml -------------------------------------------------------------------------------- /samples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/samples/README -------------------------------------------------------------------------------- /testing/conntest/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/conntest/pom.xml -------------------------------------------------------------------------------- /testing/conntest/src/test/resources/truststore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/conntest/src/test/resources/truststore.jks -------------------------------------------------------------------------------- /testing/conntest/testng-integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/conntest/testng-integration.xml -------------------------------------------------------------------------------- /testing/longtest/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/longtest/pom.xml -------------------------------------------------------------------------------- /testing/longtest/src/test/resources/common/dot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/longtest/src/test/resources/common/dot.jpg -------------------------------------------------------------------------------- /testing/longtest/testng-integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/longtest/testng-integration.xml -------------------------------------------------------------------------------- /testing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/pom.xml -------------------------------------------------------------------------------- /testing/rest/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/rest/pom.xml -------------------------------------------------------------------------------- /testing/rest/src/test/resources/ctx-rest-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/rest/src/test/resources/ctx-rest-test.xml -------------------------------------------------------------------------------- /testing/rest/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/rest/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /testing/rest/src/test/resources/repo/role-rest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/rest/src/test/resources/repo/role-rest.xml -------------------------------------------------------------------------------- /testing/rest/src/test/resources/repo/user-head.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/rest/src/test/resources/repo/user-head.xml -------------------------------------------------------------------------------- /testing/rest/src/test/resources/repo/user-jack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/rest/src/test/resources/repo/user-jack.xml -------------------------------------------------------------------------------- /testing/rest/src/test/resources/schema/piracy.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/rest/src/test/resources/schema/piracy.xsd -------------------------------------------------------------------------------- /testing/rest/testng-authentication.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/rest/testng-authentication.xml -------------------------------------------------------------------------------- /testing/rest/testng-integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/rest/testng-integration.xml -------------------------------------------------------------------------------- /testing/story/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/story/pom.xml -------------------------------------------------------------------------------- /testing/story/src/test/resources/broker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/story/src/test/resources/broker.xml -------------------------------------------------------------------------------- /testing/story/src/test/resources/jndi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/story/src/test/resources/jndi.properties -------------------------------------------------------------------------------- /testing/story/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/story/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /testing/story/src/test/resources/schema/ldap.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/story/src/test/resources/schema/ldap.xsd -------------------------------------------------------------------------------- /testing/story/src/test/resources/schema/photo.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/story/src/test/resources/schema/photo.xsd -------------------------------------------------------------------------------- /testing/story/src/test/resources/schema/piracy.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/story/src/test/resources/schema/piracy.xsd -------------------------------------------------------------------------------- /testing/story/src/test/resources/schema/trafo.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/story/src/test/resources/schema/trafo.xsd -------------------------------------------------------------------------------- /testing/story/src/test/resources/schema/unix.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/story/src/test/resources/schema/unix.xsd -------------------------------------------------------------------------------- /testing/story/src/test/resources/unix/struct.ldif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/story/src/test/resources/unix/struct.ldif -------------------------------------------------------------------------------- /testing/story/src/test/resources/village/orgs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/story/src/test/resources/village/orgs.xml -------------------------------------------------------------------------------- /testing/story/testng-integration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/testing/story/testng-integration.xml -------------------------------------------------------------------------------- /tools/copyheader.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/copyheader.pl -------------------------------------------------------------------------------- /tools/etimes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/etimes.pl -------------------------------------------------------------------------------- /tools/generate-midpoint-users-xml.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/generate-midpoint-users-xml.pl -------------------------------------------------------------------------------- /tools/gotcha.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/gotcha.pl -------------------------------------------------------------------------------- /tools/jenkins/midpoint-compile-pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/jenkins/midpoint-compile-pipeline -------------------------------------------------------------------------------- /tools/jenkins/midpoint-conntest-pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/jenkins/midpoint-conntest-pipeline -------------------------------------------------------------------------------- /tools/jenkins/midpoint-main-nativepg-pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/jenkins/midpoint-main-nativepg-pipeline -------------------------------------------------------------------------------- /tools/jenkins/midpoint-main-pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/jenkins/midpoint-main-pipeline -------------------------------------------------------------------------------- /tools/jenkins/midpoint-quick-nativepg-pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/jenkins/midpoint-quick-nativepg-pipeline -------------------------------------------------------------------------------- /tools/jenkins/midpoint-quick-pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/jenkins/midpoint-quick-pipeline -------------------------------------------------------------------------------- /tools/jenkins/midpoint-security-pipeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/jenkins/midpoint-security-pipeline -------------------------------------------------------------------------------- /tools/midpoint-boot-layout/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/midpoint-boot-layout/pom.xml -------------------------------------------------------------------------------- /tools/ninja/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/ninja/pom.xml -------------------------------------------------------------------------------- /tools/ninja/src/main/resources/ctx-ninja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/ninja/src/main/resources/ctx-ninja.xml -------------------------------------------------------------------------------- /tools/ninja/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/ninja/src/main/resources/logback.xml -------------------------------------------------------------------------------- /tools/ninja/src/main/resources/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/ninja/src/main/resources/messages.properties -------------------------------------------------------------------------------- /tools/ninja/src/main/resources/version: -------------------------------------------------------------------------------- 1 | ${project.version} 2 | -------------------------------------------------------------------------------- /tools/ninja/src/main/resources/version-long: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/ninja/src/main/resources/version-long -------------------------------------------------------------------------------- /tools/ninja/src/test/resources/ctx-ninja-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/ninja/src/test/resources/ctx-ninja-test.xml -------------------------------------------------------------------------------- /tools/ninja/src/test/resources/ctx-ninja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/ninja/src/test/resources/ctx-ninja.xml -------------------------------------------------------------------------------- /tools/ninja/src/test/resources/filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/ninja/src/test/resources/filter.xml -------------------------------------------------------------------------------- /tools/ninja/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/ninja/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /tools/ninja/src/test/resources/mid-7668-roles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/ninja/src/test/resources/mid-7668-roles.xml -------------------------------------------------------------------------------- /tools/ninja/testng-unit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/ninja/testng-unit.xml -------------------------------------------------------------------------------- /tools/perf-test/perf-results-db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/perf-test/perf-results-db.sql -------------------------------------------------------------------------------- /tools/perf-test/perf-test-process.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/perf-test/perf-test-process.sh -------------------------------------------------------------------------------- /tools/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolveum/midpoint/HEAD/tools/pom.xml --------------------------------------------------------------------------------