Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions content/en/docs/refguide/modeling/resources/java-actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down