From f1e427bcba2cc06b5f021cd9c4275aa8f6cbb906 Mon Sep 17 00:00:00 2001 From: Lennaert Meijvogel Date: Thu, 11 Jun 2026 10:26:19 +0200 Subject: [PATCH 1/2] Add note about optional Entity and Microflow parameters to Java actions --- content/en/docs/refguide/modeling/resources/java-actions.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/en/docs/refguide/modeling/resources/java-actions.md b/content/en/docs/refguide/modeling/resources/java-actions.md index 8f9bbc4224f..818140ade06 100644 --- a/content/en/docs/refguide/modeling/resources/java-actions.md +++ b/content/en/docs/refguide/modeling/resources/java-actions.md @@ -43,10 +43,14 @@ Common use cases include but are not limited to the following: * Mapping a query result to a certain entity type * Querying, searching, and filtering entities by type +In Studio Pro 11.12 and above, a parameter of type Entity can be configured as not required, unless it fills a type parameter. If omitted, it will be null in the Java action. + #### Microflow Type The **Microflow** parameter type allows users of Java actions to pass a microflow into a Java action. In the generated Java action template code, this type is represented as a string (as in, the name of the microflow). +In Studio Pro 11.12 and above, a parameter of type Microflow can be configured as not required. If omitted, it will be null in the Java action. + #### Import Mapping Type The **Import mapping** parameter type allows you to pass an import mapping into a Java action. In the generated Java action template code, this type is represented as a string (as in, the name of the import mapping). From 381c8075792dfbc6357efd0621312c525fa332e6 Mon Sep 17 00:00:00 2001 From: Olufunke Moronfolu Date: Mon, 29 Jun 2026 11:04:23 +0200 Subject: [PATCH 2/2] TW review of 11.12 optional java action --- content/en/docs/refguide/modeling/resources/java-actions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/en/docs/refguide/modeling/resources/java-actions.md b/content/en/docs/refguide/modeling/resources/java-actions.md index 818140ade06..48f85c31e94 100644 --- a/content/en/docs/refguide/modeling/resources/java-actions.md +++ b/content/en/docs/refguide/modeling/resources/java-actions.md @@ -43,13 +43,13 @@ Common use cases include but are not limited to the following: * Mapping a query result to a certain entity type * Querying, searching, and filtering entities by type -In Studio Pro 11.12 and above, a parameter of type Entity can be configured as not required, unless it fills a type parameter. If omitted, it will be null in the Java action. +In Studio Pro 11.12 and above, a parameter of type **Entity** can be configured as not required, unless it fills a type parameter. If omitted, it will be null in the Java action. #### Microflow Type The **Microflow** parameter type allows users of Java actions to pass a microflow into a Java action. In the generated Java action template code, this type is represented as a string (as in, the name of the microflow). -In Studio Pro 11.12 and above, a parameter of type Microflow can be configured as not required. If omitted, it will be null in the Java action. +In Studio Pro 11.12 and above, a parameter of type **Microflow** can be configured as not required. If omitted, it will be null in the Java action. #### Import Mapping Type