Skip to content

Commit 545ea9d

Browse files
committed
Correct links to incorrect versions of API definitions
1 parent 8de16d6 commit 545ea9d

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

content/en/docs/refguide/modeling/integration/odata-services/consumed-odata-services/consumed-odata-service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ The microflow should have an argument of type `System.HttpResponse`. If the ODat
115115

116116
The microflow must return a `String` containing the error message. If it returns `empty`, the original generic message is used.
117117

118-
Note for developers of Java actions: the message returned by the error handling microflow can be caught as a [UserException](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/systemwideinterfaces/core/UserException.html).
118+
Note for developers of Java actions: the message returned by the error handling microflow can be caught as a [UserException](https://apidocs.rnd.mendix.com/11/runtime/com/mendix/systemwideinterfaces/core/UserException.html).
119119

120120
### Metadata
121121

content/en/docs/refguide/modeling/resources/task-queue.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Core.microflowCall("AModule.SomeMicroflow")
8787
.executeInBackground(context, "AModule.SomeQueueName");
8888
```
8989

90-
The method `executeInBackground` takes two parameters: a context and a queue name. The context is only used for creating the task; the task will run with a [new, but equivalent context](#context). See the [API documentation](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/core/Core.html#microflowCall(java.lang.String)) for more information.
90+
The method `executeInBackground` takes two parameters: a context and a queue name. The context is only used for creating the task; the task will run with a [new, but equivalent context](#context). See the [API documentation](https://apidocs.rnd.mendix.com/11/runtime/com/mendix/core/Core.html#microflowCall(java.lang.String)) for more information.
9191

9292
### Queueing Java Actions
9393

@@ -109,7 +109,7 @@ Core.userActionCall("AModule.SomeJavaAction")
109109
.executeInBackground(context, "AModule.SomeQueueName");
110110
```
111111

112-
The method `executeInBackground` takes two parameters: a context and a queue name. The context is only used for creating the task; the task will be run with a [new, but equivalent context](#context). See the [API documentation](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/core/Core.html#userActionCall(java.lang.String)) for more information.
112+
The method `executeInBackground` takes two parameters: a context and a queue name. The context is only used for creating the task; the task will be run with a [new, but equivalent context](#context). See the [API documentation](https://apidocs.rnd.mendix.com/11/runtime/com/mendix/core/Core.html#userActionCall(java.lang.String)) for more information.
113113

114114
### Task scheduling {#scheduling}
115115

@@ -189,7 +189,7 @@ In case where **Apply entity access** is set to *true*, the following rules appl
189189

190190
There is one exception to the above rules:
191191

192-
* When a system context is used to schedule the task using the [Mendix Runtime Java API](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/core/actionmanagement/ActionCallBuilder.html#executeInBackground(com.mendix.systemwideinterfaces.core.IContext,java.lang.String)), the task will be run in a new system context, regardless of the **Apply entity access** setting.
192+
* When a system context is used to schedule the task using the [Mendix Runtime Java API](https://apidocs.rnd.mendix.com/11/runtime/com/mendix/core/actionmanagement/ActionCallBuilder.html#executeInBackground(com.mendix.systemwideinterfaces.core.IContext,java.lang.String)), the task will be run in a new system context, regardless of the **Apply entity access** setting.
193193

194194
### Task Status
195195

content/en/docs/refguide/modeling/xpath/xpath-constraints/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ You can type your constraint by selecting the option **XPath expression**.
9393

9494
To apply XPath constraints in Java, you should use a complete XPath expression as described in [XPath](/refguide/xpath/). This includes the entity context plus your constraint expression and (optionally) an aggregate function and attribute to retrieve.
9595

96-
The XPath should be used in a [core.createXPathQuery](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/core/Core.html#createXPathQuery(java.lang.String)) call. You can then call [XPathQueryBase.execute](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/datastorage/XPathQueryBase.html#execute(com.mendix.systemwideinterfaces.core.IContext)) which will return the list of objects filtered using the XPath you provided.
96+
The XPath should be used in a [core.createXPathQuery](https://apidocs.rnd.mendix.com/11/runtime/com/mendix/core/Core.html#createXPathQuery(java.lang.String)) call. You can then call [XPathQueryBase.execute](https://apidocs.rnd.mendix.com/11/runtime/com/mendix/datastorage/XPathQueryBase.html#execute(com.mendix.systemwideinterfaces.core.IContext)) which will return the list of objects filtered using the XPath you provided.
9797

9898
For example, to retrieve all customers named Jansen:
9999

content/en/docs/refguide/runtime/mendix-client/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ When the Mendix client is running, it sets a number of technical cookies to reco
271271
| **XASSESSIONID**² | Runtime | Holds the ID of the user's session | `/` | 1 year for offline sessions¹, otherwise based on the session timeout | `true` |
272272
| **useAuthToken** | Runtime | Lets the runtime know whether to generate an authtoken or not | `/` | until the end-user closes their browser (session cookie) | `true` |
273273
| **authtoken** | Runtime | Used to hold the authentication token | `/` | until the authentication token expires | `true` |
274-
| **clear_cache** | Runtime | Instructs the client to clear the cached session data whenever a new end-user signs in to an offline application. If the client is not directly used for the sign-in functionality, you can use the newly added Java API, [addSessionCookies](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/m2ee/api/IMxRuntimeResponse.html#addSessionCookies), which sets all necessary cookies related to the session. | `/` | until client starts or end-user closes their browser | `false`³ |
274+
| **clear_cache** | Runtime | Instructs the client to clear the cached session data whenever a new end-user signs in to an offline application. If the client is not directly used for the sign-in functionality, you can use the newly added Java API, [addSessionCookies](https://apidocs.rnd.mendix.com/11/runtime/com/mendix/m2ee/api/IMxRuntimeResponse.html#addSessionCookies), which sets all necessary cookies related to the session. | `/` | until client starts or end-user closes their browser | `false`³ |
275275

276276
¹*Offline sessions* are sessions created for users using an offline or native mobile [navigation profile](/refguide/navigation/#profiles).
277277

content/en/docs/refguide/runtime/mendix-client/react.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ JavaScript actions must not use any of the following client APIs:
6969

7070
These APIs are related to Dojo and are no longer needed. For opening pages, please use the nanoflow [Show Page](/refguide/show-page/) action instead.
7171

72-
Fore more information on React and APIs in Mendix, see our [Mendix 10 React Client API](https://apidocs.rnd.mendix.com/10/client-react/index.html) documentation.
72+
Fore more information on React and APIs in Mendix, see our [Mendix 11 React Client API](https://apidocs.rnd.mendix.com/11/client-react/index.html) documentation.
7373

7474
### Enable React Client{#enable-react}
7575

content/en/docs/refguide/runtime/metrics.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ It is recommended to use a common prefix that uniquely defines your organization
413413

414414
The following deprecated usages will be removed in the future releases,
415415

416-
1. The [`Core.metrics()` Mendix Runtime Java API methods](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/metrics/Metrics.html) `counter()`, `timer()`, `gauges()`, and `sets()`, and the corresponding `Counters`, `Timers`, `Gauges` and `Sets` interfaces are deprecated.
416+
1. The [`Core.metrics()` Mendix Runtime Java API methods](https://apidocs.rnd.mendix.com/11/runtime/com/mendix/metrics/Metrics.html) `counter()`, `timer()`, `gauges()`, and `sets()`, and the corresponding `Counters`, `Timers`, `Gauges` and `Sets` interfaces are deprecated.
417417

418418
## Logging {#logging}
419419

content/en/docs/refguide8/modeling/domain-model/entities/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ We do not support displaying this system member of the System.User entity or its
142142
{{% /alert %}}
143143

144144
{{% alert color="warning" %}}
145-
The `changedDate` value is not updated if you update the object directly in Java using calls which resolve to use the [`com.mendix.systemwideinterfaces.core.IMendixObject.setValue​(IContext context, java.lang.String memberName, java.lang.Object value)`](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/systemwideinterfaces/core/IMendixObject.html#setValue(com.mendix.systemwideinterfaces.core.IContext,java.lang.String,java.lang.Object)) method (for example, `Entity.setValue(IContext, String)`). If you need `changedDate` to be updated when using Java, use the [`com.mendix.core.Core.change​(IContext context, IMendixObject object, java.util.Map<java.lang.String,​java.lang.String> changes)`](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/core/Core.html#change(com.mendix.systemwideinterfaces.core.IContext,com.mendix.systemwideinterfaces.core.IMendixObject,java.util.Map)) method.
145+
The `changedDate` value is not updated if you update the object directly in Java using calls which resolve to use the [`com.mendix.systemwideinterfaces.core.IMendixObject.setValue​(IContext context, java.lang.String memberName, java.lang.Object value)`](https://apidocs.rnd.mendix.com/8/runtime/com/mendix/systemwideinterfaces/core/IMendixObject.html#setValue(com.mendix.systemwideinterfaces.core.IContext,java.lang.String,java.lang.Object)) method (for example, `Entity.setValue(IContext, String)`). If you need `changedDate` to be updated when using Java, use the [`com.mendix.core.Core.change​(IContext context, IMendixObject object, java.util.Map<java.lang.String,​java.lang.String> changes)`](https://apidocs.rnd.mendix.com/8/runtime/com/mendix/core/Core.html#change(com.mendix.systemwideinterfaces.core.IContext,com.mendix.systemwideinterfaces.core.IMendixObject,java.util.Map)) method.
146146
{{% /alert %}}
147147

148148
#### Store 'owner'

content/en/docs/refguide9/modeling/domain-model/entities/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ We do not support displaying this system member of the System.User entity or its
156156
{{% /alert %}}
157157

158158
{{% alert color="warning" %}}
159-
The `changedDate` value is not updated if you update the object directly in Java using calls which resolve to use the [`com.mendix.systemwideinterfaces.core.IMendixObject.setValue​(IContext context, java.lang.String memberName, java.lang.Object value)`](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/systemwideinterfaces/core/IMendixObject.html#setValue(com.mendix.systemwideinterfaces.core.IContext,java.lang.String,java.lang.Object)) method (for example, `Entity.setValue(IContext, String)`). If you need `changedDate` to be updated when using Java, use the [`com.mendix.core.Core.change​(IContext context, IMendixObject object, java.util.Map<java.lang.String,​java.lang.String> changes)`](https://apidocs.rnd.mendix.com/10/runtime/com/mendix/core/Core.html#change(com.mendix.systemwideinterfaces.core.IContext,com.mendix.systemwideinterfaces.core.IMendixObject,java.util.Map)) method.
159+
The `changedDate` value is not updated if you update the object directly in Java using calls which resolve to use the [`com.mendix.systemwideinterfaces.core.IMendixObject.setValue​(IContext context, java.lang.String memberName, java.lang.Object value)`](https://apidocs.rnd.mendix.com/9/runtime/com/mendix/systemwideinterfaces/core/IMendixObject.html#setValue(com.mendix.systemwideinterfaces.core.IContext,java.lang.String,java.lang.Object)) method (for example, `Entity.setValue(IContext, String)`). If you need `changedDate` to be updated when using Java, use the [`com.mendix.core.Core.change​(IContext context, IMendixObject object, java.util.Map<java.lang.String,​java.lang.String> changes)`](https://apidocs.rnd.mendix.com/9/runtime/com/mendix/core/Core.html#change(com.mendix.systemwideinterfaces.core.IContext,com.mendix.systemwideinterfaces.core.IMendixObject,java.util.Map)) method.
160160
{{% /alert %}}
161161

162162
#### Store 'owner' {#store-owner}

0 commit comments

Comments
 (0)