Skip to content

Commit

Permalink
Improve javadocs slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
mederly committed Aug 17, 2023
1 parent 75e549f commit c6dada6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ public static Collection<QName> getWorkDefinitionTypeNames(WorkDefinitionsType d
/**
* Replaces the query in "object set" in given work definition.
*
* Only selected activities are supported.
*
* Preliminary implementation.
*/
public static void replaceObjectSetQuery(@NotNull WorkDefinitionsType def, @Nullable QueryType query) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,14 @@ public abstract class ActivityCustomization {
/** Applies the customization. May directly modify the task template. */
public abstract @NotNull ActivityDefinitionType applyTo(@NotNull TaskType taskTemplate);

/** Replacing the set of objects in the root activity. */
/**
* Replacing the set of objects in the root activity.
*
* Supported for iterative scripting, iterative change execution, recomputation, object integrity check, reindexing,
* trigger scan, focus validity scan, and deletion.
*
* See {@link WorkDefinitionUtil#replaceObjectSetQuery(WorkDefinitionsType, QueryType)}.
*/
public static class ObjectQuery extends ActivityCustomization {
@Nullable
private final QueryType query;
Expand Down

0 comments on commit c6dada6

Please sign in to comment.