Skip to content

Commit

Permalink
Add more documentation for EntityActionRequestBuilderBase.
Browse files Browse the repository at this point in the history
  • Loading branch information
haroldl committed Nov 16, 2021
1 parent 0a9eb23 commit 12ceb8d
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@

/**
* The abstract base class for all generated request builders classes for entity-level actions.
*
* For entity-level actions the action is being performed against a specific record which means
* that the key/id must be present in the request to identify which record to perform the action
* on. This class adds validation when the request is built that the id was set to a non-null
* value.
*/
public abstract class EntityActionRequestBuilderBase<K, V, RB extends ActionRequestBuilderBase<K, V, RB>>
extends ActionRequestBuilderBase<K, V, RB>
Expand Down

0 comments on commit 12ceb8d

Please sign in to comment.