diff --git a/go-manual/modules/ROOT/pages/transactions.adoc b/go-manual/modules/ROOT/pages/transactions.adoc index 9c984553..cc46d020 100644 --- a/go-manual/modules/ROOT/pages/transactions.adoc +++ b/go-manual/modules/ROOT/pages/transactions.adoc @@ -481,7 +481,7 @@ Similar remarks hold for the `.ExecuteRead()` and `.ExecuteWrite()` methods. === Run queries as a different user (impersonation) You can execute a query under the security context of a different user with the configuration parameter `ImpersonatedUser`, specifying the name of the user to impersonate. -For this to work, the user under which the `DriverWithContext` was created needs to have the link:{neo4j-docs-base-uri}/cypher-manual/current/access-control/dbms-administration#access-control-dbms-administration-impersonation[appropriate permissions]. +For this to work, the user under which the `DriverWithContext` was created needs to have the link:{neo4j-docs-base-uri}/operations-manual/current/authentication-authorization/dbms-administration/#access-control-dbms-administration-impersonation[appropriate permissions]. Impersonating a user is cheaper than creating a new `DriverWithContext` object. [source, go] diff --git a/java-manual/modules/ROOT/pages/transactions.adoc b/java-manual/modules/ROOT/pages/transactions.adoc index e0b797c5..3c0778da 100644 --- a/java-manual/modules/ROOT/pages/transactions.adoc +++ b/java-manual/modules/ROOT/pages/transactions.adoc @@ -441,7 +441,7 @@ Similar remarks hold for the `.executeRead()` and `.executeWrite()` methods. === Run queries as a different user (impersonation) You can execute a query under the security context of a different user with the method `.withImpersonatedUser("")`, specifying the name of the user to impersonate. -For this to work, the user under which the `Driver` was created needs to have the link:{neo4j-docs-base-uri}/cypher-manual/current/access-control/dbms-administration#access-control-dbms-administration-impersonation[appropriate permissions]. +For this to work, the user under which the `Driver` was created needs to have the link:{neo4j-docs-base-uri}/operations-manual/current/authentication-authorization/dbms-administration/#access-control-dbms-administration-impersonation[appropriate permissions]. Impersonating a user is cheaper than creating a new `Driver` object. [source, java] diff --git a/javascript-manual/modules/ROOT/pages/transactions.adoc b/javascript-manual/modules/ROOT/pages/transactions.adoc index 2d753ca1..701134de 100644 --- a/javascript-manual/modules/ROOT/pages/transactions.adoc +++ b/javascript-manual/modules/ROOT/pages/transactions.adoc @@ -323,7 +323,7 @@ Similar remarks hold for the `.executeRead()` and `.executeWrite()` methods. === Run queries as a different user (impersonation) You can execute a query under the security context of a different user with the parameter `impersonatedUser`, specifying the name of the user to impersonate. -For this to work, the user under which the `Driver` was created needs to have the link:{neo4j-docs-base-uri}/cypher-manual/current/access-control/dbms-administration#access-control-dbms-administration-impersonation[appropriate permissions]. +For this to work, the user under which the `Driver` was created needs to have the link:{neo4j-docs-base-uri}/operations-manual/current/authentication-authorization/dbms-administration/#access-control-dbms-administration-impersonation[appropriate permissions]. Impersonating a user is cheaper than creating a new `Driver` object. [source, javascript] diff --git a/python-manual/modules/ROOT/pages/transactions.adoc b/python-manual/modules/ROOT/pages/transactions.adoc index c227c721..13d38fb2 100644 --- a/python-manual/modules/ROOT/pages/transactions.adoc +++ b/python-manual/modules/ROOT/pages/transactions.adoc @@ -391,7 +391,7 @@ Similar remarks hold for the `.executeRead()` and `.executeWrite()` methods. === Run queries as a different user (impersonation) You can execute a query under the security context of a different user with the parameter `impersonated_user`, specifying the name of the user to impersonate. -For this to work, the user under which the `Driver` was created needs to have the link:{neo4j-docs-base-uri}/cypher-manual/current/access-control/dbms-administration#access-control-dbms-administration-impersonation[appropriate permissions]. +For this to work, the user under which the `Driver` was created needs to have the link:{neo4j-docs-base-uri}/operations-manual/current/authentication-authorization/dbms-administration/#access-control-dbms-administration-impersonation[appropriate permissions]. Impersonating a user is cheaper than creating a new `Driver` object. [source, python]