From 32d2285ec476d525f17f1a1d188fd82c84b6d339 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ram=C3=B3n=20Cahenzli?= Date: Wed, 19 Oct 2016 11:46:12 +0200 Subject: [PATCH] Fix spelling of 'query' --- .../sync/action/account/group-change.xml | 2 +- .../sync/action/user/existing-user-change.xml | 2 +- .../test/resources/sync/change-correct.xml | 2 +- .../resources/sync/change-without-object.xml | 2 +- .../midpoint/audit/api/AuditEventType.java | 42 +++++++++---------- .../src/test/resources/basic/objects.xml | 2 +- .../test/resources/modify/resource-csv.xml | 2 +- .../test/resources/modify/resource-opendj.xml | 2 +- .../resource-GenSync-OpenDJ.xml | 2 +- samples/demo-rs/resource-csv-source.xml | 2 +- samples/demo-rs/resource-csv-xxx.xml | 2 +- samples/demo-rs/resource-ldap-openldap.xml | 2 +- samples/demo/hr.xml | 2 +- samples/demo/opendj.xml | 4 +- samples/demo/openldap.xml | 4 +- .../389ds/389ds-legacy-connector.xml | 2 +- .../ad/ad-resource-advanced-sync.xml | 2 +- .../csvfile/localhost-csvfile-medium.xml | 2 +- ...lhost-csvfile-resource-advanced-sync-2.xml | 2 +- ...calhost-csvfile-resource-advanced-sync.xml | 2 +- ...localhost-csvfile-resource-bulk-action.xml | 2 +- .../dsee/odsee-localhost-advanced-nosync.xml | 2 +- .../office365/office365-federated.xml | 2 +- .../resources/office365/office365-managed.xml | 2 +- .../opendj/opendj-localhost-medium.xml | 2 +- ...pendj-localhost-resource-sync-advanced.xml | 2 +- ...source-sync-no-extension-advanced-test.xml | 2 +- ...st-resource-sync-no-extension-advanced.xml | 2 +- ...alhost-resource-sync-extension-pirates.xml | 2 +- .../openldap/openldap-localhost-medium.xml | 2 +- .../localhost-scriptedsql-advanced-nosync.xml | 2 +- .../localhost-scriptedsql-advanced-sync.xml | 2 +- samples/rest/opendj-resource-sync.xml | 2 +- .../resources/crm-simulation-sync.xml | 2 +- .../resources/openldap-customers.xml | 2 +- .../resources/resource-openLDAP.xml | 10 ++--- .../unix-ldap/resources/ldap-posix.xml | 2 +- .../resource-modify-synchronization.xml | 2 +- ...calhost-csvfile-resource-advanced-sync.xml | 2 +- .../science/resource-dummy-stats.xml | 2 +- .../resources/science/resource-dummy-unix.xml | 2 +- .../science/resource-opendj-ad-simulation.xml | 2 +- .../repo-ninja/src/test/resources/objects.xml | 2 +- 43 files changed, 69 insertions(+), 69 deletions(-) diff --git a/model/model-impl/src/test/resources/sync/action/account/group-change.xml b/model/model-impl/src/test/resources/sync/action/account/group-change.xml index 6d07df0a5a8..fa565e7f599 100644 --- a/model/model-impl/src/test/resources/sync/action/account/group-change.xml +++ b/model/model-impl/src/test/resources/sync/action/account/group-change.xml @@ -456,7 +456,7 @@ - diff --git a/model/model-impl/src/test/resources/sync/action/user/existing-user-change.xml b/model/model-impl/src/test/resources/sync/action/user/existing-user-change.xml index 33195a2625a..903ced4dd17 100644 --- a/model/model-impl/src/test/resources/sync/action/user/existing-user-change.xml +++ b/model/model-impl/src/test/resources/sync/action/user/existing-user-change.xml @@ -457,7 +457,7 @@ - diff --git a/model/model-impl/src/test/resources/sync/change-correct.xml b/model/model-impl/src/test/resources/sync/change-correct.xml index d9c09d594e4..057d0fe534e 100644 --- a/model/model-impl/src/test/resources/sync/change-correct.xml +++ b/model/model-impl/src/test/resources/sync/change-correct.xml @@ -437,7 +437,7 @@ - . diff --git a/model/model-impl/src/test/resources/sync/change-without-object.xml b/model/model-impl/src/test/resources/sync/change-without-object.xml index e9e663264bf..de0207674ab 100644 --- a/model/model-impl/src/test/resources/sync/change-without-object.xml +++ b/model/model-impl/src/test/resources/sync/change-without-object.xml @@ -405,7 +405,7 @@ - . diff --git a/repo/audit-api/src/main/java/com/evolveum/midpoint/audit/api/AuditEventType.java b/repo/audit-api/src/main/java/com/evolveum/midpoint/audit/api/AuditEventType.java index e1412a5850f..24ceff6c47c 100644 --- a/repo/audit-api/src/main/java/com/evolveum/midpoint/audit/api/AuditEventType.java +++ b/repo/audit-api/src/main/java/com/evolveum/midpoint/audit/api/AuditEventType.java @@ -24,25 +24,25 @@ * */ public enum AuditEventType { - + GET_OBJECT, - + ADD_OBJECT, - + MODIFY_OBJECT, - + DELETE_OBJECT, - + EXECUTE_CHANGES_RAW, - + SYNCHRONIZATION, // .... - + /** * E.g. login */ CREATE_SESSION, - + /** * E.g. logout */ @@ -54,28 +54,28 @@ public enum AuditEventType { WORK_ITEM, WORKFLOW_PROCESS_INSTANCE, - + RECONCILIATION; /** - * Queury session, modify session + * Query session, modify session */ - + /** - * Task states??? + * Task states??? */ /** * Startup, shutdown, critical failure (whole system) */ - + // backup, restores - + public static AuditEventType toAuditEventType(AuditEventTypeType event){ if (event == null){ return null; } - + switch (event){ case ADD_OBJECT: return AuditEventType.ADD_OBJECT; @@ -101,16 +101,16 @@ public static AuditEventType toAuditEventType(AuditEventTypeType event){ return AuditEventType.WORKFLOW_PROCESS_INSTANCE; default: throw new IllegalArgumentException("Unknown audit event type: " + event); - + } - + } - + public static AuditEventTypeType fromAuditEventType(AuditEventType event){ if (event == null){ return null; } - + switch (event){ case ADD_OBJECT: return AuditEventTypeType.ADD_OBJECT; @@ -136,9 +136,9 @@ public static AuditEventTypeType fromAuditEventType(AuditEventType event){ return AuditEventTypeType.WORKFLOW_PROCESS_INSTANCE; default: throw new IllegalArgumentException("Unknown audit event type: " + event); - + } - + } } diff --git a/repo/repo-sql-impl-test/src/test/resources/basic/objects.xml b/repo/repo-sql-impl-test/src/test/resources/basic/objects.xml index 9bcfc181ecb..c65a51fbd6d 100644 --- a/repo/repo-sql-impl-test/src/test/resources/basic/objects.xml +++ b/repo/repo-sql-impl-test/src/test/resources/basic/objects.xml @@ -540,7 +540,7 @@ Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/repo/repo-sql-impl-test/src/test/resources/modify/resource-csv.xml b/repo/repo-sql-impl-test/src/test/resources/modify/resource-csv.xml index 65e0684da2d..16ce219897c 100644 --- a/repo/repo-sql-impl-test/src/test/resources/modify/resource-csv.xml +++ b/repo/repo-sql-impl-test/src/test/resources/modify/resource-csv.xml @@ -239,7 +239,7 @@ object. Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "name" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/repo/repo-sql-impl-test/src/test/resources/modify/resource-opendj.xml b/repo/repo-sql-impl-test/src/test/resources/modify/resource-opendj.xml index 87144f00ca9..adfd5610b74 100644 --- a/repo/repo-sql-impl-test/src/test/resources/modify/resource-opendj.xml +++ b/repo/repo-sql-impl-test/src/test/resources/modify/resource-opendj.xml @@ -466,7 +466,7 @@ object. Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/demo-generic synchronization/resource-GenSync-OpenDJ.xml b/samples/demo-generic synchronization/resource-GenSync-OpenDJ.xml index d545ddba232..a1c260dcab5 100644 --- a/samples/demo-generic synchronization/resource-GenSync-OpenDJ.xml +++ b/samples/demo-generic synchronization/resource-GenSync-OpenDJ.xml @@ -13431,7 +13431,7 @@ Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/demo-rs/resource-csv-source.xml b/samples/demo-rs/resource-csv-source.xml index 442ac78a725..977ce0598ed 100644 --- a/samples/demo-rs/resource-csv-source.xml +++ b/samples/demo-rs/resource-csv-source.xml @@ -210,7 +210,7 @@ object. Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "name" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/demo-rs/resource-csv-xxx.xml b/samples/demo-rs/resource-csv-xxx.xml index c368888f99e..441446ebcc5 100644 --- a/samples/demo-rs/resource-csv-xxx.xml +++ b/samples/demo-rs/resource-csv-xxx.xml @@ -237,7 +237,7 @@ object. Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "name" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/demo-rs/resource-ldap-openldap.xml b/samples/demo-rs/resource-ldap-openldap.xml index a01a356b3a3..06f79dce9db 100644 --- a/samples/demo-rs/resource-ldap-openldap.xml +++ b/samples/demo-rs/resource-ldap-openldap.xml @@ -498,7 +498,7 @@ It also contains inbound mappings and definition to enable synchronization. Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/demo/hr.xml b/samples/demo/hr.xml index 26ea8d274de..c30215f6d18 100644 --- a/samples/demo/hr.xml +++ b/samples/demo/hr.xml @@ -185,7 +185,7 @@ Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "name" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/demo/opendj.xml b/samples/demo/opendj.xml index 1b94e115016..913cf6d84d7 100644 --- a/samples/demo/opendj.xml +++ b/samples/demo/opendj.xml @@ -469,7 +469,7 @@ Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match @@ -523,7 +523,7 @@ Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/demo/openldap.xml b/samples/demo/openldap.xml index b4065b87b5d..5f0b74b77d5 100644 --- a/samples/demo/openldap.xml +++ b/samples/demo/openldap.xml @@ -444,7 +444,7 @@ Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match @@ -498,7 +498,7 @@ Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/resources/389ds/389ds-legacy-connector.xml b/samples/resources/389ds/389ds-legacy-connector.xml index c1b9e7ab704..36827232ee2 100644 --- a/samples/resources/389ds/389ds-legacy-connector.xml +++ b/samples/resources/389ds/389ds-legacy-connector.xml @@ -392,7 +392,7 @@ It also contains inbound mappings and definition to enable synchronization. Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/resources/ad/ad-resource-advanced-sync.xml b/samples/resources/ad/ad-resource-advanced-sync.xml index fca3507fae0..280c319f626 100644 --- a/samples/resources/ad/ad-resource-advanced-sync.xml +++ b/samples/resources/ad/ad-resource-advanced-sync.xml @@ -316,7 +316,7 @@ to "false". The only way of resetting the flag is to change user's password. Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "sAMAccountName" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/resources/csvfile/localhost-csvfile-medium.xml b/samples/resources/csvfile/localhost-csvfile-medium.xml index bb8c05b1a5e..08b9ca90d19 100644 --- a/samples/resources/csvfile/localhost-csvfile-medium.xml +++ b/samples/resources/csvfile/localhost-csvfile-medium.xml @@ -191,7 +191,7 @@ using an Identity Connector Framework connector. Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "name" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/resources/csvfile/localhost-csvfile-resource-advanced-sync-2.xml b/samples/resources/csvfile/localhost-csvfile-resource-advanced-sync-2.xml index 7ea585d2b8b..a21f157324c 100644 --- a/samples/resources/csvfile/localhost-csvfile-resource-advanced-sync-2.xml +++ b/samples/resources/csvfile/localhost-csvfile-resource-advanced-sync-2.xml @@ -221,7 +221,7 @@ object. Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "name" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/resources/csvfile/localhost-csvfile-resource-advanced-sync.xml b/samples/resources/csvfile/localhost-csvfile-resource-advanced-sync.xml index 1c63fe36ca3..c173d61979e 100644 --- a/samples/resources/csvfile/localhost-csvfile-resource-advanced-sync.xml +++ b/samples/resources/csvfile/localhost-csvfile-resource-advanced-sync.xml @@ -221,7 +221,7 @@ object. Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "name" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/resources/csvfile/localhost-csvfile-resource-bulk-action.xml b/samples/resources/csvfile/localhost-csvfile-resource-bulk-action.xml index b26f6c2439f..d9956ede85a 100644 --- a/samples/resources/csvfile/localhost-csvfile-resource-bulk-action.xml +++ b/samples/resources/csvfile/localhost-csvfile-resource-bulk-action.xml @@ -221,7 +221,7 @@ object. Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "name" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/resources/dsee/odsee-localhost-advanced-nosync.xml b/samples/resources/dsee/odsee-localhost-advanced-nosync.xml index 347522cb65e..00f9d2299fb 100644 --- a/samples/resources/dsee/odsee-localhost-advanced-nosync.xml +++ b/samples/resources/dsee/odsee-localhost-advanced-nosync.xml @@ -319,7 +319,7 @@ object. Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/resources/office365/office365-federated.xml b/samples/resources/office365/office365-federated.xml index 4d400daf70f..b2f95921fbb 100644 --- a/samples/resources/office365/office365-federated.xml +++ b/samples/resources/office365/office365-federated.xml @@ -285,7 +285,7 @@ This contains configuration for a federated Office 365 domain Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "mailNickname" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/resources/office365/office365-managed.xml b/samples/resources/office365/office365-managed.xml index e860ae3f087..6195fa6d6e2 100644 --- a/samples/resources/office365/office365-managed.xml +++ b/samples/resources/office365/office365-managed.xml @@ -265,7 +265,7 @@ This contains configuration for a managed (non federated) Office 365 domain Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "mailNickname" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/resources/opendj/opendj-localhost-medium.xml b/samples/resources/opendj/opendj-localhost-medium.xml index 1a5aac2a075..130fa814b3b 100644 --- a/samples/resources/opendj/opendj-localhost-medium.xml +++ b/samples/resources/opendj/opendj-localhost-medium.xml @@ -339,7 +339,7 @@ It also contains inbound mappings and definition to enable synchronization. Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/resources/opendj/opendj-localhost-resource-sync-advanced.xml b/samples/resources/opendj/opendj-localhost-resource-sync-advanced.xml index 80ebbfb3913..6f843bef070 100644 --- a/samples/resources/opendj/opendj-localhost-resource-sync-advanced.xml +++ b/samples/resources/opendj/opendj-localhost-resource-sync-advanced.xml @@ -375,7 +375,7 @@ object. Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/resources/opendj/opendj-localhost-resource-sync-no-extension-advanced-test.xml b/samples/resources/opendj/opendj-localhost-resource-sync-no-extension-advanced-test.xml index 255259d9bc2..ff2fb754e12 100644 --- a/samples/resources/opendj/opendj-localhost-resource-sync-no-extension-advanced-test.xml +++ b/samples/resources/opendj/opendj-localhost-resource-sync-no-extension-advanced-test.xml @@ -385,7 +385,7 @@ object. Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/resources/opendj/opendj-localhost-resource-sync-no-extension-advanced.xml b/samples/resources/opendj/opendj-localhost-resource-sync-no-extension-advanced.xml index aef52d62f6f..fbc16f6d235 100644 --- a/samples/resources/opendj/opendj-localhost-resource-sync-no-extension-advanced.xml +++ b/samples/resources/opendj/opendj-localhost-resource-sync-no-extension-advanced.xml @@ -383,7 +383,7 @@ object. Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/resources/opendj/piracy/opendj-localhost-resource-sync-extension-pirates.xml b/samples/resources/opendj/piracy/opendj-localhost-resource-sync-extension-pirates.xml index 4402ae4953e..5234494f8c5 100644 --- a/samples/resources/opendj/piracy/opendj-localhost-resource-sync-extension-pirates.xml +++ b/samples/resources/opendj/piracy/opendj-localhost-resource-sync-extension-pirates.xml @@ -452,7 +452,7 @@ This resource definition contains also definition to enable synchronization. - diff --git a/samples/resources/openldap/openldap-localhost-medium.xml b/samples/resources/openldap/openldap-localhost-medium.xml index 3a6883e5216..6781d64c804 100644 --- a/samples/resources/openldap/openldap-localhost-medium.xml +++ b/samples/resources/openldap/openldap-localhost-medium.xml @@ -425,7 +425,7 @@ It also contains inbound mappings and definition to enable synchronization. Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/resources/scriptedsql/localhost-scriptedsql-advanced-nosync.xml b/samples/resources/scriptedsql/localhost-scriptedsql-advanced-nosync.xml index b1e435600c7..cd6e87efbc9 100644 --- a/samples/resources/scriptedsql/localhost-scriptedsql-advanced-nosync.xml +++ b/samples/resources/scriptedsql/localhost-scriptedsql-advanced-nosync.xml @@ -220,7 +220,7 @@ Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "name" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/resources/scriptedsql/localhost-scriptedsql-advanced-sync.xml b/samples/resources/scriptedsql/localhost-scriptedsql-advanced-sync.xml index abbdc9f5f5c..246db638a5e 100644 --- a/samples/resources/scriptedsql/localhost-scriptedsql-advanced-sync.xml +++ b/samples/resources/scriptedsql/localhost-scriptedsql-advanced-sync.xml @@ -232,7 +232,7 @@ Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "name" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/rest/opendj-resource-sync.xml b/samples/rest/opendj-resource-sync.xml index 0debf613c7a..9e2aae2ce9a 100644 --- a/samples/rest/opendj-resource-sync.xml +++ b/samples/rest/opendj-resource-sync.xml @@ -358,7 +358,7 @@ removed all objects other than the resource itself. Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/stories/multitenant-idm-saas/resources/crm-simulation-sync.xml b/samples/stories/multitenant-idm-saas/resources/crm-simulation-sync.xml index 7ba5d213f44..b3f336d7d26 100644 --- a/samples/stories/multitenant-idm-saas/resources/crm-simulation-sync.xml +++ b/samples/stories/multitenant-idm-saas/resources/crm-simulation-sync.xml @@ -274,7 +274,7 @@ object. Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "name" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/stories/multitenant-idm-saas/resources/openldap-customers.xml b/samples/stories/multitenant-idm-saas/resources/openldap-customers.xml index a3b02549cb0..f431481c698 100644 --- a/samples/stories/multitenant-idm-saas/resources/openldap-customers.xml +++ b/samples/stories/multitenant-idm-saas/resources/openldap-customers.xml @@ -674,7 +674,7 @@ It also contains inbound mappings and definition to enable synchronization. Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/stories/unix-ldap-advanced/resources/resource-openLDAP.xml b/samples/stories/unix-ldap-advanced/resources/resource-openLDAP.xml index ad8b443322c..a0372f88ed1 100644 --- a/samples/stories/unix-ldap-advanced/resources/resource-openLDAP.xml +++ b/samples/stories/unix-ldap-advanced/resources/resource-openLDAP.xml @@ -800,7 +800,7 @@ Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match @@ -857,7 +857,7 @@ Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match @@ -913,7 +913,7 @@ Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match @@ -976,7 +976,7 @@ Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match @@ -1038,7 +1038,7 @@ Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/samples/stories/unix-ldap/resources/ldap-posix.xml b/samples/stories/unix-ldap/resources/ldap-posix.xml index 5bc362b4a27..b923aae2c5e 100644 --- a/samples/stories/unix-ldap/resources/ldap-posix.xml +++ b/samples/stories/unix-ldap/resources/ldap-posix.xml @@ -400,7 +400,7 @@ Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/testing/consistency-mechanism/src/test/resources/request/resource-modify-synchronization.xml b/testing/consistency-mechanism/src/test/resources/request/resource-modify-synchronization.xml index 99919871114..b40af755a00 100644 --- a/testing/consistency-mechanism/src/test/resources/request/resource-modify-synchronization.xml +++ b/testing/consistency-mechanism/src/test/resources/request/resource-modify-synchronization.xml @@ -44,7 +44,7 @@ Correlation expression is a search query. - Following search queury will look for users that have "employeeNumber" + Following search query will look for users that have "employeeNumber" equal to the "enumber" attribute of the account. The condition will ensure that "enumber" is not empty, otherwise it would match any midPoint user diff --git a/testing/selenidetest/src/test/resources/mp-resources/localhost-csvfile-resource-advanced-sync.xml b/testing/selenidetest/src/test/resources/mp-resources/localhost-csvfile-resource-advanced-sync.xml index 310abc1d5d9..501a72fa015 100644 --- a/testing/selenidetest/src/test/resources/mp-resources/localhost-csvfile-resource-advanced-sync.xml +++ b/testing/selenidetest/src/test/resources/mp-resources/localhost-csvfile-resource-advanced-sync.xml @@ -205,7 +205,7 @@ object. Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "name" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/testing/story/src/test/resources/science/resource-dummy-stats.xml b/testing/story/src/test/resources/science/resource-dummy-stats.xml index 12d39e5f097..8002eec6700 100644 --- a/testing/story/src/test/resources/science/resource-dummy-stats.xml +++ b/testing/story/src/test/resources/science/resource-dummy-stats.xml @@ -120,7 +120,7 @@ Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/testing/story/src/test/resources/science/resource-dummy-unix.xml b/testing/story/src/test/resources/science/resource-dummy-unix.xml index 08503a93718..7bedb3f2350 100644 --- a/testing/story/src/test/resources/science/resource-dummy-unix.xml +++ b/testing/story/src/test/resources/science/resource-dummy-unix.xml @@ -165,7 +165,7 @@ Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "sAMAccountName" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/testing/story/src/test/resources/science/resource-opendj-ad-simulation.xml b/testing/story/src/test/resources/science/resource-opendj-ad-simulation.xml index f1498c308dd..cab7be022f5 100644 --- a/testing/story/src/test/resources/science/resource-opendj-ad-simulation.xml +++ b/testing/story/src/test/resources/science/resource-opendj-ad-simulation.xml @@ -274,7 +274,7 @@ Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "sAMAccountName" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match diff --git a/tools/repo-ninja/src/test/resources/objects.xml b/tools/repo-ninja/src/test/resources/objects.xml index 6a86af60c9a..585bf37cf32 100644 --- a/tools/repo-ninja/src/test/resources/objects.xml +++ b/tools/repo-ninja/src/test/resources/objects.xml @@ -549,7 +549,7 @@ Correlation expression is a search query. - Following search queury will look for users that have "name" + Following search query will look for users that have "name" equal to the "uid" attribute of the account. Simply speaking, it will look for match in usernames in the IDM and the resource. The correlation rule always looks for users, so it will not match