Package com.google.gerrit.server.account
Interface AccountsUpdate.ConfigureStatelessDelta
- Enclosing class:
AccountsUpdate
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
The most basic interface for updating the account delta, providing no state nor context.
Account updates that do not need to know the current account state, nor read/write any extra data during the update, should use this interface.
If the above capabilities are needed, use AccountsUpdate.ConfigureDeltaFromState
or AccountsUpdate.ConfigureDeltaFromStateAndContext
instead.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
configure
(AccountDelta.Builder delta) Configures anAccountDelta.Builder
with changes to the account.
-
Method Details
-
configure
Configures anAccountDelta.Builder
with changes to the account.- Parameters:
delta
- the changes to be applied
-