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 f378a57
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,6 @@
limitations under the License.
*/

/**
* $Id: $
*/

package com.linkedin.restli.client.base;

import com.linkedin.restli.client.ActionRequest;
Expand All @@ -26,6 +22,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 f378a57

Please sign in to comment.