Workflow: カスタム処理内でワークフロー変数を参照可能にする(ドキュメント修正)#37
Merged
NonakaKazuhiro merged 2 commits intomainfrom Feb 16, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the workflow documentation to add information about the UserTaskVariableNotification interface, which allows custom processing to access workflow variables. The documentation is written in Japanese and follows the existing documentation structure.
Changes:
- Added reference to
UserTaskVariableNotificationinterface in the property table fornotificationClassName - Added detailed explanation and code example for implementing
UserTaskVariableNotification
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
1113
to
1119
| // ワークフロー変数【item】に格納されているワークフロー対象Entityデータを取得する | ||
| GenericEntity item = (GenericEntity) variables.get("item"); | ||
| if (item == null) { | ||
| return; | ||
| } | ||
|
|
||
| System.out.println("entity data:" + item.toString()); |
There was a problem hiding this comment.
The indentation in this code block is inconsistent. Lines 1113, 1115, 1117, and 1119 use spaces for indentation, while the rest of the code (and the existing example above) uses tabs. For consistency with the existing code example, all lines should use tabs for indentation.
Suggested change
| // ワークフロー変数【item】に格納されているワークフロー対象Entityデータを取得する | |
| GenericEntity item = (GenericEntity) variables.get("item"); | |
| if (item == null) { | |
| return; | |
| } | |
| System.out.println("entity data:" + item.toString()); | |
| // ワークフロー変数【item】に格納されているワークフロー対象Entityデータを取得する | |
| GenericEntity item = (GenericEntity) variables.get("item"); | |
| if (item == null) { | |
| return; | |
| } | |
| System.out.println("entity data:" + item.toString()); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
下記に関するドキュメント修正