Package com.google.gerrit.server.account
Interface AccountExternalIdCreator
-
public interface AccountExternalIdCreator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ExternalId>
create(Account.Id id, String username, String email)
Returns additional external identifiers to assign to a given user when creating an account.
-
-
-
Method Detail
-
create
List<ExternalId> create(Account.Id id, String username, String email)
Returns additional external identifiers to assign to a given user when creating an account.- Parameters:
id
- the identifier of the account.username
- the name of the user.email
- an optional email address to assign to the external identifiers, ornull
.- Returns:
- a list of external identifiers, or an empty list.
-
-